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! |
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(), install_kiro(), UI entry - integrations/kiro/README.md: tool-specific docs - integrations/README.md: add Kiro CLI section - README.md: add to Supported Tools, Quick Start, details block - .gitignore: exclude generated integrations/kiro/skills/ Tested: 112 agents converted and installed successfully.
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! |
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