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
feat: add Kimi CLI support with skills, agents, and tool mapping
Installs GSD commands as Kimi skills to the XDG path
~/.config/agents/skills/gsd-<name>/SKILL.md (invoked via /skill:gsd-<name>)
and agents as dual-file YAML + system prompt under ~/.kimi/agents/.
- Full Claude→Kimi tool name mapping (kimi_cli.tools.file:ReadFile, etc.)
- MCP tools excluded from agent tool lists
- ${VAR} escaping in agent system prompts
- --kimi --local guard with clear error message
- KIMI_CONFIG_DIR / KIMI_SKILLS_DIR env overrides
- 25 new tests in tests/kimi-config.test.cjs (553 total, 0 failures)
Copy file name to clipboardExpand all lines: README.md
+12-5Lines changed: 12 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
# GET SHIT DONE
4
4
5
-
**A light-weight and powerful meta-prompting, context engineering and spec-driven development system for Claude Code, OpenCode, Gemini CLI, and Codex.**
5
+
**A light-weight and powerful meta-prompting, context engineering and spec-driven development system for Claude Code, OpenCode, Gemini CLI, Codex, and Kimi.**
6
6
7
7
**Solves context rot — the quality degradation that happens as Claude fills its context window.**
8
8
@@ -80,16 +80,18 @@ npx get-shit-done-cc@latest
80
80
```
81
81
82
82
The installer prompts you to choose:
83
-
1.**Runtime** — Claude Code, OpenCode, Gemini, Codex, or all
83
+
1.**Runtime** — Claude Code, OpenCode, Gemini, Codex, Kimi, or all
84
84
2.**Location** — Global (all projects) or local (current project only)
85
85
86
86
Verify with:
87
87
- Claude Code / Gemini: `/gsd:help`
88
88
- OpenCode: `/gsd-help`
89
89
- Codex: `$gsd-help`
90
+
- Kimi: `/skill:gsd-help`
90
91
91
92
> [!NOTE]
92
-
> Codex installation uses skills (`skills/gsd-*/SKILL.md`) rather than custom prompts.
93
+
> Codex and Kimi installations use skills (`skills/gsd-*/SKILL.md`) rather than custom prompts.
94
+
> Kimi installs globally to `~/.config/agents/skills/` and does not support local install.
0 commit comments