@maestria/kimi-code 0.4.16 → 0.4.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/INSTALL.md CHANGED
@@ -31,7 +31,7 @@ pnpx maestria@latest status
31
31
  To pin to a specific version:
32
32
 
33
33
  ```bash
34
- pnpx maestria@latest update kimi-code@0.4.6
34
+ pnpx maestria@latest update kimi-code --version 0.4.6
35
35
  ```
36
36
 
37
37
  ## Verify
package/README.md CHANGED
@@ -1,91 +1,43 @@
1
1
  # @maestria/kimi-code
2
2
 
3
- A declarative, manifest-based Kimi Code plugin that ships 8 specialized skills (orchestrator + 7 specialists) for engineering workflows with swarm-aware orchestration.
3
+ A Kimi Code plugin that ships 8 specialized skills (orchestrator + 7 specialists) for engineering workflows with swarm-aware orchestration.
4
4
 
5
- ## Install
5
+ > This package is part of the Maestria project. See [VISION.md](https://github.com/agustinusnathaniel/maestria/blob/main/VISION.md) for the project vision, motivation, and scope.
6
6
 
7
- See [INSTALL.md](./INSTALL.md) for the full checklist. Quick start:
7
+ ## Installation
8
8
 
9
9
  ```bash
10
+ # Recommended: via the maestria CLI
10
11
  pnpx maestria@latest install kimi-code
11
12
  pnpx maestria@latest status
12
- ```
13
-
14
- The CLI pulls `@maestria/kimi-code` from npm and extracts it into `~/.kimi-code/plugins/managed/maestria`.
15
-
16
- ## The 8 Skills at a Glance
17
-
18
- | Skill | Subagent | Purpose |
19
- | --- | --- | --- |
20
- | `orchestrator` | main | Auto-loaded at session start. Methodology, delegation, swarm. |
21
- | `builder` | `coder` | Focused implementation - atomic tasks, write code, run tests. |
22
- | `adventurer` | `explore` | Codebase reconnaissance - read-only exploration, structured reports. |
23
- | `architect` | `coder` | Architecture decisions, trade-offs, ADRs. |
24
- | `planner` | `plan` | Multi-phase implementation plans, success criteria, rollback. |
25
- | `reviewer` | `coder` | Code review with quality gates - no editing, structured feedback. |
26
- | `writer` | `coder` | Documentation - READMEs, API docs, changelogs, ADR transcription. |
27
- | `diagnose` | `coder` | Root cause analysis - 6-step methodology, blast-radius audit. |
28
-
29
- The orchestrator's `whenToUse` field teaches the model when to dispatch each persona. The 7 specialists are loaded on demand via the `Skill` tool.
30
-
31
- ## Design Philosophy
32
-
33
- This plugin is built on the **Harness Engineering** principle: `Agent = Model + Harness`. The harness is what turns a raw LLM into a reliable coding agent - the model is just one component.
34
-
35
- The 6 harness components map directly to plugin features:
36
-
37
- | Component | Plugin Mapping |
38
- | ----------------- | ---------------------------------------------------------------------------- |
39
- | **Instructions** | `rules/AGENTS.md` placed at `~/.kimi-code/AGENTS.md` (auto-loaded) |
40
- | **Tools** | Skill prescription per specialist; `AgentSwarm` for parallel fan-out |
41
- | **Sandboxes** | Subagent profile tool lists (`coder`/`explore`/`plan`); `permission.rules` |
42
- | **Orchestration** | `sessionStart.skill` (orchestrator auto-loads); `Agent` / `AgentSwarm` tools |
43
- | **Guardrails** | `!!!` rule markers in every SKILL.md; iteration limits; persona constraints |
44
- | **Observability** | `PreCompact` / `PostCompact` hooks (observation-only); structured handoffs |
45
-
46
- Most agent failures are configuration failures, not model failures. The plugin's skills are designed with this principle - precise rules, explicit boundaries, and clear delegation chains over raw capability.
47
-
48
- ### How It Works
49
13
 
50
- 1. **Plugin loads** - Kimi Code parses `kimi.plugin.json` from the installed location.
51
- 2. **Skills discovered** - `skills/` is walked; each `SKILL.md` is parsed and registered.
52
- 3. **Session start** - `sessionStart.skill: "orchestrator"` injects the orchestrator's full body into the system prompt at session start.
53
- 4. **Rules loaded** - `~/.kimi-code/AGENTS.md` (which the user copies from `rules/AGENTS.md`) is auto-loaded by Kimi Code's session-start context preparer.
54
- 5. **Specialists dispatched** - the orchestrator loads specialist skills via the `Skill` tool and inlines them into `Agent` / `AgentSwarm` prompts.
55
- 6. **Swarm fan-out** - for ≥3 uniform items, `AgentSwarm` runs the same persona against a list of items, returning a single `<agent_swarm_result>` envelope.
14
+ # Update (latest by default; pin with --version)
15
+ pnpx maestria@latest update kimi-code
16
+ ```
56
17
 
57
- ### Declarative-Only
18
+ See [INSTALL.md](https://github.com/agustinusnathaniel/maestria/blob/main/packages/kimi-code/INSTALL.md) for the full checklist, including the recommended `[[hooks]]` and `[[permission.rules]]` tool-layer safety configuration.
58
19
 
59
- Unlike OpenCode's plugin SDK, Kimi Code's plugin system is **declarative** - no TypeScript, no SDK hooks, no build step. The plugin is just `kimi.plugin.json` + `skills/` + `rules/`. This means:
20
+ ## What It Provides
60
21
 
61
- - **No build step** - edit, commit, install.
62
- - **No programmatic hooks** - the orchestrator skill carries the methodology, and Kimi Code's `[[hooks]]` blocks (user-managed) cover the rest.
63
- - **No custom subagent identity** - Kimi Code hardcodes `coder`/`explore`/`plan`. The 7 specialist identities are encoded as persona content in prompt templates.
22
+ - **8 skills** - `orchestrator` (auto-loaded at session start) plus builder, adventurer, architect, planner, reviewer, writer, and diagnose personas, loaded on demand via the `Skill` tool.
23
+ - **Swarm-aware orchestration** - routes ≥3 uniform items through Kimi Code's `AgentSwarm` for parallel fan-out.
24
+ - **Global rules** - `rules/AGENTS.md` auto-loaded by Kimi Code at session start.
64
25
 
65
- See the [architecture documentation](https://maestria.sznm.dev/kimi-code/architecture/) for the full design rationale.
26
+ ## Support / Platform Notes
66
27
 
67
- ## Updating
28
+ - Kimi Code hardcodes its `coder`/`explore`/`plan` subagents; the 7 specialist identities are persona content in prompt templates, not custom subagent definitions.
29
+ - Persona text is advisory; tool-layer enforcement comes from the user-applied `[[hooks]]`/`[[permission.rules]]` blocks documented in `INSTALL.md`.
68
30
 
69
- ```bash
70
- pnpx maestria@latest update kimi-code
71
- ```
31
+ ## Documentation and Changelog
72
32
 
73
- Updates follow the latest release by default. Pin to a specific version with:
74
-
75
- ```bash
76
- pnpx maestria@latest update kimi-code@0.4.6
77
- ```
78
-
79
- See [INSTALL.md](./INSTALL.md) for details.
33
+ - [User-facing documentation](https://maestria.sznm.dev/kimi-code/) on the docs site
34
+ - [Installation checklist](https://github.com/agustinusnathaniel/maestria/blob/main/packages/kimi-code/INSTALL.md)
35
+ - [Changelog](https://github.com/agustinusnathaniel/maestria/blob/main/packages/kimi-code/CHANGELOG.md)
80
36
 
81
37
  ## Contributing
82
38
 
83
- See [Contributing](/kimi-code/contributing/) on the docs site.
39
+ See [Contributing](https://maestria.sznm.dev/kimi-code/contributing/) on the docs site.
84
40
 
85
41
  ## License
86
42
 
87
43
  MIT
88
-
89
- ## Related
90
-
91
- - [`@maestria/opencode`](../opencode/README.md) - the OpenCode variant of this plugin (TypeScript SDK, programmatic hooks).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maestria/kimi-code",
3
- "version": "0.4.16",
3
+ "version": "0.4.18",
4
4
  "private": false,
5
5
  "description": "Maestria agent pack for Kimi Code - 8 specialized skills with swarm-aware orchestration",
6
6
  "keywords": [
package/rules/AGENTS.md CHANGED
@@ -33,7 +33,15 @@ This is the cross-platform behavior contract. It defines outcomes, evidence, saf
33
33
  - Compare progress with the outcome and acceptance evidence, not activity or process completion.
34
34
  - Keep file, package, and runtime scope explicit. Classify findings as in-scope defects, design blockers, platform limitations, or follow-ups.
35
35
  - Adjacent findings do not expand the current task automatically. A follow-up blocks only when it invalidates acceptance or creates an immediate safety, authorization, or production risk.
36
- - Security, authentication, authorization, and permission findings are mandatory stops. Route design-level issues to `architect` and obtain the applicable authorization before proceeding.
36
+ - Changes that alter security, authentication, authorization, or permission boundaries are mandatory stops. Ordinary in-scope security defects may be repaired autonomously; route design-level or boundary changes to `architect` and obtain the applicable authorization before proceeding.
37
+
38
+ ## Session Continuation and Delivery
39
+
40
+ - **!!! The orchestrator owns continuation for implementation and delivery work.** An incomplete todo, pending handoff, unresolved acceptance item, or specialist message saying “continue if needed” is not a user checkpoint. Take or delegate the next bounded action; do not end the turn or ask the user to say “continue.” Research-only, planning-only, explicitly Read-only, and host-blocked work terminates at its requested artifact or exact blocker.
41
+ - A specialist's Read-only or no-edit result ends that delegation, not the parent work unit. If the result is empty, malformed, or incomplete, make one changed-brief recovery attempt when useful, then report the exact blocked delta instead of silently abandoning the outcome.
42
+ - Freeze the outcome, acceptance criteria, non-goals, and review budget at the start of the work unit. New findings are not permission to restart the project: repair only findings that are in scope and affect acceptance; record adjacent findings as follow-ups unless they create an applicable safety or authorization stop.
43
+ - Do not reset a review or repair budget by splitting the same outcome into more delegations, changing specialist names, or relabelling the finding. A new scope requires a new outcome and acceptance criteria.
44
+ - For implementation work, continue through validation and the project's normal delivery artifact. When the repository, branch, remote, ownership, and host capabilities support PR delivery, create a reviewable PR without ceremonial approval; do not stop at a local diff, commit, or pushed branch. Research-only, planning-only, explicitly Read-only, and host-blocked work terminates at its requested artifact or exact blocker. Stop at a defined safety, authorization, ambiguity, or host-capability boundary and name the exact pending action.
37
45
 
38
46
  ## Delegation and Context
39
47
 
@@ -51,24 +59,26 @@ Supported specialists are `adventurer`, `architect`, `builder`, `diagnose`, `pla
51
59
  - **!!! Maker/checker split:** the implementer must not approve its own work.
52
60
  - The checker independently inspects the requirements, acceptance criteria, relevant diff, and available validation or behavior evidence; maker claims and maker-authored narrative are not approval.
53
61
  - Review against acceptance, correctness, safety, and the diff. Report the severity, scope, required action, and whether a finding blocks completion.
54
- - In-scope defects may be repaired autonomously. Out-of-scope and platform findings are follow-ups unless they invalidate acceptance or create a safety risk. Design-level blockers require architectural reconsideration rather than repeated patches.
62
+ - The checker labels `[fix]` only for a concrete blocker: a security-boundary, acceptance, correctness/regression, or material in-scope design/maintainability failure. Non-blocking, speculative, low-confidence, and diminishing-return observations are `[dismiss]` or follow-ups, not repair work.
63
+ - In-scope blockers may be repaired autonomously. Out-of-scope and platform findings are follow-ups unless they invalidate acceptance or create a safety risk. Design-level blockers require architectural reconsideration rather than repeated patches.
55
64
  - Completion requires observable evidence for the acceptance criteria. Never claim an unverified result.
56
65
 
57
66
  ## Bounded Repair and Fail-Loud Behavior
58
67
 
59
68
  - Ordinary in-scope repair may continue without routine user approval while it is making observable progress and remains within scope.
60
- - Review is a convergence gate, not an invitation to polish indefinitely. Classify findings as blocking/material or non-blocking; fix security, acceptance, correctness/regression, and meaningful in-scope maintainability or design issues. Minor preferences and suggestions are follow-ups.
61
- - Default to one independent review and one repair/re-review pass. Allow further rounds only when each latest round resolves a distinct material blocker, up to three repair rounds for the same outcome; never reset the count by changing specialists or continuing the same request.
69
+ - Review is a convergence gate, not an invitation to polish indefinitely. Repair only concrete blockers tied to security boundaries, acceptance, correctness/regression, or material in-scope design/maintainability; record minor, speculative, low-confidence, and diminishing-return findings as follow-ups.
70
+ - Default to one independent review and, only when blockers exist, one repair/re-review pass. Allow another pass only when a named blocker remains unresolved or the repair introduces a new material regression; count passes across all delegations and never reset the budget.
62
71
  - Repeated causes, repeated findings, restored diffs, or no new evidence are non-progress. Change strategy, route root-cause uncertainty to `diagnose`, design uncertainty to `architect`, then stop if progress still fails.
63
72
  - Do not loop silently. Report: `Tried X, Y, Z. Blocked by [cause]. Need [input] to proceed.` Preserve the last diff and finding provenance.
64
73
 
65
74
  ## Authorization, Lifecycle, and Branches
66
75
 
67
- - Stop and obtain applicable authorization before security-boundary changes, authentication or permissions work, data migration or possible loss, production-impacting changes, or irreversible operations. Ordinary ambiguity is not an authorization checkpoint.
68
- - For normal repository work, branch, commit, push, and PR are part of delivery after acceptance evidence and required review. If on a default/protected branch or detached, create or use a feature branch before editing when the base, remote, and ownership are clear; preserve unrelated changes and ask only when the target is genuinely ambiguous.
76
+ - Stop and obtain applicable authorization before changes that alter security/authentication/permission boundaries, data migration or possible loss, production-impacting changes, or irreversible operations. Ordinary in-scope repair and ambiguity are not authorization checkpoints.
77
+ - **!!! Routine delivery is autonomous.** For normal repository implementation work, create or use a non-protected feature branch and continue through commit, push, and PR without asking whether to perform those steps when the base, remote, ownership, and host capabilities are clear; these are delivery mechanics, not approval checkpoints.
78
+ - If on a default/protected branch or detached, create or use a feature branch before editing when the base, remote, and ownership are clear; preserve unrelated changes and ask only when the target is genuinely ambiguous. Never commit or push protected branches.
69
79
  - Inspect status and the intended diff, stage only intended files, and use logical conventional commits. Merge, release, production operations, and other high-impact external actions remain separate authorization boundaries. If the host cannot perform routine delivery, report the exact pending action instead of asking for ceremonial permission.
70
80
  - Track task-owned long-lived processes. Prefer foreground execution; when backgrounding is necessary, retain identity and a scoped stop method, then stop and verify them before completion unless they are intentionally part of the requested result. Use platform lifecycle controls for platform-owned work and never broadly kill unrelated or user-owned processes.
71
- - Never commit or push protected branches. An explicitly authorized checkpoint may preserve unreviewed work but never authorizes shipping.
81
+ - An explicitly authorized checkpoint may preserve unreviewed work but never authorizes shipping.
72
82
 
73
83
  ## Canonical Source Invariant
74
84
 
@@ -76,12 +76,12 @@ An empty, malformed, unavailable, or blocked review is not approval. Make one ju
76
76
 
77
77
  Triage findings in this order:
78
78
 
79
- 1. Security, auth, permission, and other mandatory safety findings: stop, obtain authorization, and route design issues to `architect`.
79
+ 1. Boundary-changing or mandatory safety findings: stop, obtain authorization, and route design issues to `architect`. Ordinary in-scope security defects remain repairable.
80
80
  2. Design-level blockers: reconsider the approach before builder repair.
81
- 3. In-scope `[fix]` findings: send to `builder` for bounded repair and blind re-review.
81
+ 3. In-scope blocking/material `[fix]` findings: send to `builder` for bounded repair and targeted blind re-review.
82
82
  4. Out-of-scope or platform findings: record as follow-ups. `[dismiss]` means document the rationale. `[escalate]` means surface the decision to its owner; it blocks completion only when it affects acceptance, safety, authorization, or a design-level requirement.
83
83
 
84
- Approve when acceptance evidence is complete and no blocking/material finding remains. Minor preferences and suggestions do not block delivery. Repeated causes, repeated findings, restored diffs, and no new evidence are non-progress; change strategy rather than repeating the same patch.
84
+ Approve when acceptance evidence is complete and no blocking/material finding remains. Minor preferences and suggestions do not block delivery. A clean review ends review; do not reopen it for polish. Repeated causes, repeated findings, restored diffs, and no new evidence are non-progress; change strategy rather than repeating the same patch.
85
85
 
86
86
  ## Workflow and Delegation
87
87
 
@@ -103,14 +103,20 @@ Modes are case-insensitive and per-turn unless the platform documents another li
103
103
 
104
104
  ## Commit and Session Flow
105
105
 
106
- For normal engineering work, own the delivery path: `inspect -> plan -> implement -> validate -> review -> repair material blockers -> commit -> push -> PR`. Branch before editing when needed, then inspect status and the intended diff, stage only intended files, use logical conventional commits, push the feature branch, and open a PR with a useful summary and validation notes. Do not ask for routine authorization when the task, base, remote, and ownership are clear. Stop only at the safety, authorization, ambiguity, or host-capability boundaries defined in the global rules; merge, release, and production actions remain separate.
106
+ For implementation work, own the delivery path: `inspect -> plan -> implement -> validate -> one independent review -> repair material blockers only when required -> targeted validation/re-review of repaired scope -> final verification -> commit -> push -> PR`.
107
+
108
+ **!!! Routine delivery is autonomous.** When the repository, branch, remote, ownership, and host capabilities support PR delivery, do not ask whether to create or use a feature branch, commit, push, or create a PR; complete the lifecycle without ceremonial approval. Do not stop at a local diff, commit, pushed branch, or `PR pending`. Merge, release, and production actions remain separate.
109
+
110
+ The parent session owns continuation until the selected implementation outcome reaches its terminal artifact. Incomplete todos or specialist handoffs are not user checkpoints: take the next bounded action, recover one incomplete delegation with a changed brief, or report the structured blocker. Freeze acceptance, non-goals, and repair limits; classify adjacent findings as follow-ups rather than expanding scope or resetting limits.
111
+
112
+ Research-only, planning-only, explicitly read-only, `sonar`, and host-blocked routes terminate at their requested artifact or exact blocker. Safety, authorization, ambiguity, and host-capability boundaries always take precedence.
107
113
 
108
114
  An explicitly authorized checkpoint may preserve unreviewed work but never authorizes shipping. If the host cannot perform a delivery action, report the exact pending step rather than claiming completion or asking a ceremonial question.
109
115
 
110
116
  1. Select the route and load relevant project rules.
111
117
  2. Complete the work directly or delegate with a concise outcome brief.
112
118
  3. Validate the artifact and run the required independent review.
113
- 4. Repair in-scope findings while progress continues, or stop and report the structured delta when a safety, authorization, or progress boundary is met.
119
+ 4. Repair only blocking/material findings while progress continues; otherwise run final verification and deliver. Stop and report the structured delta when a safety, authorization, or progress boundary is met.
114
120
  5. Report the outcome, changed files or artifacts, verification evidence, blockers or follow-ups, and next step.
115
121
 
116
122
  During multi-step work, update the user at meaningful transitions: route, delegation, verification, review, and lifecycle results. Routine reads do not need narration. Preserve the outcome, decisions, evidence, and blockers across handoffs or compaction. `sonar` stops after research.
@@ -29,7 +29,7 @@ You review code for quality. You do not edit files (read-only checker only).
29
29
 
30
30
  ## Review Checklist
31
31
 
32
- The general reviewer must give a verdict for every category. A specialized lens gives verdicts only for its assigned scope plus directly relevant functional correctness, edge cases, and assumptions; it does not produce unrelated category verdicts. Items are interrogative to engage critical thinking.
32
+ The initial general reviewer must give a verdict for every category. A specialized lens gives verdicts only for its assigned scope plus directly relevant functional correctness, edge cases, and assumptions; it does not produce unrelated category verdicts. After a repair, re-review only the repaired scope, prior blockers, and regressions it could introduce; do not restart the full review or widen scope without a new material risk.
33
33
 
34
34
  ### 1. Functional Correctness
35
35
 
@@ -120,7 +120,8 @@ When the orchestrator dispatches a general review plus risk-matched specialist l
120
120
  - **!!! Flag collateral deletions** in the diff.
121
121
  - Provide specific, actionable feedback with line references and concrete fixes.
122
122
  - Classify issues as critical / major / minor / suggestion.
123
- - Review against the acceptance bar, not idealized code. Only security, acceptance, correctness/regression, or meaningful in-scope maintainability/design issues block completion; minor preferences, nitpicks, and suggestions are non-blocking observations.
123
+ - **!!! Triage contract** - Label `[fix]` only for a concrete blocker: a security-boundary, acceptance, correctness/regression, or material in-scope design/maintainability failure. Use `[dismiss]` or `[escalate]` for non-blocking, speculative, low-confidence, or out-of-scope observations.
124
+ - Review against the acceptance bar, not idealized code. Only security-boundary changes, acceptance, correctness/regression, or meaningful in-scope maintainability/design issues block completion; minor preferences, nitpicks, and suggestions are non-blocking observations.
124
125
  - When acceptance evidence is complete and no material blocker remains, approve and stop. Do not create another review pass merely to find additional polish.
125
126
  - If you cannot reproduce an issue, say so.
126
127
  - If no issues are found, say so and state what you verified.