claude-code-swarm 0.3.3 → 0.3.5

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.
Files changed (273) hide show
  1. package/.claude-plugin/marketplace.json +1 -1
  2. package/.claude-plugin/plugin.json +22 -1
  3. package/.claude-plugin/run-agent-inbox-mcp.sh +76 -0
  4. package/.claude-plugin/run-minimem-mcp.sh +98 -0
  5. package/.claude-plugin/run-opentasks-mcp.sh +65 -0
  6. package/CLAUDE.md +200 -36
  7. package/README.md +65 -0
  8. package/e2e/helpers/cleanup.mjs +17 -3
  9. package/e2e/helpers/map-mock-server.mjs +201 -25
  10. package/e2e/helpers/sidecar.mjs +222 -0
  11. package/e2e/helpers/workspace.mjs +2 -1
  12. package/e2e/tier5-sidecar-inbox.test.mjs +900 -0
  13. package/e2e/tier6-inbox-mcp.test.mjs +173 -0
  14. package/e2e/tier6-live-agent.test.mjs +759 -0
  15. package/e2e/vitest.config.e2e.mjs +1 -1
  16. package/hooks/hooks.json +15 -8
  17. package/package.json +13 -1
  18. package/references/agent-inbox/CLAUDE.md +151 -0
  19. package/references/agent-inbox/README.md +238 -0
  20. package/references/agent-inbox/docs/CLAUDE-CODE-SWARM-PROPOSAL.md +137 -0
  21. package/references/agent-inbox/docs/DESIGN.md +1156 -0
  22. package/references/agent-inbox/hooks/inbox-hook.mjs +119 -0
  23. package/references/agent-inbox/hooks/register-hook.mjs +69 -0
  24. package/references/agent-inbox/package-lock.json +3347 -0
  25. package/references/agent-inbox/package.json +58 -0
  26. package/references/agent-inbox/rules/agent-inbox.md +78 -0
  27. package/references/agent-inbox/src/federation/address.ts +61 -0
  28. package/references/agent-inbox/src/federation/connection-manager.ts +573 -0
  29. package/references/agent-inbox/src/federation/delivery-queue.ts +222 -0
  30. package/references/agent-inbox/src/federation/index.ts +6 -0
  31. package/references/agent-inbox/src/federation/routing-engine.ts +188 -0
  32. package/references/agent-inbox/src/federation/trust.ts +71 -0
  33. package/references/agent-inbox/src/index.ts +390 -0
  34. package/references/agent-inbox/src/ipc/ipc-server.ts +207 -0
  35. package/references/agent-inbox/src/jsonrpc/mail-server.ts +382 -0
  36. package/references/agent-inbox/src/map/map-client.ts +414 -0
  37. package/references/agent-inbox/src/mcp/mcp-server.ts +272 -0
  38. package/references/agent-inbox/src/mesh/delivery-bridge.ts +110 -0
  39. package/references/agent-inbox/src/mesh/mesh-connector.ts +41 -0
  40. package/references/agent-inbox/src/mesh/mesh-transport.ts +157 -0
  41. package/references/agent-inbox/src/mesh/type-mapper.ts +239 -0
  42. package/references/agent-inbox/src/push/notifier.ts +233 -0
  43. package/references/agent-inbox/src/registry/warm-registry.ts +255 -0
  44. package/references/agent-inbox/src/router/message-router.ts +175 -0
  45. package/references/agent-inbox/src/storage/interface.ts +48 -0
  46. package/references/agent-inbox/src/storage/memory.ts +145 -0
  47. package/references/agent-inbox/src/storage/sqlite.ts +671 -0
  48. package/references/agent-inbox/src/traceability/traceability.ts +183 -0
  49. package/references/agent-inbox/src/types.ts +303 -0
  50. package/references/agent-inbox/test/federation/address.test.ts +101 -0
  51. package/references/agent-inbox/test/federation/connection-manager.test.ts +546 -0
  52. package/references/agent-inbox/test/federation/delivery-queue.test.ts +159 -0
  53. package/references/agent-inbox/test/federation/integration.test.ts +857 -0
  54. package/references/agent-inbox/test/federation/routing-engine.test.ts +117 -0
  55. package/references/agent-inbox/test/federation/sdk-integration.test.ts +744 -0
  56. package/references/agent-inbox/test/federation/trust.test.ts +89 -0
  57. package/references/agent-inbox/test/ipc-jsonrpc.test.ts +113 -0
  58. package/references/agent-inbox/test/ipc-server.test.ts +197 -0
  59. package/references/agent-inbox/test/mail-server.test.ts +285 -0
  60. package/references/agent-inbox/test/map-client.test.ts +408 -0
  61. package/references/agent-inbox/test/mesh/delivery-bridge.test.ts +178 -0
  62. package/references/agent-inbox/test/mesh/e2e-mesh.test.ts +527 -0
  63. package/references/agent-inbox/test/mesh/e2e-real-meshpeer.test.ts +629 -0
  64. package/references/agent-inbox/test/mesh/federation-mesh.test.ts +269 -0
  65. package/references/agent-inbox/test/mesh/mesh-connector.test.ts +66 -0
  66. package/references/agent-inbox/test/mesh/mesh-transport.test.ts +191 -0
  67. package/references/agent-inbox/test/mesh/meshpeer-integration.test.ts +442 -0
  68. package/references/agent-inbox/test/mesh/mock-mesh.ts +125 -0
  69. package/references/agent-inbox/test/mesh/mock-meshpeer.ts +266 -0
  70. package/references/agent-inbox/test/mesh/type-mapper.test.ts +226 -0
  71. package/references/agent-inbox/test/message-router.test.ts +184 -0
  72. package/references/agent-inbox/test/push-notifier.test.ts +139 -0
  73. package/references/agent-inbox/test/registry/warm-registry.test.ts +171 -0
  74. package/references/agent-inbox/test/sqlite-prefix.test.ts +192 -0
  75. package/references/agent-inbox/test/sqlite-storage.test.ts +243 -0
  76. package/references/agent-inbox/test/storage.test.ts +196 -0
  77. package/references/agent-inbox/test/traceability.test.ts +123 -0
  78. package/references/agent-inbox/test/wake.test.ts +330 -0
  79. package/references/agent-inbox/tsconfig.json +20 -0
  80. package/references/agent-inbox/tsup.config.ts +10 -0
  81. package/references/agent-inbox/vitest.config.ts +8 -0
  82. package/references/minimem/.claude/settings.json +7 -0
  83. package/references/minimem/.sudocode/issues.jsonl +18 -0
  84. package/references/minimem/.sudocode/specs.jsonl +1 -0
  85. package/references/minimem/CLAUDE.md +329 -0
  86. package/references/minimem/README.md +565 -0
  87. package/references/minimem/claude-plugin/.claude-plugin/plugin.json +10 -0
  88. package/references/minimem/claude-plugin/.mcp.json +7 -0
  89. package/references/minimem/claude-plugin/README.md +158 -0
  90. package/references/minimem/claude-plugin/commands/recall.md +47 -0
  91. package/references/minimem/claude-plugin/commands/remember.md +41 -0
  92. package/references/minimem/claude-plugin/hooks/__tests__/hooks.test.ts +272 -0
  93. package/references/minimem/claude-plugin/hooks/hooks.json +27 -0
  94. package/references/minimem/claude-plugin/hooks/session-end.sh +86 -0
  95. package/references/minimem/claude-plugin/hooks/session-start.sh +85 -0
  96. package/references/minimem/claude-plugin/skills/memory/SKILL.md +108 -0
  97. package/references/minimem/media/banner.png +0 -0
  98. package/references/minimem/package-lock.json +5373 -0
  99. package/references/minimem/package.json +76 -0
  100. package/references/minimem/scripts/postbuild.js +49 -0
  101. package/references/minimem/src/__tests__/edge-cases.test.ts +371 -0
  102. package/references/minimem/src/__tests__/errors.test.ts +265 -0
  103. package/references/minimem/src/__tests__/helpers.ts +199 -0
  104. package/references/minimem/src/__tests__/internal.test.ts +407 -0
  105. package/references/minimem/src/__tests__/knowledge-frontmatter.test.ts +148 -0
  106. package/references/minimem/src/__tests__/knowledge.test.ts +148 -0
  107. package/references/minimem/src/__tests__/minimem.integration.test.ts +1127 -0
  108. package/references/minimem/src/__tests__/session.test.ts +190 -0
  109. package/references/minimem/src/cli/__tests__/commands.test.ts +760 -0
  110. package/references/minimem/src/cli/__tests__/contained-layout.test.ts +286 -0
  111. package/references/minimem/src/cli/commands/__tests__/conflicts.test.ts +141 -0
  112. package/references/minimem/src/cli/commands/append.ts +76 -0
  113. package/references/minimem/src/cli/commands/config.ts +262 -0
  114. package/references/minimem/src/cli/commands/conflicts.ts +415 -0
  115. package/references/minimem/src/cli/commands/daemon.ts +169 -0
  116. package/references/minimem/src/cli/commands/index.ts +12 -0
  117. package/references/minimem/src/cli/commands/init.ts +166 -0
  118. package/references/minimem/src/cli/commands/mcp.ts +221 -0
  119. package/references/minimem/src/cli/commands/push-pull.ts +213 -0
  120. package/references/minimem/src/cli/commands/search.ts +223 -0
  121. package/references/minimem/src/cli/commands/status.ts +84 -0
  122. package/references/minimem/src/cli/commands/store.ts +189 -0
  123. package/references/minimem/src/cli/commands/sync-init.ts +290 -0
  124. package/references/minimem/src/cli/commands/sync.ts +70 -0
  125. package/references/minimem/src/cli/commands/upsert.ts +197 -0
  126. package/references/minimem/src/cli/config.ts +611 -0
  127. package/references/minimem/src/cli/index.ts +299 -0
  128. package/references/minimem/src/cli/shared.ts +189 -0
  129. package/references/minimem/src/cli/sync/__tests__/central.test.ts +152 -0
  130. package/references/minimem/src/cli/sync/__tests__/conflicts.test.ts +209 -0
  131. package/references/minimem/src/cli/sync/__tests__/daemon.test.ts +118 -0
  132. package/references/minimem/src/cli/sync/__tests__/detection.test.ts +207 -0
  133. package/references/minimem/src/cli/sync/__tests__/integration.test.ts +476 -0
  134. package/references/minimem/src/cli/sync/__tests__/registry.test.ts +363 -0
  135. package/references/minimem/src/cli/sync/__tests__/state.test.ts +255 -0
  136. package/references/minimem/src/cli/sync/__tests__/validation.test.ts +193 -0
  137. package/references/minimem/src/cli/sync/__tests__/watcher.test.ts +178 -0
  138. package/references/minimem/src/cli/sync/central.ts +292 -0
  139. package/references/minimem/src/cli/sync/conflicts.ts +205 -0
  140. package/references/minimem/src/cli/sync/daemon.ts +407 -0
  141. package/references/minimem/src/cli/sync/detection.ts +138 -0
  142. package/references/minimem/src/cli/sync/index.ts +107 -0
  143. package/references/minimem/src/cli/sync/operations.ts +373 -0
  144. package/references/minimem/src/cli/sync/registry.ts +279 -0
  145. package/references/minimem/src/cli/sync/state.ts +358 -0
  146. package/references/minimem/src/cli/sync/validation.ts +206 -0
  147. package/references/minimem/src/cli/sync/watcher.ts +237 -0
  148. package/references/minimem/src/cli/version.ts +34 -0
  149. package/references/minimem/src/core/index.ts +9 -0
  150. package/references/minimem/src/core/indexer.ts +628 -0
  151. package/references/minimem/src/core/searcher.ts +221 -0
  152. package/references/minimem/src/db/schema.ts +183 -0
  153. package/references/minimem/src/db/sqlite-vec.ts +24 -0
  154. package/references/minimem/src/embeddings/__tests__/embeddings.test.ts +431 -0
  155. package/references/minimem/src/embeddings/batch-gemini.ts +392 -0
  156. package/references/minimem/src/embeddings/batch-openai.ts +409 -0
  157. package/references/minimem/src/embeddings/embeddings.ts +434 -0
  158. package/references/minimem/src/index.ts +132 -0
  159. package/references/minimem/src/internal.ts +299 -0
  160. package/references/minimem/src/minimem.ts +1291 -0
  161. package/references/minimem/src/search/__tests__/hybrid.test.ts +247 -0
  162. package/references/minimem/src/search/graph.ts +234 -0
  163. package/references/minimem/src/search/hybrid.ts +151 -0
  164. package/references/minimem/src/search/search.ts +256 -0
  165. package/references/minimem/src/server/__tests__/mcp.test.ts +347 -0
  166. package/references/minimem/src/server/__tests__/tools.test.ts +364 -0
  167. package/references/minimem/src/server/mcp.ts +326 -0
  168. package/references/minimem/src/server/tools.ts +720 -0
  169. package/references/minimem/src/session.ts +460 -0
  170. package/references/minimem/src/store/__tests__/manifest.test.ts +177 -0
  171. package/references/minimem/src/store/__tests__/materialize.test.ts +52 -0
  172. package/references/minimem/src/store/__tests__/store-graph.test.ts +228 -0
  173. package/references/minimem/src/store/index.ts +27 -0
  174. package/references/minimem/src/store/manifest.ts +203 -0
  175. package/references/minimem/src/store/materialize.ts +185 -0
  176. package/references/minimem/src/store/store-graph.ts +252 -0
  177. package/references/minimem/tsconfig.json +19 -0
  178. package/references/minimem/tsup.config.ts +26 -0
  179. package/references/minimem/vitest.config.ts +29 -0
  180. package/references/openteams/src/cli/generate.ts +23 -1
  181. package/references/openteams/src/generators/agent-prompt-generator.test.ts +94 -0
  182. package/references/openteams/src/generators/agent-prompt-generator.ts +42 -13
  183. package/references/openteams/src/generators/package-generator.ts +9 -1
  184. package/references/openteams/src/generators/skill-generator.test.ts +28 -0
  185. package/references/openteams/src/generators/skill-generator.ts +10 -4
  186. package/references/skill-tree/.claude/settings.json +6 -0
  187. package/references/skill-tree/.sudocode/issues.jsonl +19 -0
  188. package/references/skill-tree/.sudocode/specs.jsonl +3 -0
  189. package/references/skill-tree/CLAUDE.md +132 -0
  190. package/references/skill-tree/README.md +396 -0
  191. package/references/skill-tree/docs/GAPS_v1.md +221 -0
  192. package/references/skill-tree/docs/INTEGRATION_PLAN.md +467 -0
  193. package/references/skill-tree/docs/TODOS.md +91 -0
  194. package/references/skill-tree/docs/anthropic_skill_guide.md +1364 -0
  195. package/references/skill-tree/docs/design/federated-skill-trees.md +524 -0
  196. package/references/skill-tree/docs/design/multi-agent-sync.md +759 -0
  197. package/references/skill-tree/docs/scraper/BRAINSTORM.md +583 -0
  198. package/references/skill-tree/docs/scraper/POC_PLAN.md +420 -0
  199. package/references/skill-tree/docs/scraper/README.md +170 -0
  200. package/references/skill-tree/examples/basic-usage.ts +157 -0
  201. package/references/skill-tree/package-lock.json +1852 -0
  202. package/references/skill-tree/package.json +66 -0
  203. package/references/skill-tree/plan.md +78 -0
  204. package/references/skill-tree/scraper/README.md +123 -0
  205. package/references/skill-tree/scraper/docs/DESIGN.md +683 -0
  206. package/references/skill-tree/scraper/docs/PLAN.md +336 -0
  207. package/references/skill-tree/scraper/drizzle.config.ts +10 -0
  208. package/references/skill-tree/scraper/package-lock.json +6329 -0
  209. package/references/skill-tree/scraper/package.json +68 -0
  210. package/references/skill-tree/scraper/test/fixtures/invalid-skill/missing-description.md +7 -0
  211. package/references/skill-tree/scraper/test/fixtures/invalid-skill/missing-name.md +7 -0
  212. package/references/skill-tree/scraper/test/fixtures/minimal-skill/SKILL.md +27 -0
  213. package/references/skill-tree/scraper/test/fixtures/skill-json/SKILL.json +21 -0
  214. package/references/skill-tree/scraper/test/fixtures/skill-with-meta/SKILL.md +54 -0
  215. package/references/skill-tree/scraper/test/fixtures/skill-with-meta/_meta.json +24 -0
  216. package/references/skill-tree/scraper/test/fixtures/valid-skill/SKILL.md +93 -0
  217. package/references/skill-tree/scraper/test/fixtures/valid-skill/_meta.json +22 -0
  218. package/references/skill-tree/scraper/tsup.config.ts +14 -0
  219. package/references/skill-tree/scraper/vitest.config.ts +17 -0
  220. package/references/skill-tree/scripts/convert-to-vitest.ts +166 -0
  221. package/references/skill-tree/skills/skill-writer/SKILL.md +339 -0
  222. package/references/skill-tree/skills/skill-writer/references/examples.md +326 -0
  223. package/references/skill-tree/skills/skill-writer/references/patterns.md +210 -0
  224. package/references/skill-tree/skills/skill-writer/references/quality-checklist.md +123 -0
  225. package/references/skill-tree/test/run-all.ts +106 -0
  226. package/references/skill-tree/test/utils.ts +128 -0
  227. package/references/skill-tree/vitest.config.ts +16 -0
  228. package/references/swarmkit/src/commands/init/phases/configure.ts +0 -22
  229. package/references/swarmkit/src/commands/init/phases/global-setup.ts +5 -3
  230. package/references/swarmkit/src/commands/init/wizard.ts +2 -2
  231. package/references/swarmkit/src/packages/setup.test.ts +53 -7
  232. package/references/swarmkit/src/packages/setup.ts +37 -1
  233. package/scripts/bootstrap.mjs +26 -1
  234. package/scripts/generate-agents.mjs +5 -1
  235. package/scripts/map-hook.mjs +97 -64
  236. package/scripts/map-sidecar.mjs +179 -25
  237. package/scripts/team-loader.mjs +12 -41
  238. package/skills/swarm/SKILL.md +89 -25
  239. package/src/__tests__/agent-generator.test.mjs +6 -13
  240. package/src/__tests__/bootstrap.test.mjs +124 -1
  241. package/src/__tests__/config.test.mjs +200 -27
  242. package/src/__tests__/e2e-live-map.test.mjs +536 -0
  243. package/src/__tests__/e2e-mesh-sidecar.test.mjs +570 -0
  244. package/src/__tests__/e2e-native-task-hooks.test.mjs +376 -0
  245. package/src/__tests__/e2e-sidecar-bridge.test.mjs +477 -0
  246. package/src/__tests__/helpers.mjs +13 -0
  247. package/src/__tests__/inbox.test.mjs +22 -89
  248. package/src/__tests__/index.test.mjs +35 -9
  249. package/src/__tests__/integration.test.mjs +513 -0
  250. package/src/__tests__/map-events.test.mjs +514 -150
  251. package/src/__tests__/mesh-connection.test.mjs +308 -0
  252. package/src/__tests__/opentasks-client.test.mjs +517 -0
  253. package/src/__tests__/paths.test.mjs +185 -41
  254. package/src/__tests__/sidecar-client.test.mjs +35 -0
  255. package/src/__tests__/sidecar-server.test.mjs +124 -0
  256. package/src/__tests__/skilltree-client.test.mjs +80 -0
  257. package/src/agent-generator.mjs +104 -33
  258. package/src/bootstrap.mjs +150 -10
  259. package/src/config.mjs +81 -17
  260. package/src/context-output.mjs +58 -8
  261. package/src/inbox.mjs +9 -54
  262. package/src/index.mjs +39 -8
  263. package/src/map-connection.mjs +4 -3
  264. package/src/map-events.mjs +350 -80
  265. package/src/mesh-connection.mjs +148 -0
  266. package/src/opentasks-client.mjs +269 -0
  267. package/src/paths.mjs +182 -27
  268. package/src/sessionlog.mjs +14 -9
  269. package/src/sidecar-client.mjs +81 -27
  270. package/src/sidecar-server.mjs +175 -16
  271. package/src/skilltree-client.mjs +173 -0
  272. package/src/template.mjs +68 -4
  273. package/vitest.config.mjs +1 -0
