You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds support for Kimi CLI (Moonshot AI) to GSD, allowing users to install commands and agents as Kimi skills in ~/.config/agents/skills/.
Why
Kimi CLI is a growing terminal-based AI coding assistant with 100k+ developers using its skill-based architecture. This change allows Kimi users to benefit from GSD's spec-driven development workflow w
ithout switching tools.
Testing
• [ ] Tested on macOS
• [ ] Tested on Windows
• [ ] Tested on Linux
Test steps:
Install for Kimi
node bin/install.js --kimi --global
Verify skills were created
ls ~/.config/agents/skills/gsd-*/
Verify agent YAML files
ls ~/.kimi/agents/gsd-*.yaml
Test skill invocation in Kimi
/skill:gsd-help
/skill:gsd-new-project
Checklist
• [x] Follows GSD style (no enterprise patterns, no filler)
• [ ] Updates CHANGELOG.md for user-facing changes
• [x] No unnecessary dependencies added
• [x] Works on Windows (uses path.join() throughout, forward slash conversion for paths)
Breaking Changes
None. This is purely additive - all existing Claude Code, OpenCode, Gemini, and Codex functionality remains unchanged.
Review: feat-kimi-support Branch (by Kimi + gsd + kimi-k2.5)
Status: ✅ Not yet merged into main (commit 4213f70)
Summary
This commit adds Kimi CLI as a 5th supported runtime alongside Claude Code, OpenCode, Gemini, and
Codex.
Key Changes
File Changes
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
README.md Updated documentation for Kimi support
bin/install.js +375 lines — full Kimi installation logic
package.json Added "kimi" and "kimi-cli" keywords
No settings.json — Kimi loads agents via --agent-file flag
No statusline hooks — Not supported in Kimi CLI
Potential Concerns
• Large installer file — bin/install.js now 2,700+ lines with 5 runtime paths
• Kimi uses different skill paths — could confuse users expecting ~/.kimi/
• No test coverage — No tests for Kimi-specific conversion functions
──────────────────────────────────────────────────────────────────────────────────────────────────
Overall: Clean implementation following existing patterns. The Kimi support is consistent with how
Codex was integrated (skills-first approach).
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
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
Adds support for Kimi CLI (Moonshot AI) to GSD, allowing users to install commands and agents as Kimi skills in ~/.config/agents/skills/.
Why
Kimi CLI is a growing terminal-based AI coding assistant with 100k+ developers using its skill-based architecture. This change allows Kimi users to benefit from GSD's spec-driven development workflow w
ithout switching tools.
Testing
• [ ] Tested on macOS
• [ ] Tested on Windows
• [ ] Tested on Linux
Test steps:
Install for Kimi
node bin/install.js --kimi --global
Verify skills were created
ls ~/.config/agents/skills/gsd-*/
Verify agent YAML files
ls ~/.kimi/agents/gsd-*.yaml
Test skill invocation in Kimi
/skill:gsd-help
/skill:gsd-new-project
Checklist
• [x] Follows GSD style (no enterprise patterns, no filler)
• [ ] Updates CHANGELOG.md for user-facing changes
• [x] No unnecessary dependencies added
• [x] Works on Windows (uses path.join() throughout, forward slash conversion for paths)
Breaking Changes
None. This is purely additive - all existing Claude Code, OpenCode, Gemini, and Codex functionality remains unchanged.