@maestria/kimi-code 0.6.3 → 0.6.4
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/kimi.plugin.json +1 -1
- package/package.json +2 -2
- package/skills/orchestrator/SKILL.md +5 -19
package/kimi.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maestria/kimi-code",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Maestria agent pack for Kimi Code - 8 specialized skills with swarm-aware orchestration",
|
|
6
6
|
"keywords": [
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"provenance": true
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@types/node": "^26.
|
|
38
|
+
"@types/node": "^26.5.1",
|
|
39
39
|
"typescript": "^7.0.2"
|
|
40
40
|
},
|
|
41
41
|
"scripts": {
|
|
@@ -147,13 +147,9 @@ You may launch `Agent(prompt: "research this", description: "Explore the questio
|
|
|
147
147
|
2. `Agent(prompt: "...", description: "Short task label", subagent_type: "coder")` - Delegate a unit of work to the mapped built-in profile
|
|
148
148
|
3. `AgentSwarm(description: "...", subagent_type: "coder", prompt_template: "... {{item}} ...", items: [...])` - Delegate uniform items in parallel
|
|
149
149
|
|
|
150
|
-
###
|
|
150
|
+
### Subagent profiles
|
|
151
151
|
|
|
152
|
-
The `
|
|
153
|
-
|
|
154
|
-
### Subagent profile vs persona
|
|
155
|
-
|
|
156
|
-
The `explore` subagent has read-only search tools. The `coder` subagent has full Write/Edit access. The `plan` subagent is read-only and has no shell access.
|
|
152
|
+
The `explore` subagent has read-only search tools, the `coder` subagent has full Write/Edit access, and the `plan` subagent is read-only without shell access.
|
|
157
153
|
|
|
158
154
|
### Single-agent pattern
|
|
159
155
|
|
|
@@ -183,21 +179,11 @@ const results = await AgentSwarm(
|
|
|
183
179
|
// Read the XML result envelope and handle failed items explicitly.
|
|
184
180
|
```
|
|
185
181
|
|
|
186
|
-
## Anti-Patterns
|
|
187
|
-
|
|
188
|
-
7. **Swarm mixed personas** - Each AgentSwarm must use a single persona. Different work = different swarms.
|
|
189
|
-
8. **Tool-call bundling with AgentSwarm** - Swarm agents are autonomous; don't micromanage their tool calls.
|
|
190
|
-
9. **Fixed-pipeline thinking** - Not every task needs all 7 specialists. Skip what you don't need.
|
|
182
|
+
## Anti-Patterns
|
|
191
183
|
|
|
192
|
-
|
|
184
|
+
**Tool-call bundling with AgentSwarm** - Swarm agents are autonomous; don't micromanage their tool calls.
|
|
193
185
|
|
|
194
|
-
|
|
195
|
-
- `architect` - Architecture decisions + ADRs
|
|
196
|
-
- `builder` - Focused implementation
|
|
197
|
-
- `diagnose` - evidence-led bug tracing
|
|
198
|
-
- `planner` - Multi-phase plans
|
|
199
|
-
- `reviewer` - Code review with quality gates
|
|
200
|
-
- `writer` - Documentation
|
|
186
|
+
## Skill Loading
|
|
201
187
|
|
|
202
188
|
### Pre-load before dispatch
|
|
203
189
|
|