From 44c8b3c0b442e2b965bc09d7eb4d94cfbf435ae2 Mon Sep 17 00:00:00 2001 From: Venkat Date: Mon, 18 May 2026 20:28:32 -0700 Subject: [PATCH] feat: adding team of agents for claude and adding default claude path to .zshrc --- .devcontainer/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 61881f2382..22f0bc3f25 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -40,6 +40,8 @@ ARG VERSION_HASHICORP_PACKER=1.15.1 ENV VAULT_SKIP_VERIFY true ENV CLOUDSDK_INSTALL_DIR /usr/local/gcloud/ ENV GIT_EDITOR vi +# enable team of agents: https://code.claude.com/docs/en/agent-teams +ENV CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1 COPY tools/ /etc/tools/ @@ -174,6 +176,7 @@ RUN echo '\n# === Backup & Git Reminder ===' | tee -a /home/vscode/.zshrc && \ echo 'echo -e "\e[1;31m⚠️ WARNING: No backups are configured. You are responsible for any data loss.\e[0m"' | tee -a /home/vscode/.zshrc && \ echo 'echo -e "\e[1;33m💡 Tip: Use '\''git commit'\'' and '\''git push'\'' regularly to avoid losing your work.\e[0m"' | tee -a /home/vscode/.zshrc && \ echo '# =============================' | tee -a /home/vscode/.zshrc && \ + echo 'export PATH="$HOME/.local/bin:$PATH"' | tee -a /home/vscode/.zshrc && \ chown vscode:vscode /home/vscode/.zshrc USER root