@@ -0,0 +1,210 @@
1
+ # Skill Implementation Patterns
2
+
3
+ These patterns emerged from skills created by early adopters and Anthropic's internal teams. Choose the approach that fits the skill's workflow.
4
+
5
+ ## Choosing an Approach: Problem-First vs. Tool-First
6
+
7
+ - **Problem-first**: "I need to set up a project workspace" - The skill orchestrates the right tool calls in the right sequence. Users describe outcomes; the skill handles the tools.
8
+ - **Tool-first**: "I have Notion MCP connected" - The skill teaches Claude optimal workflows and best practices. Users have access; the skill provides expertise.
9
+
10
+ Most skills lean one direction. Knowing which framing fits helps choose the right pattern.
11
+
12
+ ---
13
+
14
+ ## Pattern 1: Sequential Workflow Orchestration
15
+
16
+ **Use when:** Multi-step processes must happen in a specific order.
17
+
18
+ ```markdown
19
+ ## Workflow: Onboard New Customer
20
+
21
+ ### Step 1: Create Account
22
+ Call MCP tool: `create_customer`
23
+ Parameters: name, email, company
24
+
25
+ ### Step 2: Setup Payment
26
+ Call MCP tool: `setup_payment_method`
27
+ Wait for: payment method verification
28
+
29
+ ### Step 3: Create Subscription
30
+ Call MCP tool: `create_subscription`
31
+ Parameters: plan_id, customer_id (from Step 1)
32
+
33
+ ### Step 4: Send Welcome Email
34
+ Call MCP tool: `send_email`
35
+ Template: welcome_email_template
36
+ ```
37
+
38
+ **Key techniques:**
39
+ - Explicit step ordering with numbered steps
40
+ - Dependencies between steps clearly noted
41
+ - Validation at each stage
42
+ - Rollback instructions for failures
43
+
44
+ ---
45
+
46
+ ## Pattern 2: Multi-MCP Coordination
47
+
48
+ **Use when:** Workflows span multiple services.
49
+
50
+ ```markdown
51
+ ### Phase 1: Design Export (Figma MCP)
52
+ 1. Export design assets from Figma
53
+ 2. Generate design specifications
54
+ 3. Create asset manifest
55
+
56
+ ### Phase 2: Asset Storage (Drive MCP)
57
+ 1. Create project folder in Drive
58
+ 2. Upload all assets
59
+ 3. Generate shareable links
60
+
61
+ ### Phase 3: Task Creation (Linear MCP)
62
+ 1. Create development tasks
63
+ 2. Attach asset links to tasks
64
+ 3. Assign to engineering team
65
+
66
+ ### Phase 4: Notification (Slack MCP)
67
+ 1. Post handoff summary to #engineering
68
+ 2. Include asset links and task references
69
+ ```
70
+
71
+ **Key techniques:**
72
+ - Clear phase separation with service labels
73
+ - Data passing between MCPs (outputs from Phase 1 feed Phase 2)
74
+ - Validation before moving to next phase
75
+ - Centralized error handling
76
+
77
+ ---
78
+
79
+ ## Pattern 3: Iterative Refinement
80
+
81
+ **Use when:** Output quality improves with iteration.
82
+
83
+ ```markdown
84
+ ## Iterative Report Creation
85
+
86
+ ### Initial Draft
87
+ 1. Fetch data via MCP
88
+ 2. Generate first draft report
89
+ 3. Save to temporary file
90
+
91
+ ### Quality Check
92
+ 1. Run validation script: `scripts/check_report.py`
93
+ 2. Identify issues:
94
+ - Missing sections
95
+ - Inconsistent formatting
96
+ - Data validation errors
97
+
98
+ ### Refinement Loop
99
+ 1. Address each identified issue
100
+ 2. Regenerate affected sections
101
+ 3. Re-validate
102
+ 4. Repeat until quality threshold met
103
+
104
+ ### Finalization
105
+ 1. Apply final formatting
106
+ 2. Generate summary
107
+ 3. Save final version
108
+ ```
109
+
110
+ **Key techniques:**
111
+ - Explicit quality criteria defining "done"
112
+ - Validation scripts for deterministic checks
113
+ - Clear stopping conditions to prevent infinite loops
114
+ - Separation between draft and final stages
115
+
116
+ ---
117
+
118
+ ## Pattern 4: Context-Aware Tool Selection
119
+
120
+ **Use when:** Same outcome can be achieved with different tools depending on context.
121
+
122
+ ```markdown
123
+ ## Smart File Storage
124
+
125
+ ### Decision Tree
126
+ 1. Check file type and size
127
+ 2. Determine best storage location:
128
+ - Large files (>10MB): Use cloud storage MCP
129
+ - Collaborative docs: Use Notion/Docs MCP
130
+ - Code files: Use GitHub MCP
131
+ - Temporary files: Use local storage
132
+
133
+ ### Execute Storage
134
+ Based on decision:
135
+ - Call appropriate MCP tool
136
+ - Apply service-specific metadata
137
+ - Generate access link
138
+
139
+ ### Provide Context to User
140
+ Explain why that storage location was chosen
141
+ ```
142
+
143
+ **Key techniques:**
144
+ - Clear decision criteria with thresholds
145
+ - Fallback options when primary choice unavailable
146
+ - Transparency about choices made
147
+ - Each branch has complete instructions
148
+
149
+ ---
150
+
151
+ ## Pattern 5: Domain-Specific Intelligence
152
+
153
+ **Use when:** The skill adds specialized knowledge beyond tool access.
154
+
155
+ ```markdown
156
+ ## Payment Processing with Compliance
157
+
158
+ ### Before Processing (Compliance Check)
159
+ 1. Fetch transaction details via MCP
160
+ 2. Apply compliance rules:
161
+ - Check sanctions lists
162
+ - Verify jurisdiction allowances
163
+ - Assess risk level
164
+ 3. Document compliance decision
165
+
166
+ ### Processing
167
+ IF compliance passed:
168
+ - Call payment processing MCP tool
169
+ - Apply appropriate fraud checks
170
+ - Process transaction
171
+ ELSE:
172
+ - Flag for review
173
+ - Create compliance case
174
+
175
+ ### Audit Trail
176
+ - Log all compliance checks
177
+ - Record processing decisions
178
+ - Generate audit report
179
+ ```
180
+
181
+ **Key techniques:**
182
+ - Domain expertise embedded directly in logic
183
+ - Compliance/validation before action (gate pattern)
184
+ - Comprehensive audit documentation
185
+ - Clear governance and conditional branching
186
+
187
+ ---
188
+
189
+ ## Anti-Patterns to Avoid
190
+
191
+ ### Vague Instructions
192
+ ```markdown
193
+ # Bad
194
+ Validate the data before proceeding.
195
+
196
+ # Good
197
+ Run `python scripts/validate.py --input {filename}` to check data format.
198
+ If validation fails, common issues include:
199
+ - Missing required fields (add them to the CSV)
200
+ - Invalid date formats (use YYYY-MM-DD)
201
+ ```
202
+
203
+ ### Missing Error Handling
204
+ Every skill should handle the most common failure modes. If a tool call can fail, include what to do when it does.
205
+
206
+ ### Overloaded SKILL.md
207
+ If SKILL.md exceeds 5,000 words, move detailed content to `references/`. A bloated SKILL.md degrades response quality when loaded alongside other skills.
208
+
209
+ ### Assumed Exclusivity
210
+ Never write instructions that assume the skill is the only one loaded. Other skills may be active simultaneously.
@@ -0,0 +1,123 @@
1
+ # Skill Quality Checklist
2
+
3
+ Use this checklist to validate a skill before and after deployment.
4
+
5
+ ---
6
+
7
+ ## Before Starting
8
+
9
+ - [ ] Identified 2-3 concrete use cases with triggers, steps, and expected results
10
+ - [ ] Determined skill category (Document/Asset Creation, Workflow Automation, MCP Enhancement)
11
+ - [ ] Identified required tools (built-in capabilities or MCP servers)
12
+ - [ ] Planned folder structure (references/, scripts/, assets/ as needed)
13
+ - [ ] Reviewed example skills for inspiration
14
+
15
+ ## File Structure
16
+
17
+ - [ ] Folder named in kebab-case (no spaces, underscores, or capitals)
18
+ - [ ] `SKILL.md` file exists with exact spelling (case-sensitive)
19
+ - [ ] No `README.md` inside the skill folder
20
+ - [ ] Scripts are executable and tested independently
21
+ - [ ] References are markdown, well-organized
22
+
23
+ ## YAML Frontmatter
24
+
25
+ - [ ] Wrapped in `---` delimiters (both opening and closing)
26
+ - [ ] `name` field: kebab-case, matches folder name
27
+ - [ ] `name` does not use "claude" or "anthropic" prefix
28
+ - [ ] `description` field present and under 1024 characters
29
+ - [ ] Description includes WHAT the skill does
30
+ - [ ] Description includes WHEN to use it (trigger phrases)
31
+ - [ ] Description mentions relevant file types (if applicable)
32
+ - [ ] No XML angle brackets (`<` or `>`) anywhere in frontmatter
33
+ - [ ] No unclosed quotes in YAML values
34
+ - [ ] Optional fields (license, compatibility, metadata) properly formatted
35
+
36
+ ## Instructions Body
37
+
38
+ - [ ] Written in imperative/infinitive form (not second person)
39
+ - [ ] Instructions are specific and actionable (not vague)
40
+ - [ ] Exact commands, parameters, and expected outputs included
41
+ - [ ] Critical instructions appear at the top
42
+ - [ ] Uses headings, bullet points, and numbered lists for scanability
43
+ - [ ] Error handling included for common failure modes
44
+ - [ ] Examples provided for primary use cases
45
+ - [ ] References to bundled files use correct relative paths
46
+ - [ ] SKILL.md is under 5,000 words
47
+ - [ ] Detailed documentation moved to `references/`
48
+
49
+ ## Triggering
50
+
51
+ - [ ] Triggers on obvious task descriptions
52
+ - [ ] Triggers on paraphrased requests
53
+ - [ ] Triggers on domain-specific terminology
54
+ - [ ] Does NOT trigger on unrelated topics
55
+ - [ ] Does NOT conflict with other skills' trigger domains
56
+ - [ ] Negative triggers included if overtriggering is a risk
57
+
58
+ ## Functional Quality
59
+
60
+ - [ ] Primary use cases produce correct outputs
61
+ - [ ] API/MCP calls succeed without errors
62
+ - [ ] Error handling produces helpful guidance
63
+ - [ ] Edge cases are addressed or documented
64
+ - [ ] Consistent results across multiple runs of the same request
65
+ - [ ] Works without user needing to redirect or clarify
66
+
67
+ ## Performance
68
+
69
+ - [ ] Completes workflows in a reasonable number of tool calls
70
+ - [ ] No unnecessary back-and-forth with the user
71
+ - [ ] Token usage is reasonable (compare with vs. without skill)
72
+ - [ ] Response quality is not degraded by large context
73
+
74
+ ## Distribution (if sharing)
75
+
76
+ - [ ] Skill folder compresses cleanly as .zip
77
+ - [ ] Installation instructions are clear
78
+ - [ ] Dependencies documented in `compatibility` field
79
+ - [ ] License specified if open-source
80
+ - [ ] Version tracked in `metadata.version`
81
+
82
+ ---
83
+
84
+ ## Common Issues and Fixes
85
+
86
+ | Symptom | Likely Cause | Fix |
87
+ |---------|-------------|-----|
88
+ | Skill never triggers | Description too vague or missing trigger phrases | Add specific user phrases and keywords |
89
+ | Skill triggers too often | Description too broad | Add negative triggers, narrow scope |
90
+ | Claude ignores instructions | Instructions too verbose or buried | Move critical instructions to top, use headers |
91
+ | Inconsistent results | Ambiguous language | Replace vague prose with specific commands |
92
+ | Slow responses | SKILL.md too large | Move content to references/, stay under 5K words |
93
+ | Upload fails | Naming or formatting error | Check SKILL.md spelling, YAML delimiters, kebab-case |
94
+
95
+ ## Debugging Trigger Issues
96
+
97
+ Ask Claude: "When would you use the [skill-name] skill?"
98
+
99
+ Claude will quote the description back. Compare against expected triggers and adjust the description accordingly.
100
+
101
+ For skills that should NOT trigger on certain queries, add explicit exclusions:
102
+
103
+ ```yaml
104
+ description: Advanced data analysis for CSV files. Use for
105
+ statistical modeling, regression, clustering. Do NOT use for
106
+ simple data exploration (use data-viz skill instead).
107
+ ```
108
+
109
+ ## Iteration Signals
110
+
111
+ **Undertriggering** (skill doesn't load when it should):
112
+ - Add more trigger phrases, synonyms, and technical terms
113
+ - Include common misspellings or alternative phrasings
114
+
115
+ **Overtriggering** (skill loads for irrelevant queries):
116
+ - Add "Do NOT use for..." clauses
117
+ - Narrow the domain with more specific language
118
+ - Differentiate from adjacent skills explicitly
119
+
120
+ **Execution failures** (skill loads but produces poor results):
121
+ - Add validation gates before critical operations
122
+ - Include rollback instructions
123
+ - Bundle validation scripts for deterministic checks
@@ -0,0 +1,106 @@
1
+ /**
2
+ * Run all tests
3
+ */
4
+
5
+ import { spawn } from "child_process";
6
+ import * as path from "path";
7
+
8
+ const testFiles = [
9
+ "semver.test.ts",
10
+ "adapters.test.ts",
11
+ "extraction.test.ts",
12
+ "storage.test.ts",
13
+ "lineage.test.ts",
14
+ "skill-bank.test.ts",
15
+ "matching.test.ts",
16
+ "batch.test.ts",
17
+ "composer.test.ts",
18
+ "merge.test.ts",
19
+ "hooks.test.ts",
20
+ "sqlite.test.ts",
21
+ "metrics.test.ts",
22
+ "agents.test.ts",
23
+ "validation.test.ts",
24
+ "import.test.ts",
25
+ "sqlite-indexer.test.ts",
26
+ // New integration tests
27
+ "config.test.ts",
28
+ "services-indexer.test.ts",
29
+ "services-sync.test.ts",
30
+ "skillbank-events.test.ts",
31
+ "integration.test.ts",
32
+ // Serving layer
33
+ "serving.test.ts",
34
+ ];
35
+
36
+ async function runTest(
37
+ file: string,
38
+ ): Promise<{ file: string; passed: boolean; output: string }> {
39
+ return new Promise((resolve) => {
40
+ const testPath = path.join(process.cwd(), "test", file);
41
+ const proc = spawn("npx", ["tsx", testPath], {
42
+ stdio: ["inherit", "pipe", "pipe"],
43
+ shell: true,
44
+ });
45
+
46
+ let output = "";
47
+
48
+ proc.stdout?.on("data", (data) => {
49
+ output += data.toString();
50
+ process.stdout.write(data);
51
+ });
52
+
53
+ proc.stderr?.on("data", (data) => {
54
+ output += data.toString();
55
+ process.stderr.write(data);
56
+ });
57
+
58
+ proc.on("close", (code) => {
59
+ resolve({
60
+ file,
61
+ passed: code === 0,
62
+ output,
63
+ });
64
+ });
65
+ });
66
+ }
67
+
68
+ async function main() {
69
+ console.log("=".repeat(60));
70
+ console.log("Running all tests");
71
+ console.log("=".repeat(60));
72
+
73
+ const results: { file: string; passed: boolean }[] = [];
74
+
75
+ for (const file of testFiles) {
76
+ console.log(`\n${"─".repeat(60)}`);
77
+ console.log(`Running: ${file}`);
78
+ console.log("─".repeat(60));
79
+
80
+ const result = await runTest(file);
81
+ results.push({ file: result.file, passed: result.passed });
82
+ }
83
+
84
+ // Summary
85
+ console.log("\n" + "=".repeat(60));
86
+ console.log("TEST SUMMARY");
87
+ console.log("=".repeat(60));
88
+
89
+ const passed = results.filter((r) => r.passed);
90
+ const failed = results.filter((r) => !r.passed);
91
+
92
+ for (const result of results) {
93
+ const status = result.passed ? "✓" : "✗";
94
+ console.log(` ${status} ${result.file}`);
95
+ }
96
+
97
+ console.log("─".repeat(60));
98
+ console.log(`Total: ${results.length} test files`);
99
+ console.log(`Passed: ${passed.length}`);
100
+ console.log(`Failed: ${failed.length}`);
101
+ console.log("=".repeat(60));
102
+
103
+ process.exit(failed.length > 0 ? 1 : 0);
104
+ }
105
+
106
+ main();
@@ -0,0 +1,128 @@
1
+ /**
2
+ * Test utilities and helpers
3
+ */
4
+
5
+ // Simple test runner
6
+ let passed = 0;
7
+ let failed = 0;
8
+ let currentSuite = '';
9
+
10
+ export function suite(name: string) {
11
+ currentSuite = name;
12
+ console.log(`\n${name}`);
13
+ }
14
+
15
+ export function test(name: string, fn: () => void | Promise<void>) {
16
+ const run = async () => {
17
+ try {
18
+ await fn();
19
+ passed++;
20
+ console.log(` ✓ ${name}`);
21
+ } catch (error) {
22
+ failed++;
23
+ console.log(` ✗ ${name}`);
24
+ console.log(` ${error instanceof Error ? error.message : error}`);
25
+ }
26
+ };
27
+ return run();
28
+ }
29
+
30
+ export function assertEqual<T>(actual: T, expected: T, message?: string) {
31
+ const actualStr = JSON.stringify(actual);
32
+ const expectedStr = JSON.stringify(expected);
33
+ if (actualStr !== expectedStr) {
34
+ throw new Error(message || `Expected ${expectedStr}, got ${actualStr}`);
35
+ }
36
+ }
37
+
38
+ export function assertDeepEqual<T>(actual: T, expected: T, message?: string) {
39
+ assertEqual(actual, expected, message);
40
+ }
41
+
42
+ export function assertTrue(condition: boolean, message?: string) {
43
+ if (!condition) {
44
+ throw new Error(message || 'Expected true, got false');
45
+ }
46
+ }
47
+
48
+ export function assertFalse(condition: boolean, message?: string) {
49
+ if (condition) {
50
+ throw new Error(message || 'Expected false, got true');
51
+ }
52
+ }
53
+
54
+ export function assertNull(value: unknown, message?: string) {
55
+ if (value !== null) {
56
+ throw new Error(message || `Expected null, got ${JSON.stringify(value)}`);
57
+ }
58
+ }
59
+
60
+ export function assertNotNull<T>(value: T | null | undefined, message?: string): asserts value is T {
61
+ if (value === null || value === undefined) {
62
+ throw new Error(message || 'Expected non-null value');
63
+ }
64
+ }
65
+
66
+ export function assertThrows(fn: () => void, message?: string) {
67
+ let threw = false;
68
+ try {
69
+ fn();
70
+ } catch {
71
+ threw = true;
72
+ }
73
+ if (!threw) {
74
+ throw new Error(message || 'Expected function to throw');
75
+ }
76
+ }
77
+
78
+ export async function assertThrowsAsync(fn: () => Promise<void>, message?: string) {
79
+ let threw = false;
80
+ try {
81
+ await fn();
82
+ } catch {
83
+ threw = true;
84
+ }
85
+ if (!threw) {
86
+ throw new Error(message || 'Expected async function to throw');
87
+ }
88
+ }
89
+
90
+ export function assertContains(str: string, substr: string, message?: string) {
91
+ if (!str.includes(substr)) {
92
+ throw new Error(message || `Expected "${str}" to contain "${substr}"`);
93
+ }
94
+ }
95
+
96
+ export function assertArrayLength<T>(arr: T[], length: number, message?: string) {
97
+ if (arr.length !== length) {
98
+ throw new Error(message || `Expected array length ${length}, got ${arr.length}`);
99
+ }
100
+ }
101
+
102
+ export function assertGreaterThan(actual: number, expected: number, message?: string) {
103
+ if (actual <= expected) {
104
+ throw new Error(message || `Expected ${actual} > ${expected}`);
105
+ }
106
+ }
107
+
108
+ export function assertLessThan(actual: number, expected: number, message?: string) {
109
+ if (actual >= expected) {
110
+ throw new Error(message || `Expected ${actual} < ${expected}`);
111
+ }
112
+ }
113
+
114
+ export function getResults() {
115
+ return { passed, failed };
116
+ }
117
+
118
+ export function printSummary() {
119
+ console.log(`\n${'='.repeat(40)}`);
120
+ console.log(`${passed} passed, ${failed} failed`);
121
+ console.log(`${'='.repeat(40)}\n`);
122
+ return failed;
123
+ }
124
+
125
+ export function resetCounters() {
126
+ passed = 0;
127
+ failed = 0;
128
+ }
@@ -0,0 +1,16 @@
1
+ import { defineConfig } from "vitest/config";
2
+
3
+ export default defineConfig({
4
+ test: {
5
+ watch: false,
6
+ globals: true,
7
+ include: ["test/**/*.test.ts"],
8
+ exclude: ["**/node_modules/**", "**/references/**", "**/scraper/**", "test/all.test.ts"],
9
+ testTimeout: 60000,
10
+ hookTimeout: 30000,
11
+ reporters: ["verbose"],
12
+ passWithNoTests: false,
13
+ // Run tests sequentially to avoid state conflicts between test files
14
+ fileParallelism: false,
15
+ },
16
+ });
@@ -1,5 +1,4 @@
1
1
  import { select, password } from "@inquirer/prompts";
2
- import chalk from "chalk";
3
2
  import { readConfig, writeConfig } from "../../../config/global.js";
4
3
  import { writeKey } from "../../../config/keys.js";
5
4
  import * as ui from "../../../utils/ui.js";
@@ -71,26 +70,5 @@ export async function configureKeys(state: WizardState): Promise<WizardState> {
71
70
  }
72
71
  }
