mirror of
https://github.com/github/spec-kit.git
synced 2026-03-18 19:33:09 +00:00
* feat(ai): add native support for Pi coding agent by pi+gpt 5.4 * docs(pi): document MCP limitations for Pi agent * fix: unitended kimi agent mention added to update-agent-context.ps1 * fix: address reviewer feedback * Apply suggestions from code review Changes in AGENTS.md weren't part of my PR, but the Copilot feedback seems to be correct is correct. I've doublechecked it with contents of test_agent_config_consistency.py and create-release-packages scripts Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
111 lines
3.1 KiB
Bash
Executable File
111 lines
3.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Exit immediately on error, treat unset variables as an error, and fail if any command in a pipeline fails.
|
|
set -euo pipefail
|
|
|
|
# Function to run a command and show logs only on error
|
|
run_command() {
|
|
local command_to_run="$*"
|
|
local output
|
|
local exit_code
|
|
|
|
# Capture all output (stdout and stderr)
|
|
output=$(eval "$command_to_run" 2>&1) || exit_code=$?
|
|
exit_code=${exit_code:-0}
|
|
|
|
if [ $exit_code -ne 0 ]; then
|
|
echo -e "\033[0;31m[ERROR] Command failed (Exit Code $exit_code): $command_to_run\033[0m" >&2
|
|
echo -e "\033[0;31m$output\033[0m" >&2
|
|
|
|
exit $exit_code
|
|
fi
|
|
}
|
|
|
|
# Installing CLI-based AI Agents
|
|
|
|
echo -e "\n🤖 Installing Copilot CLI..."
|
|
run_command "npm install -g @github/copilot@latest"
|
|
echo "✅ Done"
|
|
|
|
echo -e "\n🤖 Installing Claude CLI..."
|
|
run_command "npm install -g @anthropic-ai/claude-code@latest"
|
|
echo "✅ Done"
|
|
|
|
echo -e "\n🤖 Installing Codex CLI..."
|
|
run_command "npm install -g @openai/codex@latest"
|
|
echo "✅ Done"
|
|
|
|
echo -e "\n🤖 Installing Gemini CLI..."
|
|
run_command "npm install -g @google/gemini-cli@latest"
|
|
echo "✅ Done"
|
|
|
|
echo -e "\n🤖 Installing Augie CLI..."
|
|
run_command "npm install -g @augmentcode/auggie@latest"
|
|
echo "✅ Done"
|
|
|
|
echo -e "\n🤖 Installing Qwen Code CLI..."
|
|
run_command "npm install -g @qwen-code/qwen-code@latest"
|
|
echo "✅ Done"
|
|
|
|
echo -e "\n🤖 Installing OpenCode CLI..."
|
|
run_command "npm install -g opencode-ai@latest"
|
|
echo "✅ Done"
|
|
|
|
echo -e "\n🤖 Installing Pi Coding Agent..."
|
|
run_command "npm install -g @mariozechner/pi-coding-agent@latest"
|
|
echo "✅ Done"
|
|
|
|
echo -e "\n🤖 Installing Kiro CLI..."
|
|
# https://kiro.dev/docs/cli/
|
|
KIRO_INSTALLER_URL="https://kiro.dev/install.sh"
|
|
KIRO_INSTALLER_SHA256="7487a65cf310b7fb59b357c4b5e6e3f3259d383f4394ecedb39acf70f307cffb"
|
|
KIRO_INSTALLER_PATH="$(mktemp)"
|
|
|
|
cleanup_kiro_installer() {
|
|
rm -f "$KIRO_INSTALLER_PATH"
|
|
}
|
|
trap cleanup_kiro_installer EXIT
|
|
|
|
run_command "curl -fsSL \"$KIRO_INSTALLER_URL\" -o \"$KIRO_INSTALLER_PATH\""
|
|
run_command "echo \"$KIRO_INSTALLER_SHA256 $KIRO_INSTALLER_PATH\" | sha256sum -c -"
|
|
|
|
run_command "bash \"$KIRO_INSTALLER_PATH\""
|
|
|
|
kiro_binary=""
|
|
if command -v kiro-cli >/dev/null 2>&1; then
|
|
kiro_binary="kiro-cli"
|
|
elif command -v kiro >/dev/null 2>&1; then
|
|
kiro_binary="kiro"
|
|
else
|
|
echo -e "\033[0;31m[ERROR] Kiro CLI installation did not create 'kiro-cli' or 'kiro' in PATH.\033[0m" >&2
|
|
exit 1
|
|
fi
|
|
|
|
run_command "$kiro_binary --help > /dev/null"
|
|
echo "✅ Done"
|
|
|
|
echo -e "\n🤖 Installing Kimi CLI..."
|
|
# https://code.kimi.com
|
|
run_command "pipx install kimi-cli"
|
|
echo "✅ Done"
|
|
|
|
echo -e "\n🤖 Installing CodeBuddy CLI..."
|
|
run_command "npm install -g @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"
|
|
echo "✅ Done"
|
|
|
|
# Installing DocFx (for documentation site)
|
|
echo -e "\n📚 Installing DocFx..."
|
|
run_command "dotnet tool update -g docfx"
|
|
echo "✅ Done"
|
|
|
|
echo -e "\n🧹 Cleaning cache..."
|
|
run_command "sudo apt-get autoclean"
|
|
run_command "sudo apt-get clean"
|
|
|
|
echo "✅ Setup completed. Happy coding! 🚀"
|