This is an automated email from the ASF dual-hosted git repository. maximebeauchemin pushed a commit to branch codespaces in repository https://gitbox.apache.org/repos/asf/superset.git
commit c41650fc1d04ed93930c948a10fe977f2bcfa063 Author: Maxime Beauchemin <[email protected]> AuthorDate: Mon Jul 28 16:04:45 2025 -0700 feat: Add Claude Code CLI to devcontainer setup - Install Claude Code for AI-assisted development - Perfect for using 'claude --yes' safely in Codespaces - No risk to local machine when running automated commands --- .devcontainer/setup-dev.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.devcontainer/setup-dev.sh b/.devcontainer/setup-dev.sh index 71a2f4ce59..4a8f09e9d2 100755 --- a/.devcontainer/setup-dev.sh +++ b/.devcontainer/setup-dev.sh @@ -17,6 +17,10 @@ sudo apt-get install -y \ echo "📦 Installing uv..." curl -LsSf https://astral.sh/uv/install.sh | sh +# Install Claude Code CLI +echo "🤖 Installing Claude Code..." +curl -fsSL https://claudecode.ai/install.sh | sh + # Make the start script executable chmod +x .devcontainer/start-superset.sh
