@mutagent/helix 0.1.0-alpha.14

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 (357) hide show
  1. package/.claude/skills/mutagent-helix/SKILL.md +113 -0
  2. package/.claude/skills/mutagent-helix/scripts/cli/codex-transcode.ts +143 -0
  3. package/.claude/skills/mutagent-helix/scripts/cli/doctor.ts +111 -0
  4. package/.claude/skills/mutagent-helix/scripts/cli/init.ts +382 -0
  5. package/.claude/skills/mutagent-helix/scripts/cli/run.sh +61 -0
  6. package/CLAUDE.md +193 -0
  7. package/LICENSE +201 -0
  8. package/NOTICE +22 -0
  9. package/README.md +209 -0
  10. package/assets/adl-loop.svg +162 -0
  11. package/assets/system-status.svg +422 -0
  12. package/bin/mutagent-cli.mjs +9950 -0
  13. package/bin/mutagent-helix.mjs +78 -0
  14. package/mutagent-agentspec/.claude/skills/mutagent-agentspec/CLAUDE.md +28 -0
  15. package/mutagent-agentspec/.claude/skills/mutagent-agentspec/SKILL.md +138 -0
  16. package/mutagent-agentspec/.claude/skills/mutagent-agentspec/assets/templates/agentspec.yaml.tpl +247 -0
  17. package/mutagent-agentspec/.claude/skills/mutagent-agentspec/references/frameworks/doc-pins.md +53 -0
  18. package/mutagent-agentspec/.claude/skills/mutagent-agentspec/references/principles.md +91 -0
  19. package/mutagent-agentspec/.claude/skills/mutagent-agentspec/references/requirements.yaml +295 -0
  20. package/mutagent-agentspec/.claude/skills/mutagent-agentspec/references/workflows/orchestrator-protocol.md +302 -0
  21. package/mutagent-agentspec/.claude/skills/mutagent-agentspec/scripts/cli/doctor.ts +116 -0
  22. package/mutagent-agentspec/.claude/skills/mutagent-agentspec/scripts/cli/init.ts +230 -0
  23. package/mutagent-agentspec/.claude/skills/mutagent-agentspec/scripts/cli/run.sh +60 -0
  24. package/mutagent-agentspec/.claude/skills/mutagent-agentspec/scripts/config/resolve-spec-dir.ts +199 -0
  25. package/mutagent-agentspec/.claude/skills/mutagent-agentspec/scripts/contract/agentspec.schema.ts +455 -0
  26. package/mutagent-agentspec/.claude/skills/mutagent-agentspec/scripts/setup/detect.ts +67 -0
  27. package/mutagent-agentspec/.claude/skills/mutagent-agentspec/scripts/validate/validate-spec.ts +93 -0
  28. package/mutagent-agentspec/LICENSE +201 -0
  29. package/mutagent-agentspec/NOTICE +19 -0
  30. package/mutagent-agentspec/README.md +44 -0
  31. package/mutagent-builder/.claude/skills/mutagent-builder/SKILL.md +100 -0
  32. package/mutagent-builder/.claude/skills/mutagent-builder/assets/agents/ai-architect.md +312 -0
  33. package/mutagent-builder/.claude/skills/mutagent-builder/assets/agents/ai-engineer.md +357 -0
  34. package/mutagent-builder/.claude/skills/mutagent-builder/assets/templates/build-report.md.tpl +39 -0
  35. package/mutagent-builder/.claude/skills/mutagent-builder/references/principles.md +31 -0
  36. package/mutagent-builder/.claude/skills/mutagent-builder/references/workflows/build-protocol.md +61 -0
  37. package/mutagent-builder/.claude/skills/mutagent-builder/references/workflows/improve-handoff.md +23 -0
  38. package/mutagent-builder/.claude/skills/mutagent-builder/scripts/cli/run.sh +60 -0
  39. package/mutagent-builder/.claude/skills/mutagent-builder/scripts/handoff/validate-build-input.ts +72 -0
  40. package/mutagent-builder/.claude/skills/mutagent-builder/scripts/sync-spec/check-sync-spec.ts +499 -0
  41. package/mutagent-builder/.claude/skills/mutagent-builder/scripts/verify/spec-impl-coverage.ts +182 -0
  42. package/mutagent-builder/CLAUDE.md +25 -0
  43. package/mutagent-builder/README.md +26 -0
  44. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/README.md +192 -0
  45. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/SKILL.md +352 -0
  46. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/agents/ai-architect.md +256 -0
  47. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/agents/ai-engineer.md +344 -0
  48. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/agents/diagnostics-analyzer.md +576 -0
  49. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/agents/discovery.md +425 -0
  50. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/templates/audit.json.tpl +24 -0
  51. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/templates/audit.md.tpl +49 -0
  52. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/templates/config.yaml.tpl +100 -0
  53. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/templates/pr-body.md.tpl +56 -0
  54. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/templates/report.html.tpl +327 -0
  55. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/templates/shared/README.md +27 -0
  56. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/templates/shared/iter-N-handover.md.tpl +125 -0
  57. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/templates/shared/self-diagnosis-contract.v0.1.0.yaml.tpl +234 -0
  58. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/templates/shared/spec.yaml.tpl +152 -0
  59. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/templates/shared/team.yaml.tpl +127 -0
  60. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/templates/shared/wave-N-dashboard.html.tpl +1712 -0
  61. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/wireframes/diagnostics/WF-2.1-nl-query.md +59 -0
  62. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/wireframes/diagnostics/WF-2.2-tier0-progress.md +58 -0
  63. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/wireframes/diagnostics/WF-2.3-analysis-progress.md +44 -0
  64. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/wireframes/diagnostics/WF-2.4-html-report.md +61 -0
  65. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/wireframes/diagnostics/WF-2.5-rca-detail.md +69 -0
  66. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/wireframes/diagnostics/WF-2.6-stale-warning.md +53 -0
  67. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/wireframes/onboarding/WF-1.1-welcome.md +60 -0
  68. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/wireframes/onboarding/WF-1.2-source-platform-picker.md +41 -0
  69. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/wireframes/onboarding/WF-1.3-source-auth.md +75 -0
  70. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/wireframes/onboarding/WF-1.4-target-picker.md +48 -0
  71. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/wireframes/onboarding/WF-1.5-ask-tool.md +43 -0
  72. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/wireframes/onboarding/WF-1.6-config-review.md +57 -0
  73. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/wireframes/onboarding/WF-1.7-filter-defaults.md +52 -0
  74. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/assets/wireframes/onboarding/WF-1.8-first-run.md +59 -0
  75. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/examples/sample-findings.json +92 -0
  76. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/examples/sample-meta.json +47 -0
  77. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/adapter-strategy.md +75 -0
  78. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/config-migration.md +84 -0
  79. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/config.md +159 -0
  80. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/filter-search-matrix.md +66 -0
  81. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/harness-knowledge.md +22 -0
  82. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/memory-format.md +78 -0
  83. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/onboarding-decisions.yaml +187 -0
  84. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/operation-inventory.md +59 -0
  85. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/overview.md +167 -0
  86. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/reference.md +119 -0
  87. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/script-index.md +101 -0
  88. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/source-adapter-contract.md +93 -0
  89. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/source-platforms/claude-code-transcripts.md +66 -0
  90. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/source-platforms/codex-transcripts.md +78 -0
  91. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/source-platforms/codex.md +145 -0
  92. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/source-platforms/install-paths.md +57 -0
  93. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/source-platforms/langfuse.md +178 -0
  94. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/source-platforms/local-jsonl.md +55 -0
  95. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/source-platforms/openobserve.md +102 -0
  96. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/source-platforms/otel.md +63 -0
  97. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/target-platforms/cloud-rest.md +84 -0
  98. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/target-platforms/local-claude.md +65 -0
  99. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/target-platforms/local-cloud-agent-sdk.md +92 -0
  100. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/target-platforms/local-codex.md +72 -0
  101. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/target-platforms/local-cursor.md +108 -0
  102. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/target-platforms/local-mastra.md +77 -0
  103. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/target-platforms/local-opencode.md +70 -0
  104. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/workflows/apply-pr-comment-format.md +82 -0
  105. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/workflows/diagnostics.md +35 -0
  106. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/workflows/handover-contract.md +247 -0
  107. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/workflows/onboarding.md +300 -0
  108. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/workflows/orchestrator-protocol.md +1861 -0
  109. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/workflows/rca.md +331 -0
  110. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/workflows/rendering-anatomy.md +314 -0
  111. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/workflows/schedule-prep.md +100 -0
  112. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/workflows/scope-model.md +128 -0
  113. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/references/workflows/verification-methodology.md +174 -0
  114. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/aggregate/sort-findings.ts +0 -0
  115. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/awareness/blind-spots.ts +167 -0
  116. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/awareness/llm-sample.ts +681 -0
  117. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/cli/doctor.ts +215 -0
  118. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/cli/init.ts +1013 -0
  119. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/cli/install-agents.ts +350 -0
  120. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/cli/run.sh +61 -0
  121. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/cli/shared-templates.ts +79 -0
  122. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/config/load.ts +392 -0
  123. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/config/resolve-credential.ts +120 -0
  124. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/config/schema.ts +641 -0
  125. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/config/validate.ts +134 -0
  126. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/context/build-diagnosis-context.ts +417 -0
  127. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/context/load-context.ts +105 -0
  128. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/contract/types.ts +166 -0
  129. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/enrich/build-render-input.ts +1964 -0
  130. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/enrich/corpus-severity.ts +172 -0
  131. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/enrich/dismissal-match.ts +270 -0
  132. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/enrich/rank-remedies.ts +75 -0
  133. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/hooks/install-hooks.sh +46 -0
  134. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/hooks/pre-push.sh +78 -0
  135. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/invocation/parse-brief.ts +188 -0
  136. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/library/match.ts +114 -0
  137. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/library/paths.ts +95 -0
  138. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/library/store.ts +535 -0
  139. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/library/types.ts +181 -0
  140. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/lint/template-inline-js.ts +267 -0
  141. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/memory/append.ts +188 -0
  142. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/memory/read.ts +218 -0
  143. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/normalize/platforms/entity-context.ts +686 -0
  144. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/normalize/read-unitf.ts +267 -0
  145. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/normalize/trace.ts +1078 -0
  146. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/normalize/unitf-adapter.ts +0 -0
  147. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/normalize/unitf-types.ts +213 -0
  148. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/report/persist-selections.ts +174 -0
  149. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/report/render.ts +3254 -0
  150. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/run/diagnose.ts +64 -0
  151. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/run/session.ts +167 -0
  152. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/sample/caps.ts +345 -0
  153. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/sample/deep-read-gate.ts +424 -0
  154. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/sample/representative.ts +584 -0
  155. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/scan/objection.ts +224 -0
  156. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/scan/trajectory.ts +489 -0
  157. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/self-diagnostics/dispatch.ts +135 -0
  158. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/self-diagnostics/probe.ts +170 -0
  159. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/setup/detect.ts +307 -0
  160. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/setup/ensure-cli.ts +315 -0
  161. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/setup/reconfigure.ts +77 -0
  162. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/setup/verify-agents.ts +207 -0
  163. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/slicer.ts +166 -0
  164. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/source/adapters/claude-code.ts +17 -0
  165. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/source/adapters/codex.ts +11 -0
  166. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/source/adapters/langfuse.ts +17 -0
  167. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/source/adapters/local-jsonl.ts +12 -0
  168. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/source/adapters/otel.ts +12 -0
  169. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/source/index.ts +54 -0
  170. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/source/registry.ts +45 -0
  171. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/source/types.ts +86 -0
  172. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/stale-detector.ts +74 -0
  173. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/test/render-playwright.cli.ts +477 -0
  174. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/tier0/claude-code.ts +133 -0
  175. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/tier0/langfuse.ts +143 -0
  176. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/tier0-scan.ts +423 -0
  177. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/validate/completeness-check.ts +436 -0
  178. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/validate/doc-refs.ts +190 -0
  179. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/validate/finalize-gate.ts +417 -0
  180. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/validate/findings-contract.ts +628 -0
  181. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/validate/render-js-syntax.ts +188 -0
  182. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/validate/report-checklist.yaml +217 -0
  183. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/validate/trace-shape.ts +262 -0
  184. package/mutagent-diagnostics/.claude/skills/mutagent-diagnostics/scripts/validate/wave6-checklist.ts +326 -0
  185. package/mutagent-diagnostics/CLAUDE.md +41 -0
  186. package/mutagent-diagnostics/LICENSE +201 -0
  187. package/mutagent-diagnostics/NOTICE +18 -0
  188. package/mutagent-diagnostics/README.md +343 -0
  189. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/SKILL.md +548 -0
  190. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/assets/agents/audit-executor.md +169 -0
  191. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/assets/agents/dataset-builder.md +160 -0
  192. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/assets/agents/discovery.md +425 -0
  193. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/assets/agents/evaluator.md +1108 -0
  194. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/assets/brand/theme.css +213 -0
  195. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/assets/brand/wordmark.html +9 -0
  196. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/lenses/context-flow-lens.md +85 -0
  197. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/lenses/data-lens.md +47 -0
  198. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/lenses/decision-lens.md +48 -0
  199. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/lenses/methodology-critic-lens.md +53 -0
  200. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/lenses/trajectory-lens.md +44 -0
  201. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/references/build-review-interface.md +83 -0
  202. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/references/edd-loop.md +134 -0
  203. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/references/error-analysis.md +113 -0
  204. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/references/eval-audit.md +154 -0
  205. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/references/eval-stage.md +168 -0
  206. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/references/generate-synthetic-data.md +81 -0
  207. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/references/grounded-adjudication.md +221 -0
  208. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/references/memory-format.md +65 -0
  209. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/references/methodology.md +201 -0
  210. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/references/operation-inventory.md +197 -0
  211. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/references/validate-evaluator.md +125 -0
  212. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/references/workflows/orchestrator-protocol.md +300 -0
  213. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/references/write-judge-prompt.md +123 -0
  214. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/schemas/behavior-tree.schema.yaml +73 -0
  215. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/schemas/dataset.schema.yaml +66 -0
  216. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/schemas/edd-change-request.schema.yaml +114 -0
  217. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/schemas/eval-matrix.schema.yaml +74 -0
  218. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/schemas/flow-graph.schema.yaml +69 -0
  219. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/schemas/flow-profile.schema.yaml +49 -0
  220. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/schemas/methodology-review.schema.yaml +40 -0
  221. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/schemas/scorecard.schema.yaml +85 -0
  222. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/agent-dispatch.ts +0 -0
  223. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/aggregate-discover.ts +543 -0
  224. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/artifact-paths.ts +115 -0
  225. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/assemble-scorecard.ts +172 -0
  226. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/build-dataset.ts +186 -0
  227. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/build-evals.ts +93 -0
  228. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/build-review-ui.ts +393 -0
  229. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/check-method-router.ts +170 -0
  230. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/cli/aggregate.ts +112 -0
  231. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/cli/audit-run.ts +182 -0
  232. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/cli/doctor.ts +211 -0
  233. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/cli/dogfood.ts +133 -0
  234. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/cli/init.ts +601 -0
  235. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/cli/methodology-review.ts +122 -0
  236. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/cli/prep.ts +295 -0
  237. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/cli/profile-subject.ts +165 -0
  238. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/cli/run.sh +56 -0
  239. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/cli/variance-check.ts +105 -0
  240. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/code-eval.ts +248 -0
  241. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/code-quality-verdict.ts +285 -0
  242. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/codegen-evals.ts +173 -0
  243. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/cold-start-project.ts +151 -0
  244. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/cold-start-sampler.ts +267 -0
  245. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/config/load.ts +343 -0
  246. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/config/schema.ts +380 -0
  247. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/contracts/agentspec-evals.ts +85 -0
  248. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/contracts/dataset.ts +149 -0
  249. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/contracts/eval-engine.ts +118 -0
  250. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/contracts/eval-matrix.ts +577 -0
  251. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/contracts/eval-types.ts +1074 -0
  252. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/contracts/flow-graph.ts +194 -0
  253. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/contracts/types.ts +303 -0
  254. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/contracts/validation.ts +193 -0
  255. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/derive-dataset.ts +152 -0
  256. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/determine-outcome.ts +219 -0
  257. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/diff-discriminate.ts +160 -0
  258. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/discover-criteria.ts +348 -0
  259. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/edd/change-request.ts +232 -0
  260. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/edd/edd-types.ts +210 -0
  261. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/edd/variance-gate.ts +186 -0
  262. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/emit-completeness.ts +111 -0
  263. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/eval-engine.ts +160 -0
  264. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/evaluate.ts +333 -0
  265. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/flow-graph.ts +230 -0
  266. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/judge-prompt-template.ts +253 -0
  267. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/judge-provider.ts +135 -0
  268. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/lint-grounding.ts +229 -0
  269. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/lint-uniformity.ts +168 -0
  270. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/living-suite.ts +109 -0
  271. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/load-bundle.ts +203 -0
  272. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/load-profile-vocab.ts +64 -0
  273. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/load-profile.ts +106 -0
  274. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/mask.ts +138 -0
  275. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/materialize-dataset.ts +113 -0
  276. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/matrix-judge.ts +750 -0
  277. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/memory/append.ts +215 -0
  278. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/memory/read.ts +168 -0
  279. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/persist-eval-criteria.ts +232 -0
  280. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/prep-tasks.ts +125 -0
  281. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/profile-subject.ts +310 -0
  282. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/publish-report.ts +131 -0
  283. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/read-unitf-traces.ts +81 -0
  284. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/render-build-cards.ts +195 -0
  285. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/render-discover-report.ts +1640 -0
  286. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/render-eval-report.ts +3838 -0
  287. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/render-report.ts +212 -0
  288. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/resolve-credential.ts +110 -0
  289. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/resolve-ref.ts +98 -0
  290. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/result-verify.ts +129 -0
  291. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/route-failures.ts +330 -0
  292. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/run-deterministic.ts +367 -0
  293. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/run-evaluate.ts +719 -0
  294. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/run-judge.ts +155 -0
  295. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/run-pipeline.ts +175 -0
  296. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/sample-traces.ts +210 -0
  297. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/self-audit.ts +387 -0
  298. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/source-map.ts +106 -0
  299. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/subject-profile.ts +134 -0
  300. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/substrate.ts +162 -0
  301. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/sync-eval-criteria.ts +244 -0
  302. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/ui-slots.ts +119 -0
  303. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/unitf-to-evaltrace.ts +284 -0
  304. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/validate-judge.ts +358 -0
  305. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/scripts/variance-compare.ts +177 -0
  306. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/subjects/mutagent-diagnostics/behavior-tree.yaml +140 -0
  307. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/subjects/mutagent-diagnostics/eval-matrix.yaml +1270 -0
  308. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/subjects/mutagent-diagnostics/methodology-review.yaml +105 -0
  309. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/workflows/audit.workflow.js +82 -0
  310. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/workflows/data-leak.workflow.js +236 -0
  311. package/mutagent-evaluator/.claude/skills/mutagent-evaluator/workflows/variance.workflow.js +163 -0
  312. package/mutagent-evaluator/CLAUDE.md +45 -0
  313. package/mutagent-evaluator/LICENSE +201 -0
  314. package/mutagent-evaluator/NOTICE +23 -0
  315. package/mutagent-evaluator/README.md +88 -0
  316. package/mutagent-optimize/.claude/skills/mutagent-optimize/SKILL.md +287 -0
  317. package/mutagent-optimize/.claude/skills/mutagent-optimize/scripts/contracts/amend-request.ts +503 -0
  318. package/mutagent-optimize/.claude/skills/mutagent-optimize/scripts/improve-loop-run.ts +304 -0
  319. package/mutagent-optimize/.claude/skills/mutagent-optimize/scripts/loop-state-cli.ts +300 -0
  320. package/mutagent-optimize/.claude/skills/mutagent-optimize/scripts/loop-state.ts +440 -0
  321. package/mutagent-optimize/CLAUDE.md +49 -0
  322. package/mutagent-optimize/README.md +26 -0
  323. package/mutagent-orchestrator/CLAUDE.md +102 -0
  324. package/mutagent-orchestrator/README.md +20 -0
  325. package/mutagent-orchestrator/assets/agents/discovery.md +425 -0
  326. package/mutagent-orchestrator/assets/agents/dogfood-monitor.md +266 -0
  327. package/mutagent-orchestrator/assets/agents/monitor.md +258 -0
  328. package/mutagent-orchestrator/orchestrator.md +782 -0
  329. package/mutagent-orchestrator/references/MONITORING.md +209 -0
  330. package/mutagent-orchestrator/references/config-fields.md +132 -0
  331. package/mutagent-orchestrator/references/config-migration.md +132 -0
  332. package/mutagent-orchestrator/references/index-registry.md +92 -0
  333. package/mutagent-orchestrator/routing.yaml +391 -0
  334. package/mutagent-orchestrator/scripts/config-schema.ts +1010 -0
  335. package/mutagent-orchestrator/scripts/dispatch.ts +439 -0
  336. package/mutagent-orchestrator/scripts/dogfood/extract-feedback.ts +203 -0
  337. package/mutagent-orchestrator/scripts/dogfood/reconstruct-trajectory.ts +327 -0
  338. package/mutagent-orchestrator/scripts/dogfood/render-dogfood-report.ts +347 -0
  339. package/mutagent-orchestrator/scripts/dogfood/resolve-subagents.ts +160 -0
  340. package/mutagent-orchestrator/scripts/dogfood/run-report.ts +264 -0
  341. package/mutagent-orchestrator/scripts/dogfood/slack-thread.ts +106 -0
  342. package/mutagent-orchestrator/scripts/dogfood/types.ts +257 -0
  343. package/mutagent-orchestrator/scripts/eval-routing.ts +753 -0
  344. package/mutagent-orchestrator/scripts/gate.ts +219 -0
  345. package/mutagent-orchestrator/scripts/handover-contract.ts +362 -0
  346. package/mutagent-orchestrator/scripts/index/build-index.ts +351 -0
  347. package/mutagent-orchestrator/scripts/index/render-index.ts +110 -0
  348. package/mutagent-orchestrator/scripts/monitor/slack-notify.ts +111 -0
  349. package/mutagent-orchestrator/scripts/monitor/triggers.ts +162 -0
  350. package/mutagent-orchestrator/scripts/onboarding-check.ts +369 -0
  351. package/mutagent-orchestrator/scripts/render-roster.ts +308 -0
  352. package/mutagent-orchestrator/scripts/resolve-credential.ts +185 -0
  353. package/mutagent-orchestrator/scripts/resolve-paths.ts +114 -0
  354. package/mutagent-orchestrator/scripts/slack/format.ts +63 -0
  355. package/mutagent-orchestrator/scripts/slack/post.ts +115 -0
  356. package/mutagent-orchestrator/scripts/sync-index.ts +311 -0
  357. package/package.json +64 -0
