Add Kiro IDE support to install.sh and install.ps1#511
Merged
dustinvannoy-db merged 2 commits intoMay 4, 2026
Merged
Conversation
Adds 'kiro' as a selectable tool target in the unified installer,
mirroring the existing per-tool integration pattern (claude, cursor,
copilot, codex, gemini, antigravity).
Per Kiro IDE docs (kiro.dev/docs/skills, kiro.dev/docs/mcp/configuration):
- Skills install to .kiro/skills/<skill>/SKILL.md (project) or
~/.kiro/skills/ (global). Same SKILL.md schema as Claude/Cursor —
no skill content changes required.
- MCP config writes to .kiro/settings/mcp.json (project) or
~/.kiro/settings/mcp.json (global). Same {"mcpServers": ...}
schema, so the existing write_mcp_json helper is reused.
Detection looks for /Applications/Kiro.app or a 'kiro' command (Bash),
and %LOCALAPPDATA%\Programs\Kiro\Kiro.exe or 'kiro' command (PowerShell).
Co-authored-by: Isaac
Collaborator
|
@antonyprasad-db this is looking good but it needs to merge in main. Please also check that when there is a full list of coding tools it includes windsurf, opencode, and kiro along with the others that have been in the repo a while. I think opencode may not be listed everywhere it should in main. |
dustinvannoy-db
requested changes
May 2, 2026
Collaborator
dustinvannoy-db
left a comment
There was a problem hiding this comment.
Merge main and make sure list of tools is complete (see other note for explanation)
- Resolves merge with main which added Windsurf (databricks-solutions#478) and OpenCode (databricks-solutions#492). - Combines all three new tools (windsurf, opencode, kiro) in a consistent order at every touch point: header comment, --tools help text, detection, checkbox UI, silent default, skill install path, MCP config, and final launch instructions. - Adds Kiro launch instruction to the post-install steps (was missing in the original PR). - Brings Windsurf and OpenCode into the header comment alongside the other tools (per reviewer note that opencode wasn't listed everywhere on main). - Kiro skill install now supports both global (~/.kiro/skills) and project (.kiro/skills) scopes, mirroring windsurf/opencode. Co-authored-by: Isaac
Contributor
Author
|
@dustinvannoy-db thanks for the review! Pushed an update that addresses both points: 1. Merged 2. Full coding-tools coverage:
Ready for another look when you have a chance. |
5 tasks
dustinvannoy-db
added a commit
that referenced
this pull request
May 7, 2026
Adds 'kiro' as a selectable tool target in the unified installer,
mirroring the existing per-tool integration pattern (claude, cursor,
copilot, codex, gemini, antigravity).
Per Kiro IDE docs (kiro.dev/docs/skills, kiro.dev/docs/mcp/configuration):
- Skills install to .kiro/skills/<skill>/SKILL.md (project) or
~/.kiro/skills/ (global). Same SKILL.md schema as Claude/Cursor —
no skill content changes required.
- MCP config writes to .kiro/settings/mcp.json (project) or
~/.kiro/settings/mcp.json (global). Same {"mcpServers": ...}
schema, so the existing write_mcp_json helper is reused.
Detection looks for /Applications/Kiro.app or a 'kiro' command (Bash),
and %LOCALAPPDATA%\Programs\Kiro\Kiro.exe or 'kiro' command (PowerShell).
Co-authored-by: antonyprasad-db <antonyprasad.thevaraj@databricks.com>
Co-authored-by: Antony Prasad Thevaraj <280810845+antonyprasad-db@users.noreply.github.com>
This was referenced May 7, 2026
This was referenced May 19, 2026
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.
Summary
Adds
kiroas a selectable tool target in the unified installer, mirroring the existing per-tool integration pattern (claude, cursor, copilot, codex, gemini, antigravity).Changes
--toolslist — addskiroto the comma-separated options/Applications/Kiro.apporkirocommand (Bash);%LOCALAPPDATA%\Programs\Kiro\Kiro.exeorkirocommand (PowerShell)<base>/.kiro/skills/<skill>/SKILL.md(project) or~/.kiro/skills/(global)<base>/.kiro/settings/mcp.json(project) or~/.kiro/settings/mcp.json(global), reuses the existingwrite_mcp_jsonhelperSchema sources
Per Kiro IDE docs:
SKILL.mdschema as Claude/Cursor, so no skill content changes are required{"mcpServers": ...}schema as Cursor/Codex/GeminiTest plan
bash install.sh --tools kiro --silentwrites skills to.kiro/skills/and MCP config to.kiro/settings/mcp.json--helpand--toolsvalidation reflect the new optionkiroCLI on PATHThis pull request and its description were written by Isaac.