monomind 1.10.54 → 1.10.56

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 (405) hide show
  1. package/.claude/agents/optimization/benchmark-suite.md +2 -0
  2. package/.claude/agents/optimization/load-balancer.md +2 -0
  3. package/.claude/agents/optimization/performance-monitor.md +2 -0
  4. package/.claude/agents/optimization/resource-allocator.md +3 -1
  5. package/.claude/agents/optimization/topology-optimizer.md +2 -0
  6. package/.claude/commands/mastermind/_repeat.md +21 -0
  7. package/.claude/commands/mastermind/_taskfile.md +235 -0
  8. package/.claude/commands/mastermind/adr.md +11 -0
  9. package/.claude/commands/mastermind/approve.md +94 -0
  10. package/.claude/commands/mastermind/autodev.md +32 -0
  11. package/.claude/commands/mastermind/budget.md +7 -0
  12. package/.claude/commands/mastermind/code-review.md +317 -0
  13. package/.claude/commands/mastermind/createorg.md +40 -1
  14. package/.claude/commands/mastermind/createtask.md +383 -0
  15. package/.claude/commands/mastermind/debug.md +22 -0
  16. package/.claude/commands/mastermind/design.md +20 -0
  17. package/.claude/commands/mastermind/do.md +526 -0
  18. package/.claude/commands/mastermind/execute.md +20 -0
  19. package/.claude/commands/mastermind/finish.md +20 -0
  20. package/.claude/commands/mastermind/graph-status.md +7 -0
  21. package/.claude/commands/mastermind/help.md +118 -0
  22. package/.claude/commands/mastermind/ideate.md +261 -0
  23. package/.claude/commands/mastermind/improve.md +345 -0
  24. package/.claude/commands/mastermind/loops.md +7 -0
  25. package/.claude/commands/mastermind/master.md +186 -6
  26. package/.claude/commands/mastermind/memory.md +230 -0
  27. package/.claude/commands/mastermind/plan.md +26 -0
  28. package/.claude/commands/mastermind/receive-review.md +20 -0
  29. package/.claude/commands/mastermind/repeat.md +257 -0
  30. package/.claude/commands/mastermind/runorg.md +3 -0
  31. package/.claude/commands/mastermind/skill-builder.md +20 -0
  32. package/.claude/commands/mastermind/specialagents.md +125 -0
  33. package/.claude/commands/mastermind/swarm.md +161 -0
  34. package/.claude/commands/mastermind/taskdev.md +26 -0
  35. package/.claude/commands/mastermind/tdd.md +22 -0
  36. package/.claude/commands/mastermind/techport.md +4 -0
  37. package/.claude/commands/mastermind/understand.md +139 -0
  38. package/.claude/commands/mastermind/verify.md +22 -0
  39. package/.claude/commands/mastermind/worktree.md +20 -0
  40. package/.claude/helpers/handlers/graph-status-handler.cjs +2 -1
  41. package/.claude/helpers/hook-handler.cjs +19 -0
  42. package/.claude/helpers/skill-registry.json +23 -0
  43. package/.claude/helpers/statusline.cjs +1 -1
  44. package/.claude/scheduled_tasks.lock +1 -1
  45. package/.claude/skills/mastermind/approve.md +15 -7
  46. package/.claude/skills/mastermind/autodev.md +534 -0
  47. package/.claude/skills/mastermind/createorg.md +21 -5
  48. package/.claude/skills/mastermind/debug.md +232 -0
  49. package/.claude/skills/mastermind/design.md +187 -0
  50. package/.claude/skills/mastermind/execute.md +104 -0
  51. package/.claude/skills/mastermind/finish.md +251 -0
  52. package/.claude/skills/mastermind/plan.md +180 -0
  53. package/.claude/skills/mastermind/receive-review.md +213 -0
  54. package/.claude/skills/mastermind/runorg.md +23 -8
  55. package/.claude/skills/mastermind/skill-builder.md +274 -0
  56. package/.claude/skills/mastermind/taskdev.md +307 -0
  57. package/.claude/skills/mastermind/tdd.md +394 -0
  58. package/.claude/skills/mastermind/verify.md +196 -0
  59. package/.claude/skills/mastermind/worktree.md +160 -132
  60. package/.claude-plugin/docs/QUICKSTART.md +0 -3
  61. package/.claude-plugin/docs/STRUCTURE.md +1 -5
  62. package/.claude-plugin/scripts/verify.sh +0 -6
  63. package/README.md +320 -253
  64. package/package.json +1 -1
  65. package/packages/@monomind/cli/README.md +320 -253
  66. package/packages/@monomind/cli/dist/src/commands/analyze.js +9 -2
  67. package/packages/@monomind/cli/dist/src/commands/completions.js +1 -1
  68. package/packages/@monomind/cli/dist/src/commands/guidance.js +7 -7
  69. package/packages/@monomind/cli/dist/src/commands/hooks.js +16 -3
  70. package/packages/@monomind/cli/dist/src/commands/index.d.ts +3 -2
  71. package/packages/@monomind/cli/dist/src/commands/index.js +7 -0
  72. package/packages/@monomind/cli/dist/src/commands/init.js +47 -13
  73. package/packages/@monomind/cli/dist/src/commands/neural.js +100 -14
  74. package/packages/@monomind/cli/dist/src/commands/platforms.d.ts +11 -0
  75. package/packages/@monomind/cli/dist/src/commands/platforms.js +195 -0
  76. package/packages/@monomind/cli/dist/src/commands/update.js +6 -6
  77. package/packages/@monomind/cli/dist/src/init/executor.js +28 -0
  78. package/packages/@monomind/cli/dist/src/init/statusline-generator.js +1 -1
  79. package/packages/@monomind/cli/dist/src/init/types.d.ts +1 -0
  80. package/packages/@monomind/cli/dist/src/mcp-server.js +92 -0
  81. package/packages/@monomind/cli/dist/src/mcp-tools/hive-mind-tools.js +52 -0
  82. package/packages/@monomind/cli/dist/src/mcp-tools/hooks-tools.js +106 -5
  83. package/packages/@monomind/cli/dist/src/mcp-tools/index.d.ts +0 -5
  84. package/packages/@monomind/cli/dist/src/mcp-tools/index.js +0 -5
  85. package/packages/@monomind/cli/dist/src/mcp-tools/monograph-tools.js +507 -5587
  86. package/packages/@monomind/cli/dist/src/mcp-tools/neural-tools.js +64 -4
  87. package/packages/@monomind/cli/dist/src/mcp-tools/security-tools.js +4 -4
  88. package/packages/@monomind/cli/dist/src/memory/intelligence.d.ts +2 -2
  89. package/packages/@monomind/cli/dist/src/memory/intelligence.js +108 -3
  90. package/packages/@monomind/cli/dist/src/memory/memory-bridge.js +1 -1
  91. package/packages/@monomind/cli/dist/src/memory/sona-optimizer.d.ts +1 -10
  92. package/packages/@monomind/cli/dist/src/memory/sona-optimizer.js +0 -46
  93. package/packages/@monomind/cli/dist/src/runtime/headless.js +3 -3
  94. package/packages/@monomind/cli/dist/src/ruvector/diff-classifier.d.ts +0 -2
  95. package/packages/@monomind/cli/dist/src/ruvector/diff-classifier.js +2 -14
  96. package/packages/@monomind/cli/dist/src/ruvector/index.d.ts +26 -9
  97. package/packages/@monomind/cli/dist/src/ruvector/index.js +3 -21
  98. package/packages/@monomind/cli/dist/src/ruvector/ruvllm-wasm.js +2 -2
  99. package/packages/@monomind/cli/dist/src/types.d.ts +0 -15
  100. package/packages/@monomind/cli/dist/src/types.js +0 -18
  101. package/packages/@monomind/cli/dist/src/update/index.js +1 -1
  102. package/packages/@monomind/cli/dist/src/update/validator.js +8 -8
  103. package/packages/@monomind/cli/package.json +2 -2
  104. package/.claude/agents/academic/academic-anthropologist.md +0 -126
  105. package/.claude/agents/academic/academic-geographer.md +0 -128
  106. package/.claude/agents/academic/academic-historian.md +0 -124
  107. package/.claude/agents/academic/academic-narratologist.md +0 -119
  108. package/.claude/agents/academic/academic-psychologist.md +0 -119
  109. package/.claude/agents/analysis/analyze-code-quality.md +0 -58
  110. package/.claude/agents/analysis/code-analyzer.md +0 -189
  111. package/.claude/agents/analysis/code-review/analyze-code-quality.md +0 -58
  112. package/.claude/agents/consensus/performance-benchmarker.md +0 -831
  113. package/.claude/agents/data/ml/data-ml-model.md +0 -76
  114. package/.claude/agents/development/dev-backend-api.md +0 -178
  115. package/.claude/agents/devops/ci-cd/ops-cicd-github.md +0 -52
  116. package/.claude/agents/documentation/api-docs/docs-api-openapi.md +0 -63
  117. package/.claude/agents/game-development/blender/blender-addon-engineer.md +0 -235
  118. package/.claude/agents/game-development/game-audio-engineer.md +0 -265
  119. package/.claude/agents/game-development/game-designer.md +0 -168
  120. package/.claude/agents/game-development/godot/godot-gameplay-scripter.md +0 -335
  121. package/.claude/agents/game-development/godot/godot-multiplayer-engineer.md +0 -298
  122. package/.claude/agents/game-development/godot/godot-shader-developer.md +0 -267
  123. package/.claude/agents/game-development/level-designer.md +0 -209
  124. package/.claude/agents/game-development/narrative-designer.md +0 -244
  125. package/.claude/agents/game-development/roblox-studio/roblox-avatar-creator.md +0 -298
  126. package/.claude/agents/game-development/roblox-studio/roblox-experience-designer.md +0 -306
  127. package/.claude/agents/game-development/roblox-studio/roblox-systems-scripter.md +0 -326
  128. package/.claude/agents/game-development/technical-artist.md +0 -230
  129. package/.claude/agents/game-development/unity/unity-architect.md +0 -272
  130. package/.claude/agents/game-development/unity/unity-editor-tool-developer.md +0 -311
  131. package/.claude/agents/game-development/unity/unity-multiplayer-engineer.md +0 -322
  132. package/.claude/agents/game-development/unity/unity-shader-graph-artist.md +0 -270
  133. package/.claude/agents/game-development/unreal-engine/unreal-multiplayer-architect.md +0 -314
  134. package/.claude/agents/game-development/unreal-engine/unreal-systems-engineer.md +0 -311
  135. package/.claude/agents/game-development/unreal-engine/unreal-technical-artist.md +0 -257
  136. package/.claude/agents/game-development/unreal-engine/unreal-world-builder.md +0 -274
  137. package/.claude/agents/github/release-swarm.md +0 -597
  138. package/.claude/agents/goal/agent.md +0 -804
  139. package/.claude/agents/goal/code-goal-planner.md +0 -445
  140. package/.claude/agents/marketing/marketing-ai-citation-strategist.md +0 -171
  141. package/.claude/agents/marketing/marketing-app-store-optimizer.md +0 -322
  142. package/.claude/agents/marketing/marketing-baidu-seo-specialist.md +0 -227
  143. package/.claude/agents/marketing/marketing-bilibili-content-strategist.md +0 -200
  144. package/.claude/agents/marketing/marketing-book-co-author.md +0 -111
  145. package/.claude/agents/marketing/marketing-carousel-growth-engine.md +0 -200
  146. package/.claude/agents/marketing/marketing-china-ecommerce-operator.md +0 -284
  147. package/.claude/agents/marketing/marketing-content-creator.md +0 -67
  148. package/.claude/agents/marketing/marketing-cross-border-ecommerce.md +0 -260
  149. package/.claude/agents/marketing/marketing-douyin-strategist.md +0 -150
  150. package/.claude/agents/marketing/marketing-growth-hacker.md +0 -54
  151. package/.claude/agents/marketing/marketing-instagram-curator.md +0 -114
  152. package/.claude/agents/marketing/marketing-kuaishou-strategist.md +0 -224
  153. package/.claude/agents/marketing/marketing-linkedin-content-creator.md +0 -215
  154. package/.claude/agents/marketing/marketing-livestream-commerce-coach.md +0 -306
  155. package/.claude/agents/marketing/marketing-podcast-strategist.md +0 -278
  156. package/.claude/agents/marketing/marketing-private-domain-operator.md +0 -309
  157. package/.claude/agents/marketing/marketing-reddit-community-builder.md +0 -124
  158. package/.claude/agents/marketing/marketing-seo-specialist.md +0 -279
  159. package/.claude/agents/marketing/marketing-short-video-editing-coach.md +0 -413
  160. package/.claude/agents/marketing/marketing-social-media-strategist.md +0 -125
  161. package/.claude/agents/marketing/marketing-tiktok-strategist.md +0 -126
  162. package/.claude/agents/marketing/marketing-twitter-engager.md +0 -127
  163. package/.claude/agents/marketing/marketing-wechat-official-account.md +0 -146
  164. package/.claude/agents/marketing/marketing-weibo-strategist.md +0 -241
  165. package/.claude/agents/marketing/marketing-xiaohongshu-specialist.md +0 -139
  166. package/.claude/agents/marketing/marketing-zhihu-strategist.md +0 -163
  167. package/.claude/agents/neural/safla-neural.md +0 -74
  168. package/.claude/agents/paid-media/paid-media-auditor.md +0 -71
  169. package/.claude/agents/paid-media/paid-media-creative-strategist.md +0 -71
  170. package/.claude/agents/paid-media/paid-media-paid-social-strategist.md +0 -71
  171. package/.claude/agents/paid-media/paid-media-ppc-strategist.md +0 -71
  172. package/.claude/agents/paid-media/paid-media-programmatic-buyer.md +0 -71
  173. package/.claude/agents/paid-media/paid-media-search-query-analyst.md +0 -71
  174. package/.claude/agents/paid-media/paid-media-tracking-specialist.md +0 -71
  175. package/.claude/agents/payments/agentic-payments.md +0 -126
  176. package/.claude/agents/product/product-behavioral-nudge-engine.md +0 -81
  177. package/.claude/agents/product/product-feedback-synthesizer.md +0 -119
  178. package/.claude/agents/product/product-manager.md +0 -469
  179. package/.claude/agents/product/product-sprint-prioritizer.md +0 -154
  180. package/.claude/agents/product/product-trend-researcher.md +0 -159
  181. package/.claude/agents/project-management/project-management-experiment-tracker.md +0 -199
  182. package/.claude/agents/project-management/project-management-jira-workflow-steward.md +0 -231
  183. package/.claude/agents/project-management/project-management-project-shepherd.md +0 -195
  184. package/.claude/agents/project-management/project-management-studio-operations.md +0 -201
  185. package/.claude/agents/project-management/project-management-studio-producer.md +0 -204
  186. package/.claude/agents/project-management/project-manager-senior.md +0 -136
  187. package/.claude/agents/reasoning/agent.md +0 -804
  188. package/.claude/agents/reasoning/goal-planner.md +0 -73
  189. package/.claude/agents/sales/sales-account-strategist.md +0 -228
  190. package/.claude/agents/sales/sales-coach.md +0 -272
  191. package/.claude/agents/sales/sales-deal-strategist.md +0 -181
  192. package/.claude/agents/sales/sales-discovery-coach.md +0 -226
  193. package/.claude/agents/sales/sales-engineer.md +0 -183
  194. package/.claude/agents/sales/sales-outbound-strategist.md +0 -202
  195. package/.claude/agents/sales/sales-pipeline-analyst.md +0 -268
  196. package/.claude/agents/sales/sales-proposal-strategist.md +0 -218
  197. package/.claude/agents/sona/sona-learning-optimizer.md +0 -65
  198. package/.claude/agents/spatial-computing/macos-spatial-metal-engineer.md +0 -338
  199. package/.claude/agents/spatial-computing/terminal-integration-specialist.md +0 -71
  200. package/.claude/agents/spatial-computing/visionos-spatial-engineer.md +0 -55
  201. package/.claude/agents/specialists/memory-specialist.md +0 -298
  202. package/.claude/agents/specialists/performance-engineer.md +0 -387
  203. package/.claude/agents/specialists/queen-coordinator.md +0 -67
  204. package/.claude/agents/specialists/security-architect.md +0 -154
  205. package/.claude/agents/specialized/accounts-payable-agent.md +0 -186
  206. package/.claude/agents/specialized/corporate-training-designer.md +0 -193
  207. package/.claude/agents/specialized/data-consolidation-agent.md +0 -61
  208. package/.claude/agents/specialized/government-digital-presales-consultant.md +0 -364
  209. package/.claude/agents/specialized/healthcare-marketing-compliance.md +0 -396
  210. package/.claude/agents/specialized/recruitment-specialist.md +0 -510
  211. package/.claude/agents/specialized/report-distribution-agent.md +0 -66
  212. package/.claude/agents/specialized/sales-data-extraction-agent.md +0 -68
  213. package/.claude/agents/specialized/specialized-french-consulting-market.md +0 -193
  214. package/.claude/agents/specialized/specialized-korean-business-navigator.md +0 -217
  215. package/.claude/agents/specialized/specialized-salesforce-architect.md +0 -181
  216. package/.claude/agents/specialized/study-abroad-advisor.md +0 -283
  217. package/.claude/agents/specialized/supply-chain-strategist.md +0 -583
  218. package/.claude/agents/sublinear/consensus-coordinator.md +0 -333
  219. package/.claude/agents/sublinear/matrix-optimizer.md +0 -180
  220. package/.claude/agents/sublinear/pagerank-analyzer.md +0 -295
  221. package/.claude/agents/sublinear/performance-optimizer.md +0 -363
  222. package/.claude/agents/sublinear/trading-predictor.md +0 -242
  223. package/.claude/agents/support/support-analytics-reporter.md +0 -366
  224. package/.claude/agents/support/support-executive-summary-generator.md +0 -213
  225. package/.claude/agents/support/support-finance-tracker.md +0 -443
  226. package/.claude/agents/support/support-infrastructure-maintainer.md +0 -619
  227. package/.claude/agents/support/support-legal-compliance-checker.md +0 -589
  228. package/.claude/agents/support/support-support-responder.md +0 -586
  229. package/.claude/agents/swarm/adaptive-coordinator.md +0 -364
  230. package/.claude/agents/swarm/hierarchical-coordinator.md +0 -318
  231. package/.claude/agents/templates/github-pr-manager.md +0 -155
  232. package/.claude/agents/templates/memory-coordinator.md +0 -163
  233. package/.claude/agents/templates/migration-plan.md +0 -724
  234. package/.claude/agents/templates/orchestrator-task.md +0 -120
  235. package/.claude/agents/templates/performance-analyzer.md +0 -179
  236. package/.claude/agents/templates/sparc-coordinator.md +0 -163
  237. package/.claude/agents/testing/testing-reality-checker.md +0 -237
  238. package/.claude/checkpoints/1767754460.json +0 -8
  239. package/.claude/commands/analysis/token-efficiency.md +0 -42
  240. package/.claude/commands/optimization/README.md +0 -73
  241. package/.claude/commands/optimization/parallel-execution.md +0 -76
  242. package/.claude/commands/swarm/swarm-analysis.md +0 -62
  243. package/.claude/commands/swarm/swarm-background.md +0 -65
  244. package/.claude/commands/swarm/swarm-modes.md +0 -67
  245. package/.claude/commands/swarm/swarm-monitor.md +0 -54
  246. package/.claude/commands/swarm/swarm-status.md +0 -44
  247. package/.claude/commands/swarm/swarm-strategies.md +0 -76
  248. package/.claude/commands/training/model-update.md +0 -78
  249. package/.claude/commands/training/pattern-learn.md +0 -69
  250. package/.claude/commands/training/specialization.md +0 -92
  251. package/.claude/commands/verify/check.md +0 -106
  252. package/.claude/commands/verify/start.md +0 -105
  253. package/.claude/config/v1-dependency-optimization.json +0 -266
  254. package/.claude/config/v1-performance-targets.json +0 -251
  255. package/.claude/helpers/README.md +0 -105
  256. package/.claude/helpers/context-persistence-hook.mjs +0 -1988
  257. package/.claude/helpers/intelligence.cjs +0 -247
  258. package/.claude/helpers/learning-service.mjs +0 -1302
  259. package/.claude/helpers/memory-palace.cjs +0 -461
  260. package/.claude/helpers/memory.cjs +0 -84
  261. package/.claude/helpers/metrics-db.mjs +0 -488
  262. package/.claude/helpers/router.cjs +0 -559
  263. package/.claude/helpers/session.cjs +0 -126
  264. package/.claude/helpers/swarm-hooks.sh +0 -761
  265. package/.claude/helpers/toggle-statusline.cjs +0 -58
  266. package/.claude/helpers/token-tracker.cjs +0 -934
  267. package/.claude/skills/agentdb-advanced/SKILL.md +0 -549
  268. package/.claude/skills/agentdb-learning/SKILL.md +0 -544
  269. package/.claude/skills/agentdb-memory-patterns/SKILL.md +0 -337
  270. package/.claude/skills/agentdb-optimization/SKILL.md +0 -508
  271. package/.claude/skills/agentdb-vector-search/SKILL.md +0 -335
  272. package/.claude/skills/agentic-integration/SKILL.md +0 -265
  273. package/.claude/skills/cli-modernization/SKILL.md +0 -950
  274. package/.claude/skills/core-implementation/SKILL.md +0 -892
  275. package/.claude/skills/ddd-architecture/SKILL.md +0 -444
  276. package/.claude/skills/github-code-review/SKILL.md +0 -1147
  277. package/.claude/skills/github-multi-repo/SKILL.md +0 -912
  278. package/.claude/skills/github-project-management/SKILL.md +0 -1245
  279. package/.claude/skills/github-release-management/SKILL.md +0 -1118
  280. package/.claude/skills/github-workflow-automation/SKILL.md +0 -1107
  281. package/.claude/skills/mcp-optimization/SKILL.md +0 -837
  282. package/.claude/skills/memory-unification/SKILL.md +0 -196
  283. package/.claude/skills/performance-optimization/SKILL.md +0 -416
  284. package/.claude/skills/reasoningbank-agentdb/SKILL.md +0 -444
  285. package/.claude/skills/reasoningbank-intelligence/SKILL.md +0 -199
  286. package/.claude/skills/security-hardening/SKILL.md +0 -101
  287. package/.claude/skills/stream-chain/SKILL.md +0 -560
  288. package/.claude/skills/swarm-coordination/SKILL.md +0 -451
  289. package/.claude/statusline-command.sh +0 -176
  290. package/.claude/statusline.mjs +0 -109
  291. package/.claude/statusline.sh +0 -431
  292. package/packages/@monomind/cli/bundled-graph/dist/src/analyze.d.ts +0 -32
  293. package/packages/@monomind/cli/bundled-graph/dist/src/analyze.d.ts.map +0 -1
  294. package/packages/@monomind/cli/bundled-graph/dist/src/analyze.js +0 -297
  295. package/packages/@monomind/cli/bundled-graph/dist/src/analyze.js.map +0 -1
  296. package/packages/@monomind/cli/bundled-graph/dist/src/build.d.ts +0 -8
  297. package/packages/@monomind/cli/bundled-graph/dist/src/build.d.ts.map +0 -1
  298. package/packages/@monomind/cli/bundled-graph/dist/src/build.js.map +0 -1
  299. package/packages/@monomind/cli/bundled-graph/dist/src/cache.d.ts +0 -12
  300. package/packages/@monomind/cli/bundled-graph/dist/src/cache.d.ts.map +0 -1
  301. package/packages/@monomind/cli/bundled-graph/dist/src/cache.js +0 -43
  302. package/packages/@monomind/cli/bundled-graph/dist/src/cache.js.map +0 -1
  303. package/packages/@monomind/cli/bundled-graph/dist/src/cluster.d.ts +0 -5
  304. package/packages/@monomind/cli/bundled-graph/dist/src/cluster.d.ts.map +0 -1
  305. package/packages/@monomind/cli/bundled-graph/dist/src/cluster.js.map +0 -1
  306. package/packages/@monomind/cli/bundled-graph/dist/src/detect.d.ts +0 -21
  307. package/packages/@monomind/cli/bundled-graph/dist/src/detect.d.ts.map +0 -1
  308. package/packages/@monomind/cli/bundled-graph/dist/src/detect.js +0 -195
  309. package/packages/@monomind/cli/bundled-graph/dist/src/detect.js.map +0 -1
  310. package/packages/@monomind/cli/bundled-graph/dist/src/export.d.ts +0 -21
  311. package/packages/@monomind/cli/bundled-graph/dist/src/export.d.ts.map +0 -1
  312. package/packages/@monomind/cli/bundled-graph/dist/src/export.js +0 -68
  313. package/packages/@monomind/cli/bundled-graph/dist/src/export.js.map +0 -1
  314. package/packages/@monomind/cli/bundled-graph/dist/src/extract/index.d.ts +0 -20
  315. package/packages/@monomind/cli/bundled-graph/dist/src/extract/index.d.ts.map +0 -1
  316. package/packages/@monomind/cli/bundled-graph/dist/src/extract/index.js +0 -158
  317. package/packages/@monomind/cli/bundled-graph/dist/src/extract/index.js.map +0 -1
  318. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/c.d.ts +0 -3
  319. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/c.d.ts.map +0 -1
  320. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/c.js +0 -88
  321. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/c.js.map +0 -1
  322. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/cpp.d.ts +0 -3
  323. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/cpp.d.ts.map +0 -1
  324. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/cpp.js +0 -121
  325. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/cpp.js.map +0 -1
  326. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/csharp.d.ts +0 -3
  327. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/csharp.d.ts.map +0 -1
  328. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/csharp.js +0 -121
  329. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/csharp.js.map +0 -1
  330. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/go.d.ts +0 -3
  331. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/go.d.ts.map +0 -1
  332. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/go.js +0 -181
  333. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/go.js.map +0 -1
  334. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/java.d.ts +0 -3
  335. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/java.d.ts.map +0 -1
  336. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/java.js +0 -117
  337. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/java.js.map +0 -1
  338. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/kotlin.d.ts +0 -3
  339. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/kotlin.d.ts.map +0 -1
  340. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/kotlin.js +0 -112
  341. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/kotlin.js.map +0 -1
  342. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/php.d.ts +0 -3
  343. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/php.d.ts.map +0 -1
  344. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/php.js +0 -130
  345. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/php.js.map +0 -1
  346. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/python.d.ts +0 -3
  347. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/python.d.ts.map +0 -1
  348. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/python.js +0 -230
  349. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/python.js.map +0 -1
  350. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/ruby.d.ts +0 -3
  351. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/ruby.d.ts.map +0 -1
  352. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/ruby.js +0 -120
  353. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/ruby.js.map +0 -1
  354. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/rust.d.ts +0 -3
  355. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/rust.d.ts.map +0 -1
  356. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/rust.js +0 -195
  357. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/rust.js.map +0 -1
  358. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/scala.d.ts +0 -3
  359. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/scala.d.ts.map +0 -1
  360. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/scala.js +0 -110
  361. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/scala.js.map +0 -1
  362. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/swift.d.ts +0 -3
  363. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/swift.d.ts.map +0 -1
  364. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/swift.js +0 -122
  365. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/swift.js.map +0 -1
  366. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/typescript.d.ts +0 -3
  367. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/typescript.d.ts.map +0 -1
  368. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/typescript.js +0 -295
  369. package/packages/@monomind/cli/bundled-graph/dist/src/extract/languages/typescript.js.map +0 -1
  370. package/packages/@monomind/cli/bundled-graph/dist/src/extract/semantic.d.ts +0 -38
  371. package/packages/@monomind/cli/bundled-graph/dist/src/extract/semantic.d.ts.map +0 -1
  372. package/packages/@monomind/cli/bundled-graph/dist/src/extract/semantic.js +0 -242
  373. package/packages/@monomind/cli/bundled-graph/dist/src/extract/semantic.js.map +0 -1
  374. package/packages/@monomind/cli/bundled-graph/dist/src/extract/tree-sitter-runner.d.ts +0 -48
  375. package/packages/@monomind/cli/bundled-graph/dist/src/extract/tree-sitter-runner.d.ts.map +0 -1
  376. package/packages/@monomind/cli/bundled-graph/dist/src/extract/tree-sitter-runner.js +0 -137
  377. package/packages/@monomind/cli/bundled-graph/dist/src/extract/tree-sitter-runner.js.map +0 -1
  378. package/packages/@monomind/cli/bundled-graph/dist/src/extract/types.d.ts +0 -7
  379. package/packages/@monomind/cli/bundled-graph/dist/src/extract/types.d.ts.map +0 -1
  380. package/packages/@monomind/cli/bundled-graph/dist/src/extract/types.js +0 -2
  381. package/packages/@monomind/cli/bundled-graph/dist/src/extract/types.js.map +0 -1
  382. package/packages/@monomind/cli/bundled-graph/dist/src/index.d.ts +0 -28
  383. package/packages/@monomind/cli/bundled-graph/dist/src/index.d.ts.map +0 -1
  384. package/packages/@monomind/cli/bundled-graph/dist/src/index.js +0 -26
  385. package/packages/@monomind/cli/bundled-graph/dist/src/index.js.map +0 -1
  386. package/packages/@monomind/cli/bundled-graph/dist/src/pipeline.d.ts +0 -27
  387. package/packages/@monomind/cli/bundled-graph/dist/src/pipeline.d.ts.map +0 -1
  388. package/packages/@monomind/cli/bundled-graph/dist/src/pipeline.js +0 -269
  389. package/packages/@monomind/cli/bundled-graph/dist/src/pipeline.js.map +0 -1
  390. package/packages/@monomind/cli/bundled-graph/dist/src/report.d.ts +0 -26
  391. package/packages/@monomind/cli/bundled-graph/dist/src/report.d.ts.map +0 -1
  392. package/packages/@monomind/cli/bundled-graph/dist/src/report.js +0 -214
  393. package/packages/@monomind/cli/bundled-graph/dist/src/report.js.map +0 -1
  394. package/packages/@monomind/cli/bundled-graph/dist/src/types.d.ts +0 -124
  395. package/packages/@monomind/cli/bundled-graph/dist/src/types.d.ts.map +0 -1
  396. package/packages/@monomind/cli/bundled-graph/dist/src/types.js +0 -2
  397. package/packages/@monomind/cli/bundled-graph/dist/src/types.js.map +0 -1
  398. package/packages/@monomind/cli/bundled-graph/dist/src/visualize.d.ts +0 -4
  399. package/packages/@monomind/cli/bundled-graph/dist/src/visualize.d.ts.map +0 -1
  400. package/packages/@monomind/cli/bundled-graph/dist/src/visualize.js +0 -574
  401. package/packages/@monomind/cli/bundled-graph/dist/src/visualize.js.map +0 -1
  402. package/packages/@monomind/cli/bundled-graph/dist/tsconfig.tsbuildinfo +0 -1
  403. package/packages/@monomind/shared/README.md +0 -322
  404. package/packages/@monomind/shared/package.json +0 -42
  405. package/packages/README.md +0 -513
