Conversation
|
Thanks for the clean integration — this follows our existing patterns perfectly and we're ready to merge it. There are some merge conflicts from other PRs that just landed (mostly .gitignore and README updates). Could you rebase on main to resolve? Should be straightforward. Once that's done we'll merge right away! |
183d12d to
812ed48
Compare
|
@msitarzewski I have just resolved it. Please check more |
|
Hey @kienbui1995 — looks like there are still merge conflicts (more PRs landed since your last rebase, including Qwen and the cowork label in install.sh). Could you rebase onto current |
|
Hi @kienbui1995 — here's exactly what needs to change to resolve the conflicts with the
The resolved branch is at https://github.com/gbpnkans/agency-agents/tree/feat/add-kiro-cli-integration if you want to compare or cherry-pick the resolution. Thanks! |
812ed48 to
57c2dac
Compare
|
@msitarzewski Rebased on latest main — all conflicts resolved (including qwen, cowork, academic, parallel scripts changes). Ready to merge! Thanks @gbpnkans for the detailed conflict resolution guide! |
Code ReviewPR: feat: add Kiro CLI integration The implementation follows the established integration patterns well (antigravity/gemini-cli/qwen style). The convert and install functions are clean and the gitignore, README, and integrations/README.md updates are all consistent and well-documented. Important —
|
Add first-class Kiro CLI support so users can install all Agency agents as skills with: ./scripts/install.sh --tool kiro Changes: - scripts/convert.sh: add convert_kiro() (SKILL.md per agent) - scripts/install.sh: add detect_kiro() (checks kiro + kiro-cli), install_kiro() - integrations/kiro/README.md: tool-specific docs - integrations/README.md: add Kiro CLI section - README.md: add Kiro CLI to Supported Tools, Quick Start, details block - .gitignore: exclude generated integrations/kiro/skills/ Tested: 162 agents converted and installed successfully.
57c2dac to
2210e0a
Compare
|
Rebased on latest main and addressed @mhc222's review:
@msitarzewski This PR has been rebased 3 times now — would appreciate an early merge before main diverges again. Thanks! |
|
Hey @kienbui1995 — we've closed the competing Kiro CLI PR (#222) in favor of yours. You've put in the most work here with multiple rounds of review and rebasing. Unfortunately the scripts have changed again since your last rebase (finance division added, directory lists reorganized). Could you do one more rebase against current Appreciate your persistence on this one! |
|
following :-) |
What does this PR do?
Add Kiro CLI integration — converts all Agency agents into Kiro CLI skill
files (
SKILL.md) and installs them to~/.kiro/skills/.Motivation
Kiro CLI (https://kiro.dev/cli/) supports custom skills via
~/.kiro/skills/<name>/SKILL.md.This PR adds first-class support so users can install all Agency agents
with a single command:
./scripts/install.sh --tool kiroChanges
scripts/convert.sh— addconvert_kiro()(SKILL.md per agent)scripts/install.sh— adddetect_kiro(),install_kiro(), interactive UI entryintegrations/kiro/README.md— tool-specific docsintegrations/README.md— add Kiro CLI sectionREADME.md— add Kiro CLI to Supported Tools + Quick Start + details block.gitignore— exclude generatedintegrations/kiro/skills/Testing
./scripts/convert.sh --tool kiro→ 112 agents converted./scripts/install.sh --tool kiro→ 112 skills installed to ~/.kiro/skills/Checklist