Open
Conversation
Owner
|
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! |
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.
183d12d to
812ed48
Compare
Author
|
@msitarzewski I have just resolved it. Please check more |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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