@@ -0,0 +1,317 @@
1
+ ---
2
+ name: mastermind:code-review
3
+ description: "Monomind — Multi-agent iterative review loop: runs Code Reviewer, Security Engineer, and domain specialists in parallel, auto-fixes findings each iteration, and captures human-in-loop items to a dated file."
4
+ ---
5
+
6
+ **First — extract repeat flags:** Follow the REPEAT PREAMBLE from `_repeat.md`. Extracts `--repeat`, `--tillend`, `--maxruns`, `--wait`, `--rep`, `--loop` from `$ARGUMENTS` before all other parsing. If `is_continuation = true`, skip the empty-arguments check below.
7
+
8
+ Parse remaining `$ARGUMENTS` as `TOTAL_ITERATIONS` (integer, min 1, max 10).
9
+
10
+ If `$ARGUMENTS` is empty, not a positive integer, or greater than 10, output this and STOP:
11
+
12
+ > **Usage:** `/mastermind:code-review <iterations>`
13
+ >
14
+ > Examples:
15
+ > - `/mastermind:code-review 1` — single review pass
16
+ > - `/mastermind:code-review 3` — three fix-and-re-review cycles
17
+ >
18
+ > Runs parallel review agents each iteration, auto-fixes what can be fixed, and saves items requiring human judgment to `humaninloopreview-YYYY-MM-DD.md`.
19
+
20
+ Do NOT proceed further if no valid number was provided.
21
+
22
+ ---
23
+
24
+ ## Terminology
25
+
26
+ - **Finding**: An issue reported by any review agent.
27
+ - **Auto-fixable**: Claude can apply the fix without ambiguity and without changing intended behavior.
28
+ - **Human-in-loop (HIL)**: Requires a product/design/architecture decision, a credential, a policy choice, or something Claude cannot safely assume. These are written to the HIL file and skipped.
29
+ - **HIL file**: `humaninloopreview-<YYYY-MM-DD>.md` in the project root. Appended each loop; never overwritten.
30
+
31
+ ---
32
+
33
+ ## Step 0: Setup
34
+
35
+ Parse `$ARGUMENTS` as `TOTAL_ITERATIONS` (integer, min 1, max 10).
36
+
37
+ Collect the following in parallel:
38
+
39
+ 1. **Git context**: Run the following to get recently changed files. Store result as `CHANGED_FILES`.
40
+ ```bash
41
+ CHANGED_FILES=$(git diff --name-only HEAD~1 HEAD 2>/dev/null)
42
+ [ -z "$CHANGED_FILES" ] && CHANGED_FILES=$(git ls-files -m 2>/dev/null)
43
+ [ -z "$CHANGED_FILES" ] && CHANGED_FILES=$(git diff --name-only HEAD~5 HEAD 2>/dev/null)
44
+ ```
45
+ 2. **Repo structure**: Run `git ls-files | head -80` to get a representative file list. Store as `FILE_LIST`.
46
+ 3. **Branch info**: Run `git log --oneline -5` to get recent commit context. Store as `RECENT_COMMITS`.
47
+ 4. **Stack detection**: Run `ls package.json pyproject.toml go.mod Cargo.toml 2>/dev/null; find . -maxdepth 3 \( -name "*.swift" -o -name "*.kt" \) | head -3` to detect language/framework. Store detected stacks as `STACK`.
48
+ 5. **HIL file path**: Compute `HIL_FILE=humaninloopreview-$(date +%Y-%m-%d).md` in the project root.
49
+
50
+ Initialize tracking state:
51
+ ```
52
+ ITERATION = 1
53
+ ITERATIONS_RUN = 0 # how many iterations actually executed (for final report)
54
+ ALL_FIXED = [] # auto-fixed items (across all iterations)
55
+ ALL_HIL = [] # human-in-loop items (across all iterations)
56
+ HIL_COUNT = 0 # global counter for HIL-N labels
57
+ PENDING_FIXED = [] # staging: auto-fixed this batch, not yet verified
58
+ ITERATION_FIXED_FILES = [] # file paths edited this iteration
59
+ ```
60
+
61
+ ---
62
+
63
+ ## Step 1: Select Review Agents for This Stack
64
+
65
+ Based on `STACK`, determine which specialist agents to run beyond the always-on core set.
66
+
67
+ **Always run (every stack):**
68
+ - `Code Reviewer` — correctness, maintainability, performance, naming, dead code
69
+ - `Security Engineer` — injection, auth gaps, secrets exposure, CVE-prone patterns, OWASP Top 10
70
+ - `Reality Checker` — evidence-based assessment: does the code actually do what it claims?
71
+
72
+ **Run conditionally** — detect by running these checks and adding the agent if exit 0:
73
+ - `Accessibility Auditor` — `find . -maxdepth 5 \( -name "*.html" -o -name "*.jsx" -o -name "*.tsx" \) -not -path "*/node_modules/*" | head -1 | grep -q .`
74
+ - `API Tester` — `find . -maxdepth 5 \( -name "*.route.*" -o -name "openapi.yml" -o -name "openapi.json" -o -name "swagger.*" \) -not -path "*/node_modules/*" | head -1 | grep -q . || grep -rqEl "express\(|fastify|hono|koa|router\." --include="*.ts" --include="*.js" . 2>/dev/null`
75
+ - `Database Optimizer` — `find . -maxdepth 5 \( -name "*.sql" -o -name "*migration*" -o -name "*schema*" \) -not -path "*/node_modules/*" | head -1 | grep -q . || grep -rqEl "prisma|typeorm|sequelize|drizzle|knex" --include="*.ts" --include="*.js" . 2>/dev/null`
76
+ - `SRE` — `find . -maxdepth 3 \( -name "Dockerfile" -o -name "docker-compose*" -o -name "*.yml" -path "*/.github/workflows/*" \) | head -1 | grep -q .`
77
+ - `Mobile App Builder` — `find . -maxdepth 3 \( -name "*.swift" -o -name "*.kt" \) | head -1 | grep -q . || grep -q "react-native" package.json 2>/dev/null`
78
+
79
+ Store the selected set as `ACTIVE_REVIEWERS`.
80
+
81
+ ---
82
+
83
+ ## Loop: Run `TOTAL_ITERATIONS` times
84
+
85
+ For each iteration, first reset per-iteration state:
86
+ ```
87
+ PENDING_FIXED = []
88
+ ITERATION_FIXED_FILES = []
89
+ ```
90
+
91
+ ---
92
+
93
+ ### Step 2: Run All Reviewers in Parallel
94
+
95
+ Spawn one agent per reviewer in `ACTIVE_REVIEWERS` using the `Task` tool — all in a **single message** so they run concurrently.
96
+
97
+ Each agent receives:
98
+ - `CHANGED_FILES`, `FILE_LIST`, `RECENT_COMMITS`, `STACK`
99
+ - The list of findings already auto-fixed in prior iterations (so they don't re-report them)
100
+ - The list of HIL items already deferred (same reason)
101
+ - Their specific review focus (below)
102
+
103
+ #### Agent Instructions by Role
104
+
105
+ All agent prompts share this finding schema. `hil_reason` and `context` are only required when `auto_fixable: false`:
106
+ ```
107
+ {
108
+ file, line,
109
+ severity: critical|high|medium|low,
110
+ category: "...",
111
+ description,
112
+ suggested_fix,
113
+ auto_fixable: true|false,
114
+ hil_reason?: "only if auto_fixable=false — why Claude cannot safely apply this",
115
+ context?: "only if auto_fixable=false — 2-4 sentences: what the code does, why this is a problem, what the risk is"
116
+ }
117
+ ```
118
+
119
+ **Code Reviewer prompt:**
120
+ > Review the codebase for: logic errors, off-by-one bugs, null/undefined handling, dead code, overly complex functions (>50 lines or >3 nesting levels), naming inconsistencies, missing error propagation, and performance anti-patterns (N+1, blocking I/O, unnecessary allocations). Focus on `CHANGED_FILES` first, then related files. Return findings using the shared schema above.
121
+
122
+ **Security Engineer prompt:**
123
+ > Audit for: hardcoded secrets or API keys, SQL/command/path injection, missing input validation at system boundaries, insecure deserialization, broken auth/authz, sensitive data in logs, unpatched dependency versions with known CVEs, missing rate limiting on public endpoints, and CORS misconfigurations. Categories: injection|secrets|auth|deps|logging|config. Return findings using the shared schema above.
124
+
125
+ **Reality Checker prompt:**
126
+ > Check: does each function do what its name/docs claim? Are there missing test assertions? Are there commented-out code blocks, TODO/FIXME/HACK markers, or debug statements left in? Are there import cycles? Are env vars assumed to exist without validation? Categories: correctness|tests|debt|env. Return findings using the shared schema above.
127
+
128
+ **Accessibility Auditor prompt (if applicable):**
129
+ > Check: missing alt text, non-semantic HTML, keyboard-inaccessible interactive elements, insufficient color contrast (< 4.5:1 for text), missing ARIA labels, focus trap issues, and missing skip navigation. Category: a11y. Return findings using the shared schema above.
130
+
131
+ **API Tester prompt (if applicable):**
132
+ > Check: endpoints missing auth middleware, routes with no input validation, missing HTTP status codes on error paths, inconsistent response shapes, pagination not implemented where expected, and missing rate-limit headers. Category: api. Return findings using the shared schema above.
133
+
134
+ **Database Optimizer prompt (if applicable):**
135
+ > Check: missing indexes on foreign keys and frequently-queried columns, N+1 query patterns in ORM code, unparameterized queries, missing transactions around multi-step writes, and schema column type mismatches. Category: database. Return findings using the shared schema above.
136
+
137
+ **SRE prompt (if applicable):**
138
+ > Check: Docker images without pinned versions, CI jobs with no timeout, missing health check endpoints, hardcoded environment assumptions (localhost, fixed ports), missing retry logic on external calls, and secrets in CI config files. Categories: reliability|infra. Return findings using the shared schema above.
139
+
140
+ **Mobile App Builder prompt (if applicable):**
141
+ > Check: missing permission explanations, sensitive data stored in plain UserDefaults/SharedPreferences, missing loading/error states, hard-coded URLs, deprecated API usage, and missing offline/degraded-mode handling. Category: mobile. Return findings using the shared schema above.
142
+
143
+ ---
144
+
145
+ ### Step 3: Merge and Deduplicate Findings
146
+
147
+ Collect all agent outputs. As you collect each agent's findings, annotate each finding with `reporter: <agent role name>` (e.g., `"Code Reviewer"`, `"Security Engineer"`, `"Reality Checker"`). Merge into a single `ITERATION_FINDINGS` list. Deduplicate by `(file, category, description[:60])` — keep highest severity when duplicates exist. Do NOT deduplicate by line number, as applied fixes shift line numbers across iterations. Exclude anything already in `ALL_FIXED` or `ALL_HIL` by matching on `(file, description[:60])`.
148
+
149
+ Sort by severity: critical → high → medium → low.
150
+
151
+ ---
152
+
153
+ ### Step 4: Classify and Act
154
+
155
+ For each finding in `ITERATION_FINDINGS`:
156
+
157
+ **If `auto_fixable: true`:**
158
+ - Apply the fix using `Edit` (or `Write` for new files). Add the file path to `ITERATION_FIXED_FILES` list. Add the finding to a staging list `PENDING_FIXED`.
159
+
160
+ **If `auto_fixable: false` (HIL):**
161
+ - Add to `ALL_HIL`. Do NOT attempt to fix.
162
+
163
+ After processing all findings, if `PENDING_FIXED` is empty, skip verification and proceed to Step 5. Otherwise, run verification **once** for the whole batch. Run only commands appropriate for `STACK`:
164
+
165
+ **Node.js / TypeScript:**
166
+ ```bash
167
+ npm run --if-present lint 2>&1 | tail -5
168
+ npm run --if-present typecheck 2>&1 | tail -5
169
+ npm run --if-present test 2>&1 | tail -10
170
+ ```
171
+
172
+ **Python** (if `pyproject.toml` or `*.py` detected):
173
+ ```bash
174
+ ruff check . 2>&1 | tail -5
175
+ python -m pytest --tb=short -q 2>&1 | tail -10
176
+ ```
177
+
178
+ **Go** (if `go.mod` detected):
179
+ ```bash
180
+ go vet ./... 2>&1 | tail -5
181
+ go test ./... 2>&1 | tail -10
182
+ ```
183
+
184
+ **Rust** (if `Cargo.toml` detected):
185
+ ```bash
186
+ cargo check 2>&1 | tail -5
187
+ cargo test 2>&1 | tail -10
188
+ ```
189
+ - If all checks pass: move all `PENDING_FIXED` entries into `ALL_FIXED`.
190
+ - If any check fails: run `git restore` on each file in `ITERATION_FIXED_FILES` to undo all changes, move all `PENDING_FIXED` entries to `ALL_HIL` with `hil_reason: "batch auto-fix caused verification failure — apply individually"`. Print the error output.
191
+
192
+ ---
193
+
194
+ ### Step 5: Commit Fixes for This Iteration
195
+
196
+ If `ALL_FIXED` gained any new entries this iteration:
197
+
198
+ Stage only the files that were actually edited (tracked from `ITERATION_FIXED_FILES` collected in Step 4):
199
+ ```bash
200
+ git add <space-separated list of ITERATION_FIXED_FILES paths>
201
+ ```
202
+
203
+ Then commit with each fixed item on its own line in the body:
204
+ ```bash
205
+ git commit -m "fix(review): iteration <ITERATION> — <count> findings fixed by mastermind:code-review
206
+
207
+ <file>:<line> — <description>
208
+ <file>:<line> — <description>
209
+
210
+ Co-Authored-By: nokhodian <nokhodian@gmail.com>"
211
+ ```
212
+
213
+ ---
214
+
215
+ ### Step 6: Write HIL Items to File
216
+
217
+ If any new HIL items were added this iteration, **append** to `HIL_FILE`. For each new HIL item, increment `HIL_COUNT` by 1 and use it as the label number:
218
+
219
+ ```markdown
220
+ ## Review Iteration <ITERATION> — <YYYY-MM-DD HH:MM>
221
+
222
+ <!-- One block per HIL finding; HIL_COUNT increments globally across all iterations -->
223
+ ### HIL-<HIL_COUNT>: <description> [`<severity>`]
224
+
225
+ **File:** `<file>:<line>`
226
+ **Category:** <category>
227
+ **Reported by:** <agent name>
228
+
229
+ **Context:**
230
+ <context from agent finding, or derive from description if context field absent>
231
+
232
+ **Suggested fix:**
233
+ <suggested_fix from agent, verbatim>
234
+
235
+ **Why human decision needed:**
236
+ <hil_reason>
237
+
238
+ **Your options:**
239
+ - [ ] Apply the suggested fix as-is
240
+ - [ ] Apply a modified fix (describe below)
241
+ - [ ] Defer — not a priority right now
242
+ - [ ] Reject — not applicable for this project
243
+
244
+ **Your response (fill in and save):**
245
+ >
246
+
247
+ ---
248
+ ```
249
+
250
+ After writing, print:
251
+ > `HIL_FILE` updated with <count> new items requiring human judgment.
252
+
253
+ ---
254
+
255
+ ### Step 7: Iteration Summary
256
+
257
+ Increment `ITERATIONS_RUN` by 1. Then print a table:
258
+
259
+ ```
260
+ ### Iteration <ITERATION> / <TOTAL_ITERATIONS>
261
+
262
+ | Reviewer | Findings | Auto-Fixed | HIL |
263
+ |---------------------|----------|------------|-----|
264
+ | Code Reviewer | N | N | N |
265
+ | Security Engineer | N | N | N |
266
+ | Reality Checker | N | N | N |
267
+ | ... | ... | ... | ... |
268
+ | **Total** | **N** | **N** | **N**|
269
+
270
+ Severity breakdown: X critical, Y high, Z medium, W low
271
+ ```
272
+
273
+ If zero findings remain after dedup and exclusions, print:
274
+ > No new findings. Review complete.
275
+ > Break out of the loop early.
276
+
277
+ Increment `ITERATION`. Continue to next iteration.
278
+
279
+ ---
280
+
281
+ ## Step 8: Final Report
282
+
283
+ After all iterations complete (or early exit), output:
284
+
285
+ ```markdown
286
+ ## mastermind:code-review — Complete
287
+
288
+ **Iterations run:** <ITERATIONS_RUN> / <TOTAL_ITERATIONS>
289
+ **Reviewers active:** <list>
290
+
291
+ ### Auto-Fixed (<N> total)
292
+ | File | Line | Severity | Category | Description |
293
+ |------|------|----------|----------|-------------|
294
+ | ... | ... | ... | ... | ... |
295
+
296
+ ### Human-in-Loop (<N> items)
297
+ Saved to: `humaninloopreview-<date>.md`
298
+
299
+ | # | File | Severity | Category | Why HIL |
300
+ |---|------|----------|----------|---------|
301
+ | 1 | ... | ... | ... | ... |
302
+
303
+ ### How to resolve HIL items
304
+ 1. Open `humaninloopreview-<date>.md`
305
+ 2. For each item, fill in **Your response** and check the option box
306
+ 3. Apply your chosen fixes manually, or run `/mastermind:code-review 1` again after fixing to re-verify
307
+
308
+ ### Commits created
309
+ <list of commit SHAs and messages from this session>
310
+ ```
311
+
312
+ If `ALL_HIL` is empty, omit the HIL section and congratulate:
313
+ > All findings were auto-fixed. No human decisions required.
314
+
315
+ To repeat this command on a schedule, wrap it with `/mastermind:repeat` or use `--repeat N` / `--tillend` directly.
316
+
317
+ Invoke `Skill("mastermind:_repeat")` now to execute the REPEAT POSTAMBLE. This is a required tool call — do not skip it.
@@ -32,6 +32,8 @@ Use orgs when the work is ongoing, not single-shot. A content team that ships 10
32
32
  `--roles <list>` — explicit role list (e.g. "boss, writer, reviewer, marketer")
33
33
  `--auto` — skip confirmation, create immediately
34
34
  `--confirm` — always ask before saving (default)
35
+ `--delete <name>` — delete a saved org and all associated data files
36
+ `--list` — list all saved orgs with their status
35
37
 
36
38
  Once created, start the org with `/mastermind:runorg --org <name>`.
37
39
 
@@ -46,11 +48,45 @@ Parse `$ARGUMENTS` for:
46
48
  - `--confirm` flag → mode = confirm
47
49
  - `--name <name>` → org_name = <name> (must match `^[a-z0-9][a-z0-9-]{0,63}$`; if omitted, derived from goal)
48
50
  - `--roles <desc>` → roles_desc = <desc> (explicit role list, e.g. "boss, writer, reviewer, marketer")
51
+ - `--delete <name>` → delete_mode = true, delete_name = <name>
52
+ - `--list` flag → list_mode = true
49
53
  - Remaining text = prompt (goal description)
50
54
 
55
+ **If `--list` flag is set:**
56
+ ```bash
57
+ orgs_dir=".monomind/orgs"
58
+ if [ ! -d "$orgs_dir" ] || [ -z "$(ls "$orgs_dir"/*.json 2>/dev/null)" ]; then
59
+ echo "No saved orgs. Run /mastermind:createorg <goal> to create one."
60
+ else
61
+ echo "Saved orgs:"
62
+ for f in "$orgs_dir"/*.json; do
63
+ name=$(jq -r '.name // empty' "$f" 2>/dev/null)
64
+ goal=$(jq -r '.goal // ""' "$f" 2>/dev/null | cut -c1-60)
65
+ [ -n "$name" ] && echo " • ${name} — ${goal}"
66
+ done
67
+ fi
68
+ ```
69
+ Stop after listing. Do not proceed to skill invocation.
70
+
71
+ **If `--delete <name>` is set:**
72
+ 1. Confirm the org exists:
73
+ ```bash
74
+ [ -f ".monomind/orgs/${delete_name}.json" ] || { echo "Org '${delete_name}' not found."; exit 1; }
75
+ ```
76
+ 2. In confirm mode (default): ask "Delete org '${delete_name}' and all its data? This cannot be undone. Type 'yes' to confirm."
77
+ In auto mode: proceed without asking.
78
+ 3. Call the server DELETE endpoint:
79
+ ```bash
80
+ REPO_ROOT=$(git rev-parse --show-toplevel 2>/dev/null || pwd)
81
+ CTRL_URL=$(jq -r '.url // "http://localhost:4242"' "$REPO_ROOT/.monomind/control.json" 2>/dev/null || echo "http://localhost:4242")
82
+ result=$(curl -s -X DELETE "${CTRL_URL}/api/orgs/${delete_name}")
83
+ echo "$result" | jq -r 'if .ok then "Org '\'''"${delete_name}"'''\'' deleted." else "Error: " + (.error // "unknown") end'
84
+ ```
85
+ 4. Stop after deleting. Do not proceed to skill invocation.
86
+
51
87
  If neither `--auto` nor `--confirm` was provided, default: **mode = confirm**.
52
88
 
53
- If prompt is empty: ask "Describe your org's goal and optionally list the roles you want (e.g. 'a content team with a boss, writer, reviewer, and marketer to produce 10 blog posts per month')."
89
+ If prompt is empty (and not list/delete mode): ask "Describe your org's goal and optionally list the roles you want (e.g. 'a content team with a boss, writer, reviewer, and marketer to produce 10 blog posts per month')."
54
90
 
55
91
  Load brain context for the `ops` domain (follow _protocol.md Brain Load Procedure, namespace: `ops`).
56
92
 
@@ -95,3 +131,6 @@ curl -s -X POST "${CTRL_URL}/api/mastermind/event" \
95
131
  ```
96
132
 
97
133
  Follow _protocol.md Brain Write Procedure for domain `ops`.
134
+
135
+
136
+ Invoke `Skill("mastermind:_repeat")` now to execute the REPEAT POSTAMBLE. This is a required tool call — do not skip it.