73
72
 
74
- // Always ask for Anthropic key (needed for agents)
75
- console.log();
76
- const hasAnthropicKey = !!process.env["ANTHROPIC_API_KEY"];
77
- if (hasAnthropicKey) {
78
- ui.info(
79
- `Anthropic API key detected from environment ${chalk.dim("(ANTHROPIC_API_KEY)")}`,
80
- );
81
- } else {
82
- const anthropicKey = await password({
83
- message: "Anthropic API key (for running agents):",
84
- mask: "*",
85
- });
86
- if (anthropicKey) {
87
- updated.apiKeys["anthropic"] = anthropicKey;
88
- writeKey("anthropic", anthropicKey);
89
- ui.success("Anthropic API key stored");
90
- } else {
91
- ui.info("Skipped — you can set ANTHROPIC_API_KEY later.");
92
- }
93
- }
94
-
95
73
  return updated;
96
74
  }
@@ -11,16 +11,18 @@ import * as ui from "../../../utils/ui.js";
11
11
  import type { WizardState } from "../state.js";
12
12
 
13
13
  /** Global packages in setup order */
14
- const GLOBAL_SETUP_ORDER = ["skill-tree", "openhive"];
14
+ const GLOBAL_SETUP_ORDER = ["skill-tree", "openhive", "claude-code-swarm"];
15
15
 
