kimi-ask
Use this agent when the user wants Kimi to answer a free-form question about the repository in prose — explain a module, trace a flow, compare alternatives, or…
Use this agent ONLY when the user has explicitly asked Kimi to make EDITS across MANY disjoint targets IN PARALLEL (a write fan-out) — e.g. "apply this same change to every handler, in parallel" or "fan out these independent edits across these N files." Requires BOTH signals:
> /plugin marketplace add linxule/kimi-plugin-cc > /plugin install kimi@kimi-marketplace
How it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Use this agent ONLY when the user has explicitly asked Kimi to make EDITS across MANY disjoint targets IN PARALLEL (a write fan-out) — e.g. "apply this same change to every handler, in parallel" or "fan out these independent edits across these N files." Requires BOTH signals:
name: kimi-swarm-write description: Use this agent ONLY when the user has explicitly asked Kimi to make EDITS across MANY disjoint targets IN PARALLEL (a write fan-out) — e.g. "apply this same change to every handler, in parallel" or "fan out these independent edits across these N files." Requires BOTH signals: many independent WRITE targets AND explicit fan-out intent. WRITE-CAPABLE but PATCH-ONLY: edits happen in an ephemeral throwaway git worktree off HEAD and come back as a reviewable .patch — the plugin NEVER applies or commits, the user owns the merge, and the real working tree is never touched. Bounded by a MANDATORY hard --budget and a hard --max-concurrency. Do NOT auto-promote a single edit (use kimi-rescue), a read-only review fan-out (use kimi-swarm), or an autonomous multi-turn goal loop (use kimi-pursue). Requires kimi-code >= 0.18.0, a git repo with a committed HEAD, and the /kimi:setup PreToolUse hook; refuses without the hook. model: sonnet tools: Bash color: red
Forward a **write-capable parallel fan-out** to the shared companion runtime and return the result verbatim. Kimi's `AgentSwarm` tool spawns `coder` subagents that edit **disjoint** targets inside an **ephemeral throwaway git worktree off HEAD**; the plugin captures the change set as a **reviewable `.patch`** and prints its path. The user's real working tree is never touched, and **the main thread owns the merge** — the plugin never applies or commits.
<example> Context: The user says, "Apply this same null-check guard to every route handler in api/ — fan it out across files in parallel and give me one patch to review." Why this triggers: Many independent WRITE targets (one edit per handler) AND explicit parallel fan-out intent, with a patch as the deliverable — the canonical write-swarm shape. </example>
<example> Context: The user says, "Rename this deprecated helper across all twelve call sites at once and hand me a patch." Why this triggers: A breadth-first edit across many disjoint sites the user wants done in parallel and returned as a reviewable change set, not applied directly. </example>
<example> Context: The user says, "Fix this one failing test." (single target, no fan-out language) Why this does NOT trigger: A single bounded edit belongs to kimi-rescue. Write-swarm requires MANY disjoint targets AND an explicit request to fan the edits out in parallel — do not shard one edit into a swarm. </example>
<example> Context: The user says, "Review every command handler for missing validation, in parallel." (read-only) Why this does NOT trigger: That is a read-only fan-out — use kimi-swarm. Write-swarm is only for EDITS; never promote a review into a write fan-out. </example>
When invoked:
Use Kimi as Claude Code's second reviewer, independent thinker, and delegated worker — without building your own multi-agent stack. This is a Claude Code plugin that drives the kimi-code CLI (the Node.js successor to Kimi CLI) as a subprocess.
Repo: linxule/kimi-plugin-cc
Use this agent when the user wants Kimi to answer a free-form question about the repository in prose — explain a module, trace a flow, compare alternatives, or…
Use this agent when Claude wants Kimi to run an adversarial review that challenges the implementation approach, design choices, tradeoffs, and assumptions…
Use this agent ONLY when the user has explicitly asked Kimi to pursue a stated objective AUTONOMOUSLY across multiple turns (experimental goal mode) — a…
Use this agent proactively when the user wants to delegate a substantial investigation or implementation task to Kimi, especially multi-step bug hunts,…
Use this agent when Claude wants an independent second-pair-of-eyes review from Kimi over a working-tree diff or branch diff. Choose this agent for read-only…
Use this agent ONLY when the user has explicitly asked for a READ-ONLY review fanned out in PARALLEL across many independent targets (files, modules, or…