Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
4697252
feat(integration): update Kimi integration for Kimi Code CLI
meymchen Jun 14, 2026
a5dc347
fix(integration): align Kimi dispatch and harden legacy migration
meymchen Jun 16, 2026
8c6e41b
Merge remote-tracking branch 'upstream/main' into feat/1532-kimi-code…
meymchen Jun 16, 2026
a207446
fix(integration): resolve custom context markers in Kimi legacy migra…
meymchen Jun 16, 2026
26e660a
Merge remote-tracking branch 'upstream/main' into feat/1532-kimi-code…
meymchen Jun 17, 2026
2d66414
fix(integration): harden Kimi legacy migration against symlinked paths
meymchen Jun 17, 2026
431b291
Merge remote-tracking branch 'upstream/main' into feat/1532-kimi-code…
meymchen Jun 17, 2026
e4fcb2f
Merge remote-tracking branch 'upstream/main' into feat/1532-kimi-code…
meymchen Jun 18, 2026
06a77ff
fix(kimi): guard symlinked SKILL.md during migration and teardown
meymchen Jun 18, 2026
57b605e
Merge remote-tracking branch 'upstream/main' into feat/1532-kimi-code…
meymchen Jun 21, 2026
b9dbb43
docs(kimi): mention KIMI.md→AGENTS.md migration in --migrate-legacy help
meymchen Jun 21, 2026
4931c28
Merge remote-tracking branch 'upstream/main' into feat/1532-kimi-code…
meymchen Jun 22, 2026
3557466
fix(kimi): validate legacy migration destination; clarify docstrings
meymchen Jun 22, 2026
b6d59b3
fix(kimi): harden legacy KIMI.md→AGENTS.md context migration
meymchen Jun 22, 2026
2d14a30
Potential fix for pull request finding
meymchen Jun 22, 2026
fc3c334
Fix for pull request finding
meymchen Jun 22, 2026
8e46788
Approve fix for pull request finding
meymchen Jun 22, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .devcontainer/post-create.sh
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ fi
run_command "$kiro_binary --help > /dev/null"
echo "✅ Done"

echo -e "\n🤖 Installing Kimi CLI..."
echo -e "\n🤖 Installing Kimi Code CLI..."
# https://code.kimi.com
run_command "pipx install kimi-cli"
run_command "npm install -g @moonshot-ai/kimi-code@latest"
Comment thread
meymchen marked this conversation as resolved.
echo "✅ Done"

echo -e "\n🤖 Installing CodeBuddy CLI..."
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@

### Changed

- feat(integration): update Kimi integration for Kimi Code CLI (`@moonshot-ai/kimi-code`): skills path moved from `.kimi/skills/` to `.kimi-code/skills/`, context file moved from `KIMI.md` to `AGENTS.md`; `--migrate-legacy` migrates old installs and `teardown()` cleans up leftover legacy directories
- Add Research Harness extension to community catalog (#2935)
- Add Coding Standards Drift Control extension to community catalog (#2934)
- Add Spec Trace extension to community catalog (#2527)
Expand Down
5 changes: 2 additions & 3 deletions docs/reference/integrations.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The Specify CLI supports a wide range of AI coding agents. When you run `specify
| [iFlow CLI](https://docs.iflow.cn/en/cli/quickstart) | `iflow` | |
| [Junie](https://junie.jetbrains.com/) | `junie` | |
| [Kilo Code](https://github.com/Kilo-Org/kilocode) | `kilocode` | |
| [Kimi Code](https://code.kimi.com/) | `kimi` | Skills-based integration; supports `--migrate-legacy` for dotted→hyphenated directory migration |
| [Kimi Code](https://code.kimi.com/) | `kimi` | Skills-based integration; installs into `.kimi-code/skills/`. `--migrate-legacy` moves old `.kimi/skills/` installs and `KIMI.md` context to the new paths |
| [Kiro CLI](https://kiro.dev/docs/cli/) | `kiro-cli` | Kiro CLI does not substitute `$ARGUMENTS` in file-based prompts, so Spec Kit ships a prose fallback at render time (see [Manage prompts](https://kiro.dev/docs/cli/chat/manage-prompts/) and issue [#1926](https://github.com/github/spec-kit/issues/1926)). Alias: `--integration kiro` |
| [Lingma](https://lingma.aliyun.com/) | `lingma` | Skills-based integration; skills are installed automatically |
| [Mistral Vibe](https://github.com/mistralai/mistral-vibe) | `vibe` | |
Expand Down Expand Up @@ -155,7 +155,7 @@ Some integrations accept additional options via `--integration-options`:
| Integration | Option | Description |
| ----------- | ------------------- | -------------------------------------------------------------- |
| `generic` | `--commands-dir` | Required. Directory for command files |
| `kimi` | `--migrate-legacy` | Migrate legacy dotted skill directories to hyphenated format |
| `kimi` | `--migrate-legacy` | Migrate legacy `.kimi/skills/` installs and `KIMI.md` to `.kimi-code/skills/` and `AGENTS.md`, including dotted→hyphenated directory names |

Example:

Expand Down Expand Up @@ -188,7 +188,6 @@ The currently declared multi-install safe integrations are:
| `iflow` | `.iflow/commands`, `IFLOW.md` |
| `junie` | `.junie/commands`, `.junie/AGENTS.md` |
| `kilocode` | `.kilocode/workflows`, `.kilocode/rules/specify-rules.md` |
| `kimi` | `.kimi/skills`, `KIMI.md` |
| `qodercli` | `.qoder/commands`, `QODER.md` |
| `qwen` | `.qwen/commands`, `QWEN.md` |
| `roo` | `.roo/commands`, `.roo/rules/specify-rules.md` |
Expand Down
Loading