chore: replace bun by node/npm in the devcontainer (as many CLI-based agents actually require a node runtime)

This commit is contained in:
Tine Kondo
2025-10-16 14:56:58 +00:00
parent b009773d5c
commit 71c2c63d55
3 changed files with 12 additions and 18 deletions

View File

@@ -271,7 +271,7 @@ For agents that require CLI tools, add installation commands to `.devcontainer/p
# Existing installations...
echo -e "\n🤖 Installing [New Agent Name] CLI..."
# run_command "bun add --global [agent-cli-package]@latest" # Example for node-based CLI
# run_command "npm install -g [agent-cli-package]@latest" # Example for node-based CLI
# or other installation instructions (must be non-interactive and compatible with Linux Debian "Trixie" or later)...
echo "✅ Done"