From a8514da3e89763af728248f05a9bd6e469ef322b Mon Sep 17 00:00:00 2001 From: Tine Kondo Date: Thu, 16 Oct 2025 09:52:14 +0200 Subject: [PATCH] chore: add installation of `codebuddy` CLI in the `devcontainer` --- .devcontainer/post-create.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.devcontainer/post-create.sh b/.devcontainer/post-create.sh index 27e08196..dd518064 100755 --- a/.devcontainer/post-create.sh +++ b/.devcontainer/post-create.sh @@ -88,6 +88,10 @@ run_command "./q/install.sh --no-confirm" run_command "rm -rf ./q q.zip q.zip.sig amazonq-public-key.asc" echo "āœ… Done" +echo -e "\nšŸ¤– Installing CodeBuddy CLI..." +run_command "bun add --global @tencent-ai/codebuddy-code@latest" +echo "āœ… Done" + # Installing UV (Python package manager) echo -e "\nšŸ Installing UV - Python Package Manager..." run_command "pipx install uv"