From 2965f92df75f86af344084920dc734a70dfbacbe Mon Sep 17 00:00:00 2001 From: chiDT Date: Mon, 8 Sep 2025 21:54:41 +0900 Subject: [PATCH] Add automatic SuperClaude component installation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Install core, mcp, and modes components automatically - Use --force --yes flags for non-interactive installation - Run in background to avoid blocking container startup 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index de14d3e..a7eb7af 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -60,7 +60,7 @@ su - $XWINDOW_USER -c "pipx install SuperClaude && pipx upgrade SuperClaude" # add pipx bin to user PATH su - $XWINDOW_USER -c "echo 'export PATH=\"/home/$XWINDOW_USER/.local/bin:\$PATH\"' >> ~/.bashrc" -su - $XWINDOW_USER -c "source ~/.bashrc" & +su - $XWINDOW_USER -c "source ~/.bashrc && SuperClaude install --components core mcp modes --force --yes" & # start code-server in background su - $XWINDOW_USER -c "code-server --bind-addr 0.0.0.0:30145 --auth password /mnt" &