-
Notifications
You must be signed in to change notification settings - Fork 6.2k
feat: add kiro-cli and AGENT_CONFIG consistency coverage #1690
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
3372aa1
e636367
e3fd551
6afc1a5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -51,32 +51,35 @@ echo -e "\n🤖 Installing OpenCode CLI..." | |
| run_command "npm install -g opencode-ai@latest" | ||
| echo "✅ Done" | ||
|
|
||
| echo -e "\n🤖 Installing Amazon Q CLI..." | ||
| # 👉🏾 https://docs.aws.amazon.com/amazonq/latest/qdeveloper-ug/command-line-verify-download.html | ||
|
|
||
| run_command "curl --proto '=https' --tlsv1.2 -sSf 'https://desktop-release.q.us-east-1.amazonaws.com/latest/q-x86_64-linux.zip' -o 'q.zip'" | ||
| run_command "curl --proto '=https' --tlsv1.2 -sSf 'https://desktop-release.q.us-east-1.amazonaws.com/latest/q-x86_64-linux.zip.sig' -o 'q.zip.sig'" | ||
| cat > amazonq-public-key.asc << 'EOF' | ||
| -----BEGIN PGP PUBLIC KEY BLOCK----- | ||
|
|
||
| mDMEZig60RYJKwYBBAHaRw8BAQdAy/+G05U5/EOA72WlcD4WkYn5SInri8pc4Z6D | ||
| BKNNGOm0JEFtYXpvbiBRIENMSSBUZWFtIDxxLWNsaUBhbWF6b24uY29tPoiZBBMW | ||
| CgBBFiEEmvYEF+gnQskUPgPsUNx6jcJMVmcFAmYoOtECGwMFCQPCZwAFCwkIBwIC | ||
| IgIGFQoJCAsCBBYCAwECHgcCF4AACgkQUNx6jcJMVmef5QD/QWWEGG/cOnbDnp68 | ||
| SJXuFkwiNwlH2rPw9ZRIQMnfAS0A/0V6ZsGB4kOylBfc7CNfzRFGtovdBBgHqA6P | ||
| zQ/PNscGuDgEZig60RIKKwYBBAGXVQEFAQEHQC4qleONMBCq3+wJwbZSr0vbuRba | ||
| D1xr4wUPn4Avn4AnAwEIB4h+BBgWCgAmFiEEmvYEF+gnQskUPgPsUNx6jcJMVmcF | ||
| AmYoOtECGwwFCQPCZwAACgkQUNx6jcJMVmchMgEA6l3RveCM0YHAGQaSFMkguoAo | ||
| vK6FgOkDawgP0NPIP2oA/jIAO4gsAntuQgMOsPunEdDeji2t+AhV02+DQIsXZpoB | ||
| =f8yY | ||
| -----END PGP PUBLIC KEY BLOCK----- | ||
| EOF | ||
| run_command "gpg --batch --import amazonq-public-key.asc" | ||
| run_command "gpg --verify q.zip.sig q.zip" | ||
| run_command "unzip -q q.zip" | ||
| run_command "chmod +x ./q/install.sh" | ||
| run_command "./q/install.sh --no-confirm" | ||
| run_command "rm -rf ./q q.zip q.zip.sig amazonq-public-key.asc" | ||
| echo -e "\n🤖 Installing Kiro CLI..." | ||
| # https://kiro.dev/docs/cli/ | ||
| KIRO_INSTALLER_URL="https://cli.kiro.dev/install" | ||
| 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\"" | ||
|
|
||
| if [ -n "${KIRO_INSTALLER_SHA256:-}" ]; then | ||
| run_command "echo \"$KIRO_INSTALLER_SHA256 $KIRO_INSTALLER_PATH\" | sha256sum -c -" | ||
| fi | ||
|
|
||
| run_command "bash \"$KIRO_INSTALLER_PATH\"" | ||
|
|
||
|
Comment on lines
+54
to
+71
|
||
| 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 CodeBuddy CLI..." | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -75,7 +75,7 @@ body: | |
| - Roo Code | ||
| - CodeBuddy | ||
| - Qoder CLI | ||
| - Amazon Q Developer CLI | ||
| - Kiro CLI | ||
| - Amp | ||
| - SHAI | ||
| - IBM Bob | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -69,7 +69,7 @@ body: | |
| - Roo Code | ||
| - CodeBuddy | ||
| - Qoder CLI | ||
| - Amazon Q Developer CLI | ||
| - Kiro CLI | ||
| - Amp | ||
| - SHAI | ||
| - IBM Bob | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.