package/LICENSE ADDED
@@ -0,0 +1,201 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to the Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by the Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding any notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. Please also get an in-depth
186
+ understanding of how to apply the Apache License by reading
187
+ the FAQ at http://www.apache.org/foundation/license-faq.html
188
+
189
+ Copyright 2025-2026 MutagenT
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
package/NOTICE ADDED
@@ -0,0 +1,22 @@
1
+ @mutagent/helix
2
+ Copyright 2026 MutagenT
3
+
4
+ This product is licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this product except in compliance with the License. You may
6
+ obtain a copy of the License in the accompanying LICENSE file or at:
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software distributed
11
+ under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
12
+ CONDITIONS OF ANY KIND, either express or implied. See the License for the
13
+ specific language governing permissions and limitations under the License.
14
+
15
+ ----------------------------------------------------------------------------
16
+
17
+ @mutagent/helix is the ADL bundle: it ships the Helix orchestrator (the
18
+ Agentic Development Lifecycle conductor) together with the lifecycle-stage
19
+ skills it sequences — @mutagent/agentspec (SPEC), @mutagent/diagnostics
20
+ (DIAGNOSE), and @mutagent/evaluator (EVALUATE). Each of those skills is also
21
+ published independently under its own name; the copies bundled here carry the
22
+ same Apache-2.0 License.
package/README.md ADDED
@@ -0,0 +1,209 @@
1
+ # 🧬 @mutagent/helix
2
+
3
+ > **The MutagenT Agentic Development Lifecycle (ADL) bundle.** One install gives you **Helix** — a
4
+ > natural-language conductor — plus the lifecycle-stage skills it sequences: **spec → build →
5
+ > evaluate → diagnose → improve**. **Standalone** — the bundle carries its own context.
6
+
7
+ ---
8
+
9
+ ## Install
10
+
11
+ The whole system ships as one npm package — **`@mutagent/helix`** — the ADL bundle (the Helix
12
+ orchestrator + the lifecycle-stage skills it conducts):
13
+
14
+ ```bash
15
+ pnpx @mutagent/helix init # installs Helix + agentspec · builder · diagnostics · evaluator
16
+ # into <your project>/.claude, links CLAUDE.md / AGENTS.md
17
+ pnpx @mutagent/helix init --global # ... or into ~/.claude
18
+ pnpx @mutagent/helix doctor # report what's installed
19
+ ```
20
+
21
+ Then open your coding agent and boot the conductor:
22
+
23
+ ```
24
+ claude → *mutagent (or /mutagent-helix )
25
+ ```
26
+
27
+ Each lifecycle skill is **also** designed to publish independently if you want just one stage:
28
+ `@mutagent/diagnostics` (live on npm) · `@mutagent/evaluator` (publish wired, not yet released) ·
29
+ `@mutagent/agentspec` and `@mutagent/builder` (publish paths not yet wired). Release mechanics:
30
+ `RELEASING.md`.
31
+
32
+ ---
33
+
34
+ ## ① What the system is
35
+
36
+ MutagenT covers the **entire** lifecycle of an AI agent as **one flexible DAG** — you can enter at any
37
+ stage, and the conductor routes onward from there. Each stage is owned by a self-contained skill that
38
+ ships and runs independently; **Helix** is the natural-language router that sequences them and
39
+ adjudicates the gates between stages.
40
+
41
+ | Stage | Owner | What happens |
42
+ |---|---|---|
43
+ | **① SPEC** | operator | Define the agent: its responsibilities, tools, integrations, and where it lives. |
44
+ | **② BUILD** | **Builder** | Implement a validated `agentspec.yaml` into the chosen framework/harness; resync drift with `*sync-spec`. |
45
+ | **③ EVALUATE** ★ | **Evaluator** | Decide success/failure from real traces; emit a gated verdict. *The v1 focus.* |
46
+ | **④ DIAGNOSE** | **Diagnostics** | Root-cause the failures on real evidence; rank the remedies. |
47
+ | **⑤ IMPROVE** | gated apply ↻ | Apply approved remedies, then loop back to BUILD to re-validate. |
48
+
49
+ Two principles hold the loop together:
50
+
51
+ - **Judge, never fix.** The Evaluator only decides whether something works — failures it finds are
52
+ *routed* to Diagnostics, which proposes the fixes that IMPROVE applies. Every change is re-built and
53
+ re-evaluated before it counts.
54
+ - **Explicit and gated.** No stage auto-advances; every apply (a code change, a platform update) is
55
+ approval-gated. The operator stays in control.
56
+
57
+ ---
58
+
59
+ ## ② The Evaluator — from real traces to a trustworthy eval suite
60
+
61
+ The Evaluator turns a subject (a skill or agent **plus its real production traces**) into an eval suite
62
+ you can trust. It flows as a pipeline:
63
+
64
+ ```
65
+ discover ──▶ judge ──▶ validate ──▶ human review ──▶ dataset
66
+ ```
67
+
68
+ 1. **Discover** — mine **binary, actionable** evaluation criteria directly from real agent traces
69
+ (it deep-reads each trace to decide success/failure, even when nothing was marked by a human).
70
+ 2. **Judge** — score both the **whole trajectory** and **each criterion**, producing a severity-gated
71
+ GATE verdict.
72
+ 3. **Validate** — measure the **judge's own accuracy** against human labels (true-positive /
73
+ true-negative rates, bias-corrected) — because a consistent judge can be consistently wrong.
74
+ 4. **Human review** — capture human labels in the loop, grounding the judge.
75
+ 5. **Dataset** — **synthesize** coverage cases and **distill** a held-out regression set, kept disjoint
76
+ from what was mined, so quality holds over time.
77
+
78
+ **Dispatch pattern — mass-parallel, host-runtime.** The Evaluator runs a `PREP → DISPATCH → AGGREGATE`
79
+ fan-out: the parent prepares the work, then dispatches **many independent subagents at once** — one
80
+ judge per criterion *and* one per whole trajectory, plus dataset generators — and aggregates their
81
+ results into a single gated verdict. Every subagent **reasons on the host runtime (no external provider
82
+ key)**, pinned to one model at **temperature 0** so verdicts are deterministic and reproducible. Judges
83
+ never see each other's answers; the parent is the only place results combine.
84
+
85
+ > The Evaluator is a **judge only** — it never edits the subject. Failures route to Diagnostics.
86
+
87
+ ---
88
+
89
+ ## ③ Diagnostics — failures to an evidence-grounded fix spec
90
+
91
+ ```
92
+ ingest traces ──▶ analyze (RCA) ──▶ evidence-grounded findings ──▶ handover spec
93
+ ```
94
+
95
+ Diagnostics ingests production agent traces, runs parallel root-cause analysis with causal-chain
96
+ breakdowns, and produces **ranked, evidence-grounded findings** — every claim tied to actual trace
97
+ evidence. The output is a handover spec whose remedies are applied through the gated **IMPROVE** stage.
98
+
99
+ **Dispatch pattern — parallel analyzers.** Diagnostics fans **root-cause analyzers out in parallel**
100
+ over slices of the trace set; each grounds its findings in actual evidence and returns independently,
101
+ and the parent aggregates and ranks them into one handover spec. Same host-runtime dispatch model as
102
+ the Evaluator — concurrent subagents, no external provider key, results combined only at the parent.
103
+
104
+ ---
105
+
106
+ ## ④ The Evaluator ↔ Diagnostics boundary
107
+
108
+ The sharpest line in the system is between **deciding** and **fixing** — and it is deliberate.
109
+ The Evaluator decides; Diagnostics remediates; nothing crosses except a verdict and its evidence.
110
+
111
+ ```
112
+ EVALUATOR · judge, never fix │ handoff │ DIAGNOSTICS · diagnose & propose
113
+ ───────────────────────────────── │ ───────▶ │ ──────────────────────────────────
114
+ discover → judge → validate │ verdict │ ingest → RCA (causal chains)
115
+ → human review → datasets │ + failing│ → ranked, evidence-grounded remedies
116
+ decides PASS/FAIL · gated verdict │ criteria │ → handover spec
117
+ NEVER edits the subject │ + cited │ gated IMPROVE APPLIES → loop to BUILD
118
+ │ evidence │ → re-evaluate
119
+ ```
120
+
121
+ - **Evaluator owns the verdict.** It decides pass/fail and emits a severity-gated verdict — and stops
122
+ there. It never touches the subject's code.
123
+ - **The boundary is the handoff.** Failures are not fixed where they are found; the **verdict + the
124
+ failing criteria + the cited trace evidence** are *routed* across to Diagnostics.
125
+ - **Diagnostics owns remediation.** It root-causes the routed failures, ranks evidence-grounded
126
+ remedies, and writes a handover spec; the **gated IMPROVE** stage applies them, then the loop returns
127
+ to BUILD and re-evaluates.
128
+ - **Why the split.** A judge that also fixes can rationalize its own verdicts. Keeping decision
129
+ independent of remediation is what makes the verdict trustworthy.
130
+
131
+ ---
132
+
133
+ ## ⑤ Parts & commands
134
+
135
+ The system is five parts: a conductor and four standalone skills, each owning a lifecycle stage.
136
+ You drive everything in natural language — the conductor maps it to the `*command` surface below.
137
+
138
+ | Part | Stage | Commands | What it does |
139
+ |---|---|---|---|
140
+ | **Helix** · `mutagent-orchestrator` | conductor | `*sync` · `*status` · `*onboard` · `*help` | The NL router. Indexes the system, tracks where you are in the loop, sequences the stages, and adjudicates the gates between them. |
141
+ | **AgentSpec** · `mutagent-agentspec` | SPEC | `*spec` · `*validate-spec` · `*sync-spec` | Guided requirements interview → a portable, validated `agentspec.yaml` (the agent's Definition). `*sync-spec` reconciles the spec against a target (cold construct or warm drift), delegating the code-read to builder's `ai-architect`. |
142
+ | **Builder** · `mutagent-builder` | BUILD | `*build` | Implement the spec into the chosen target, run TDD + coverage. Provides the `ai-architect #sync-spec` reader that AgentSpec's `*sync-spec` delegates to (and that `*build` reuses on drift). |
143
+ | **Evaluator** · `mutagent-evaluator` ★ | EVALUATE / AUDIT | `*discover` · `*evaluate` · `*audit` · `*validate` · `*review` · `*build-dataset` · `*derive-dataset` | The eval-development engine: mine criteria from real traces → judge → measure the judge's accuracy → capture human labels → synthesize & distill datasets. **Judge only — never fixes.** |
144
+ | **Diagnostics** · `mutagent-diagnostics` | DIAGNOSE / IMPROVE | `*diagnose` | Root-cause routed failures on real evidence → ranked remedies → the gated IMPROVE apply. |
145
+
146
+ Boot the conductor from this directory (`*mutagent`); it renders the dashboard and waits for a
147
+ `*command`. The deeper map of stages, decisions, and status lives in
148
+ `.memory/features/adl-v3/adl-prd-final.md`.
149
+
150
+ ---
151
+
152
+ ## ⑥ How it runs — the dispatch DAG
153
+
154
+ The lifecycle is a directed graph: work flows forward, failures route *sideways* to Diagnostics, and
155
+ the loop returns to BUILD. The dotted edges are the **mass-parallel dispatch** — both the Evaluator and
156
+ Diagnostics fan work out across many subagents at once, all reasoning on the host runtime (no external
157
+ provider key, pinned model at temperature 0), aggregated only at the parent.
158
+
159
+ ```mermaid
160
+ flowchart LR
161
+ SPEC(["SPEC"]) --> BUILD(["BUILD"]) --> EVAL{{"EVALUATE"}}
162
+ EVAL -->|"pass · gated verdict"| SHIP(["ship ✓"])
163
+ EVAL -->|"fail · verdict + evidence"| DIAG(["DIAGNOSE"])
164
+ DIAG --> IMPROVE(["IMPROVE · gated"]) --> BUILD
165
+ EVAL -. dispatch .-> EJ1["judge / criterion"]
166
+ EVAL -. dispatch .-> EJ2["judge / trajectory"]
167
+ EVAL -. dispatch .-> EDS["dataset gen"]
168
+ DIAG -. dispatch .-> DA1["RCA analyzer"]
169
+ DIAG -. dispatch .-> DA2["RCA analyzer"]
170
+ ```
171
+
172
+ ---
173
+
174
+ ## Status — tested & verified (current)
175
+
176
+ The system has been put through a **goal-driven verification loop**: every Evaluator command was run
177
+ end-to-end by **real subagents** against a **live production agent's traces**, and — separately — the
178
+ **quality of what each command produced** was checked by an **independent reviewer** (reviewer ≠
179
+ executor), fed the raw artifacts plus the source trace.
180
+
181
+ **Two axes, both green:**
182
+
183
+ 1. **Workflow** — does each command run end-to-end and produce its artifact? → **9 / 9 verified.**
184
+ 2. **Output quality** — is what it produced correct, grounded, and useful? → **independently validated.**
185
+
186
+ **Verified, command by command:**
187
+
188
+ | Command | Produces | Verified |
189
+ |---|---|---|
190
+ | `*discover` | binary, actionable criteria mined from a real trace | every criterion grounded in the trace — strings & counts checked verbatim; **zero fabricated** |
191
+ | `*evaluate` | per-criterion verdicts + a severity-gated GATE | all verdicts correct; whole-trace counts matched exactly; gate logic sound |
192
+ | `*build-evals` | per-criterion judge verdicts | well-formed prompts · critique-before-verdict · honest caveats · calibrated confidence |
193
+ | `*validate` | judge accuracy (TPR / TNR, bias-corrected) | math hand-verified; Rogan-Gladen correction exact; confidence interval present |
194
+ | `*review` | human-in-the-loop label UI | full annotation toolkit — pass/fail/defer · notes · autosave · export |
195
+ | `*build-dataset` | curated coverage cases | all honor the operator-curated focus; diverse + idiomatic |
196
+ | `*derive-dataset` | distilled held-out regression set | correct schema + provenance; label→outcome mapping correct |
197
+ | `*audit` | data-flow / leak / context audit | runs end-to-end |
198
+
199
+ **Output-quality headline.** Across the eval-engine outputs, the independent reviewer found
200
+ **zero ungrounded criteria and zero false verdicts** — the verdicts are not merely consistent, they are
201
+ demonstrably *right*. The loop even surfaced and confirmed a real production defect along the way.
202
+
203
+ **Current focus** — `*discover` → **eval & dataset quality verification**: mining high-quality criteria
204
+ and held-out datasets from real production traces and *proving their quality*, so every verdict built on
205
+ them can be believed.
206
+
207
+ ---
208
+
209
+ <sub>🧬 Built by the MutagenT Team · internal · standalone ADL system</sub>
@@ -0,0 +1,162 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
2
+ viewBox="0 0 920 600" width="920" height="600" role="img"
3
+ aria-label="The Agentic Development Lifecycle: spec, build, evaluate, diagnose, improve — a loop that routes back to build.">
4
+ <title>The Agentic Development Lifecycle (ADL)</title>
5
+ <desc>A five-stage cycle — SPEC, BUILD, EVALUATE, DIAGNOSE, IMPROVE — sequenced by the Helix orchestrator. A pulse of work flows clockwise around the loop; IMPROVE iterates straight back to BUILD.</desc>
6
+
7
+ <defs>
8
+ <!-- adapted from the agent-lifecycle deck: cyan (build-side) -> violet (learn-side) -->
9
+ <radialGradient id="bg" cx="50%" cy="42%" r="75%">
10
+ <stop offset="0%" stop-color="#101a30"/>
11
+ <stop offset="60%" stop-color="#0b1224"/>
12
+ <stop offset="100%" stop-color="#070b16"/>
13
+ </radialGradient>
14
+ <linearGradient id="ring" x1="0" y1="0" x2="1" y2="1">
15
+ <stop offset="0%" stop-color="#22d3ee"/>
16
+ <stop offset="45%" stop-color="#06b6d4"/>
17
+ <stop offset="75%" stop-color="#7E47D7"/>
18
+ <stop offset="100%" stop-color="#a78bfa"/>
19
+ </linearGradient>
20
+ <radialGradient id="comet" cx="50%" cy="50%" r="50%">
21
+ <stop offset="0%" stop-color="#f5f3ff"/>
22
+ <stop offset="55%" stop-color="#c4b5fd"/>
23
+ <stop offset="100%" stop-color="#7E47D7" stop-opacity="0"/>
24
+ </radialGradient>
25
+ <radialGradient id="hubFill" cx="50%" cy="40%" r="70%">
26
+ <stop offset="0%" stop-color="#1c2740"/>
27
+ <stop offset="100%" stop-color="#0d1426"/>
28
+ </radialGradient>
29
+ <filter id="soft" x="-80%" y="-80%" width="260%" height="260%">
30
+ <feGaussianBlur stdDeviation="5"/>
31
+ </filter>
32
+ <marker id="arrow" viewBox="0 0 10 10" refX="8" refY="5" markerWidth="7" markerHeight="7" orient="auto-start-reverse">
33
+ <path d="M0,0 L10,5 L0,10 z" fill="#a78bfa"/>
34
+ </marker>
35
+ <marker id="arrowC" viewBox="0 0 10 10" refX="8" refY="5" markerWidth="6.5" markerHeight="6.5" orient="auto-start-reverse">
36
+ <path d="M0,0 L10,5 L0,10 z" fill="#06b6d4"/>
37
+ </marker>
38
+
39
+ <style>
40
+ .stagename{font:700 17px 'Helvetica Neue',Arial,sans-serif;letter-spacing:.5px}
41
+ .owner{font:500 10.5px 'Helvetica Neue',Arial,sans-serif;fill:#94a3b8}
42
+ .cmd{font:600 10px 'SFMono-Regular',Consolas,monospace}
43
+ .card{fill:#0e1730;stroke-width:1.6;rx:12}
44
+ /* breathing halo behind each stage, staged to chase the comet (~9s loop) */
45
+ .halo{opacity:.12;transform-box:fill-box;transform-origin:center}
46
+ @keyframes pulse{
47
+ 0%,100%{opacity:.10;transform:scale(.92)}
48
+ 12%{opacity:.55;transform:scale(1.06)}
49
+ 30%{opacity:.10;transform:scale(.92)}
50
+ }
51
+ .h0{animation:pulse 9s ease-in-out infinite}
52
+ .h1{animation:pulse 9s ease-in-out infinite 1.8s}
53
+ .h2{animation:pulse 9s ease-in-out infinite 3.6s}
54
+ .h3{animation:pulse 9s ease-in-out infinite 5.4s}
55
+ .h4{animation:pulse 9s ease-in-out infinite 7.2s}
56
+ /* marching-ants on the iterate-back arc */
57
+ @keyframes march{to{stroke-dashoffset:-44}}
58
+ .iterate{stroke-dasharray:8 6;animation:march 1.1s linear infinite}
59
+ /* faint hub spokes shimmer */
60
+ @keyframes spoke{0%,100%{opacity:.10}50%{opacity:.30}}
61
+ .spoke{stroke:#475569;stroke-width:1;animation:spoke 4.5s ease-in-out infinite}
62
+ .ring-flow{stroke-dasharray:3 9;animation:march 2.4s linear infinite reverse}
63
+ </style>
64
+ </defs>
65
+
66
+ <rect width="920" height="600" fill="url(#bg)"/>
67
+
68
+ <!-- ===== the loop (faint guide ring through the 5 stages, clockwise) ===== -->
69
+ <path id="loop" d="M460,100 L635.9,227.8 L568.7,434.7 L351.3,434.7 L284.1,227.8 Z"
70
+ fill="none" stroke="url(#ring)" stroke-width="2.4" opacity="0.5" stroke-linejoin="round"/>
71
+ <path d="M460,100 L635.9,227.8 L568.7,434.7 L351.3,434.7 L284.1,227.8 Z"
72
+ fill="none" stroke="#a78bfa" stroke-width="2.4" opacity="0.6" stroke-linejoin="round" class="ring-flow"/>
73
+
74
+ <!-- ===== Helix hub: the NL orchestrator that routes between stages ===== -->
75
+ <g>
76
+ <line class="spoke" x1="460" y1="285" x2="460" y2="100"/>
77
+ <line class="spoke" x1="460" y1="285" x2="635.9" y2="227.8"/>
78
+ <line class="spoke" x1="460" y1="285" x2="568.7" y2="434.7"/>
79
+ <line class="spoke" x1="460" y1="285" x2="351.3" y2="434.7"/>
80
+ <line class="spoke" x1="460" y1="285" x2="284.1" y2="227.8"/>
81
+ <circle cx="460" cy="285" r="47" fill="url(#hubFill)" stroke="#334155" stroke-width="1.4"/>
82
+ <text x="460" y="281" text-anchor="middle" class="stagename" fill="#e2e8f0">HELIX</text>
83
+ <text x="460" y="298" text-anchor="middle" class="owner">NL router</text>
84
+ </g>
85
+
86
+ <!-- ===== iterate ↻ : IMPROVE loops straight back to BUILD ===== -->
87
+ <path class="iterate" d="M312,212 Q460,150 608,212"
88
+ fill="none" stroke="#a78bfa" stroke-width="2.2" marker-end="url(#arrow)"/>
89
+ <text x="460" y="162" text-anchor="middle" class="cmd" fill="#a78bfa">iterate &#8635; loop back to build</text>
90
+
91
+ <!-- ===== flowing pulse of work (clockwise around the loop) ===== -->
92
+ <circle r="13" fill="url(#comet)" filter="url(#soft)">
93
+ <animateMotion dur="9s" repeatCount="indefinite" rotate="auto">
94
+ <mpath xlink:href="#loop"/>
95
+ </animateMotion>
96
+ </circle>
97
+ <circle r="5" fill="#f5f3ff">
98
+ <animateMotion dur="9s" repeatCount="indefinite" rotate="auto">
99
+ <mpath xlink:href="#loop"/>
100
+ </animateMotion>
101
+ </circle>
102
+ <circle r="9" fill="url(#comet)" filter="url(#soft)" opacity="0.6">
103
+ <animateMotion dur="9s" begin="-3s" repeatCount="indefinite" rotate="auto">
104
+ <mpath xlink:href="#loop"/>
105
+ </animateMotion>
106
+ </circle>
107
+ <circle r="9" fill="url(#comet)" filter="url(#soft)" opacity="0.6">
108
+ <animateMotion dur="9s" begin="-6s" repeatCount="indefinite" rotate="auto">
109
+ <mpath xlink:href="#loop"/>
110
+ </animateMotion>
111
+ </circle>
112
+
113
+ <!-- ===== stage cards ===== -->
114
+ <!-- SPEC -->
115
+ <g>
116
+ <rect class="halo h0" x="380" y="68" width="160" height="64" rx="14" fill="#38bdf8"/>
117
+ <rect class="card" x="380" y="68" width="160" height="64" rx="12" stroke="#38bdf8"/>
118
+ <text x="460" y="94" text-anchor="middle" class="stagename" fill="#38bdf8">SPEC</text>
119
+ <text x="460" y="110" text-anchor="middle" class="owner">operator defines + designs</text>
120
+ <text x="460" y="124" text-anchor="middle" class="cmd" fill="#7dd3fc">*spec</text>
121
+ </g>
122
+ <!-- BUILD -->
123
+ <g>
124
+ <rect class="halo h1" x="555.9" y="195.8" width="160" height="64" rx="14" fill="#06b6d4"/>
125
+ <rect class="card" x="555.9" y="195.8" width="160" height="64" rx="12" stroke="#06b6d4"/>
126
+ <text x="635.9" y="221.8" text-anchor="middle" class="stagename" fill="#22d3ee">BUILD</text>
127
+ <text x="635.9" y="237.8" text-anchor="middle" class="owner">mutagent-skill-builder</text>
128
+ <text x="635.9" y="251.8" text-anchor="middle" class="cmd" fill="#67e8f9">*build</text>
129
+ </g>
130
+ <!-- EVALUATE -->
131
+ <g>
132
+ <rect class="halo h2" x="488.7" y="402.7" width="160" height="64" rx="14" fill="#22d3ee"/>
133
+ <rect class="card" x="488.7" y="402.7" width="160" height="64" rx="12" stroke="#22d3ee"/>
134
+ <text x="568.7" y="428.7" text-anchor="middle" class="stagename" fill="#67e8f9">EVALUATE</text>
135
+ <text x="568.7" y="444.7" text-anchor="middle" class="owner">mutagent-evaluator</text>
136
+ <text x="568.7" y="458.7" text-anchor="middle" class="cmd" fill="#a5f3fc">*evaluate &#183; *audit</text>
137
+ </g>
138
+ <!-- DIAGNOSE -->
139
+ <g>
140
+ <rect class="halo h3" x="271.3" y="402.7" width="160" height="64" rx="14" fill="#7E47D7"/>
141
+ <rect class="card" x="271.3" y="402.7" width="160" height="64" rx="12" stroke="#7E47D7"/>
142
+ <text x="351.3" y="428.7" text-anchor="middle" class="stagename" fill="#c4b5fd">DIAGNOSE</text>
143
+ <text x="351.3" y="444.7" text-anchor="middle" class="owner">mutagent-diagnostics</text>
144
+ <text x="351.3" y="458.7" text-anchor="middle" class="cmd" fill="#ddd6fe">*diagnose</text>
145
+ </g>
146
+ <!-- IMPROVE -->
147
+ <g>
148
+ <rect class="halo h4" x="204.1" y="195.8" width="160" height="64" rx="14" fill="#a78bfa"/>
149
+ <rect class="card" x="204.1" y="195.8" width="160" height="64" rx="12" stroke="#a78bfa"/>
150
+ <text x="284.1" y="221.8" text-anchor="middle" class="stagename" fill="#c4b5fd">IMPROVE</text>
151
+ <text x="284.1" y="237.8" text-anchor="middle" class="owner">gated apply &#8635;</text>
152
+ <text x="284.1" y="251.8" text-anchor="middle" class="cmd" fill="#ddd6fe">*improve</text>
153
+ </g>
154
+
155
+ <!-- ===== caption ===== -->
156
+ <text x="460" y="528" text-anchor="middle"
157
+ style="font:600 15px 'Helvetica Neue',Arial,sans-serif;letter-spacing:2px" fill="#e2e8f0">THE AGENTIC DEVELOPMENT LIFECYCLE</text>
158
+ <text x="460" y="552" text-anchor="middle"
159
+ style="font:500 12px 'SFMono-Regular',Consolas,monospace;letter-spacing:1px" fill="#64748b">spec &#9656; build &#9656; evaluate &#9656; diagnose &#9656; improve &#8635;</text>
160
+ <text x="460" y="574" text-anchor="middle"
161
+ style="font:500 11px 'Helvetica Neue',Arial,sans-serif" fill="#475569">one flexible DAG &#183; enter at any stage &#183; Helix sequences the rest</text>
162
+ </svg>