16
- export async function initGlobal(state: WizardState): Promise<void> {
16
+ export async function initGlobal(state: WizardState, force = false): Promise<void> {
17
17
  const globalPackages = GLOBAL_SETUP_ORDER.filter((pkg) =>
18
18
  state.selectedPackages.includes(pkg),
19
19
  );
20
20
 
21
21
  if (globalPackages.length === 0) return;
22
22
 
23
- const uninitialized = globalPackages.filter((pkg) => !isGlobalInit(pkg));
23
+ const uninitialized = force
24
+ ? globalPackages
25
+ : globalPackages.filter((pkg) => !isGlobalInit(pkg));
24
26
 
25
27
  if (uninitialized.length === 0) {
26
28
  ui.blank();
@@ -67,8 +67,8 @@ async function runFirstTimeSetup(opts?: WizardOptions): Promise<void> {
67
67
  // Step 3: Configure (embedding provider, API keys)
68
68
  state = await configureKeys(state);
69
69
 
70
- // Step 4: Global package setup (skill-tree, openhive)
71
- await initGlobal(state);
70
+ // Step 4: Global package setup (skill-tree, openhive, claude-code-swarm)
71
+ await initGlobal(state, opts?.forceGlobal);
72
72
 
73
73
  // Step 5: Project init (if in a project directory)
74
74
  await initProject(state);