Claude Code plugin integrating Moonshot Kimi CLI.
Status: v0.2 (P1 Timing + P3 Polish + P2 New Commands shipped). See docs/superpowers/specs/ for per-phase design + lessons.md for migration experience.
- Claude Code
- Kimi CLI ≥ 1.34 (
uv tool install --python 3.13 kimi-clior the official shell installer) - Authenticated Kimi CLI (run
kimi loginonce in your terminal)
Claude Code plugins install takes a plugin name from a registered marketplace, not a filesystem path. Register this repo as a local marketplace first, then install by name:
# 0) cd into the repo root FIRST — the next command uses $PWD.
# If you skip this step, `$PWD` expands to whatever directory you're
# currently in and you'll register the wrong path.
cd /path/to/kimi-plugin-cc
# 1) Register this repo as a marketplace (one-time per machine)
claude plugins marketplace add "$PWD"
# 2) Install the kimi plugin from it
claude plugins install kimi@kimi-plugin
# 3) Verify
claude plugins list | grep kimiRestart your Claude Code session after install so slash commands become available.
/kimi:setup— verify Kimi CLI installation, authentication, and configured models/kimi:ask— one-shot prompt to Kimi (new conversation only; see/kimi:continueand/kimi:resumefor resumption)/kimi:continue <prompt>— resume the most recent Kimi session for the current cwd/kimi:resume <sessionId> <prompt>— resume a specific Kimi session by UUID (current cwd only)/kimi:review— balanced code review of the current diff (JSON)/kimi:adversarial-review— red-team review of the current diff (same schema, stricter stance)/kimi:rescue— delegate a multi-step task to Kimi via thekimi-agentsubagent/kimi:status//kimi:result//kimi:cancel— background-job lifecycle/kimi:timing— P1 telemetry browser for recent kimi-cli invocations
MIT