Add automatic SuperClaude component installation

- 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 <noreply@anthropic.com>
This commit is contained in:
2025-09-08 21:54:41 +09:00
parent fe2ec8d436
commit 2965f92df7

View File

@@ -60,7 +60,7 @@ su - $XWINDOW_USER -c "pipx install SuperClaude && pipx upgrade SuperClaude"
# add pipx bin to user PATH # add pipx bin to user PATH
su - $XWINDOW_USER -c "echo 'export PATH=\"/home/$XWINDOW_USER/.local/bin:\$PATH\"' >> ~/.bashrc" 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 # start code-server in background
su - $XWINDOW_USER -c "code-server --bind-addr 0.0.0.0:30145 --auth password /mnt" & su - $XWINDOW_USER -c "code-server --bind-addr 0.0.0.0:30145 --auth password /mnt" &