@polymorphism-tech/morph-spec 4.7.1 → 4.8.1

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 (138) hide show
  1. package/.morph/analytics/threads-log.jsonl +54 -0
  2. package/.morph/state.json +198 -0
  3. package/LICENSE +1 -2
  4. package/README.md +379 -414
  5. package/bin/morph-spec.js +57 -403
  6. package/bin/validate.js +2 -26
  7. package/claude-plugin.json +2 -2
  8. package/docs/ARCHITECTURE.md +43 -46
  9. package/docs/CHEATSHEET.md +203 -221
  10. package/docs/COMMAND-FLOWS.md +319 -289
  11. package/docs/QUICKSTART.md +2 -8
  12. package/docs/plans/2026-02-22-claude-docs-morph-alignment-analysis.md +2 -0
  13. package/docs/plans/2026-02-22-claude-settings.md +2 -0
  14. package/docs/plans/2026-02-22-morph-cc-alignment-impl.md +2 -0
  15. package/docs/plans/2026-02-22-morph-spec-next.md +2 -0
  16. package/docs/plans/2026-02-22-native-alignment-design.md +2 -0
  17. package/docs/plans/2026-02-22-native-alignment-impl.md +2 -0
  18. package/docs/plans/2026-02-22-native-enrichment-design.md +2 -0
  19. package/docs/plans/2026-02-22-native-enrichment.md +2 -0
  20. package/docs/plans/2026-02-23-ddd-architecture-refactor.md +2 -0
  21. package/docs/plans/2026-02-23-ddd-nextsteps.md +2 -0
  22. package/docs/plans/2026-02-23-infra-architect-refactor.md +2 -0
  23. package/docs/plans/2026-02-23-nextjs-code-review-design.md +2 -1
  24. package/docs/plans/2026-02-23-nextjs-code-review-impl.md +2 -0
  25. package/docs/plans/2026-02-23-nextjs-standards-design.md +2 -1
  26. package/docs/plans/2026-02-23-nextjs-standards-impl.md +2 -0
  27. package/docs/plans/2026-02-24-cli-radical-simplification.md +592 -0
  28. package/docs/plans/2026-02-24-framework-failure-points.md +125 -0
  29. package/docs/plans/2026-02-24-morph-init-design.md +337 -0
  30. package/docs/plans/2026-02-24-morph-init-impl.md +1269 -0
  31. package/docs/plans/2026-02-24-tutorial-command-design.md +71 -0
  32. package/docs/plans/2026-02-24-tutorial-command.md +298 -0
  33. package/framework/CLAUDE.md +2 -2
  34. package/framework/commands/morph-proposal.md +3 -3
  35. package/framework/hooks/README.md +11 -10
  36. package/framework/hooks/claude-code/notification/approval-reminder.js +2 -0
  37. package/framework/hooks/claude-code/post-tool-use/dispatch.js +1 -1
  38. package/framework/hooks/claude-code/pre-tool-use/protect-readonly-files.js +4 -55
  39. package/framework/hooks/claude-code/session-start/inject-morph-context.js +20 -5
  40. package/framework/hooks/claude-code/statusline.py +6 -1
  41. package/framework/hooks/claude-code/stop/validate-completion.js +1 -1
  42. package/framework/hooks/claude-code/user-prompt/enrich-prompt.js +1 -1
  43. package/framework/hooks/dev/check-sync-health.js +117 -0
  44. package/framework/hooks/dev/guard-version-numbers.js +57 -0
  45. package/framework/hooks/dev/sync-standards-registry.js +60 -0
  46. package/framework/hooks/dev/sync-template-registry.js +60 -0
  47. package/framework/hooks/dev/validate-skill-format.js +70 -0
  48. package/framework/hooks/dev/validate-standard-format.js +73 -0
  49. package/framework/hooks/shared/payload-utils.js +39 -0
  50. package/framework/hooks/shared/state-reader.js +25 -1
  51. package/framework/rules/morph-workflow.md +1 -1
  52. package/framework/skills/level-0-meta/morph-init/SKILL.md +216 -0
  53. package/framework/skills/level-0-meta/morph-replicate/SKILL.md +4 -4
  54. package/framework/skills/level-0-meta/tool-usage-guide/SKILL.md +4 -4
  55. package/framework/skills/level-0-meta/verification-before-completion/SKILL.md +1 -1
  56. package/framework/skills/level-1-workflows/phase-clarify/SKILL.md +192 -191
  57. package/framework/skills/level-1-workflows/phase-codebase-analysis/SKILL.md +181 -180
  58. package/framework/skills/level-1-workflows/phase-design/SKILL.md +339 -338
  59. package/framework/skills/level-1-workflows/phase-implement/SKILL.md +254 -253
  60. package/framework/skills/level-1-workflows/phase-setup/SKILL.md +168 -170
  61. package/framework/skills/level-1-workflows/phase-tasks/SKILL.md +284 -283
  62. package/framework/skills/level-1-workflows/phase-uiux/SKILL.md +246 -245
  63. package/framework/templates/examples/design-system-examples.md +1 -1
  64. package/framework/templates/ui/FluentDesignTheme.cs +1 -1
  65. package/framework/templates/ui/MudTheme.cs +1 -1
  66. package/framework/templates/ui/design-system.css +1 -1
  67. package/package.json +4 -2
  68. package/scripts/bump-version.js +248 -0
  69. package/scripts/install-dev-hooks.js +138 -0
  70. package/src/commands/agents/index.js +1 -2
  71. package/src/commands/index.js +13 -16
  72. package/src/commands/project/doctor.js +100 -14
  73. package/src/commands/project/index.js +7 -10
  74. package/src/commands/project/init.js +398 -555
  75. package/src/commands/project/install-plugin-cmd.js +28 -0
  76. package/src/commands/project/setup-infra-cmd.js +12 -0
  77. package/src/commands/project/tutorial.js +115 -0
  78. package/src/commands/project/update.js +22 -37
  79. package/src/commands/state/approve.js +213 -221
  80. package/src/commands/state/index.js +0 -1
  81. package/src/commands/state/state.js +337 -365
  82. package/src/commands/templates/index.js +0 -4
  83. package/src/commands/trust/trust.js +1 -93
  84. package/src/commands/utils/index.js +1 -5
  85. package/src/commands/validation/index.js +1 -5
  86. package/src/core/registry/command-registry.js +11 -285
  87. package/src/core/state/state-manager.js +5 -2
  88. package/src/lib/detectors/index.js +81 -87
  89. package/src/lib/detectors/structure-detector.js +275 -273
  90. package/src/lib/generators/recap-generator.js +232 -225
  91. package/src/lib/installers/mcp-installer.js +18 -3
  92. package/src/scripts/global-install.js +34 -0
  93. package/src/scripts/install-plugin.js +126 -0
  94. package/src/scripts/setup-infra.js +203 -0
  95. package/src/utils/agents-installer.js +10 -1
  96. package/src/utils/hooks-installer.js +70 -17
  97. package/CLAUDE.md +0 -77
  98. package/docs/claude-alignment-report.md +0 -137
  99. package/docs/examples/order-management/contracts.cs +0 -84
  100. package/docs/examples/order-management/proposal.md +0 -24
  101. package/docs/examples/order-management/spec.md +0 -162
  102. package/src/commands/feature/create-story.js +0 -362
  103. package/src/commands/feature/index.js +0 -6
  104. package/src/commands/feature/shard-spec.js +0 -225
  105. package/src/commands/feature/sprint-status.js +0 -250
  106. package/src/commands/generation/generate-onboarding.js +0 -169
  107. package/src/commands/generation/generate.js +0 -276
  108. package/src/commands/generation/index.js +0 -5
  109. package/src/commands/learning/capture-pattern.js +0 -121
  110. package/src/commands/learning/index.js +0 -5
  111. package/src/commands/learning/search-patterns.js +0 -126
  112. package/src/commands/mcp/mcp.js +0 -102
  113. package/src/commands/project/changes.js +0 -66
  114. package/src/commands/project/cost.js +0 -179
  115. package/src/commands/project/detect.js +0 -114
  116. package/src/commands/project/diff.js +0 -278
  117. package/src/commands/project/revert.js +0 -173
  118. package/src/commands/project/standards.js +0 -80
  119. package/src/commands/project/sync.js +0 -167
  120. package/src/commands/project/update-agents.js +0 -23
  121. package/src/commands/state/rollback-phase.js +0 -185
  122. package/src/commands/templates/template-customize.js +0 -87
  123. package/src/commands/templates/template-list.js +0 -114
  124. package/src/commands/templates/template-show.js +0 -129
  125. package/src/commands/templates/template-validate.js +0 -91
  126. package/src/commands/utils/troubleshoot.js +0 -222
  127. package/src/commands/validation/analyze-blazor-concurrency.js +0 -193
  128. package/src/commands/validation/lint-fluent.js +0 -352
  129. package/src/commands/validation/validate-blazor-state.js +0 -210
  130. package/src/commands/validation/validate-blazor.js +0 -156
  131. package/src/commands/validation/validate-css.js +0 -84
  132. package/src/lib/detectors/conversation-analyzer.js +0 -163
  133. package/src/lib/learning/index.js +0 -7
  134. package/src/lib/learning/learning-system.js +0 -520
  135. package/src/lib/troubleshooting/index.js +0 -8
  136. package/src/lib/troubleshooting/troubleshoot-grep.js +0 -198
  137. package/src/lib/troubleshooting/troubleshoot-index.js +0 -144
  138. package/src/llm/environment-detector.js +0 -43
@@ -0,0 +1,54 @@
1
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-24T22:06:35.647Z"}
2
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-24T22:09:05.395Z"}
3
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-24T22:09:34.058Z"}
4
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-24T22:10:07.084Z"}
5
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-24T22:15:18.023Z"}
6
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-24T22:15:44.412Z"}
7
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-24T22:16:10.337Z"}
8
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-24T22:16:35.003Z"}
9
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-24T22:17:04.321Z"}
10
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-24T22:19:38.698Z"}
11
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-24T22:20:07.023Z"}
12
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-24T22:20:34.479Z"}
13
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-24T22:26:51.799Z"}
14
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-24T22:27:20.963Z"}
15
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-24T22:27:50.476Z"}
16
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-24T22:33:51.748Z"}
17
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-24T22:34:20.337Z"}
18
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-24T22:34:47.148Z"}
19
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-24T22:37:16.746Z"}
20
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-24T22:40:41.231Z"}
21
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-24T23:30:29.456Z"}
22
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-24T23:30:58.047Z"}
23
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-24T23:31:57.457Z"}
24
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-24T23:32:25.452Z"}
25
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-24T23:33:09.878Z"}
26
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T02:16:46.545Z"}
27
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:12:16.199Z"}
28
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:12:24.630Z"}
29
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:12:34.706Z"}
30
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:12:54.838Z"}
31
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:13:03.222Z"}
32
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:13:11.063Z"}
33
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:13:27.598Z"}
34
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:13:58.680Z"}
35
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:14:06.385Z"}
36
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:14:14.243Z"}
37
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:14:23.317Z"}
38
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:14:33.083Z"}
39
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:14:41.716Z"}
40
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:20:28.006Z"}
41
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:20:36.238Z"}
42
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:20:45.145Z"}
43
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:20:54.244Z"}
44
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:21:02.538Z"}
45
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:31:29.275Z"}
46
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:33:02.852Z"}
47
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:33:12.084Z"}
48
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:33:20.248Z"}
49
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:33:28.515Z"}
50
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:33:44.159Z"}
51
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:51:09.421Z"}
52
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:51:58.137Z"}
53
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:52:13.838Z"}
54
+ {"type":"fusion_started","feature":"test-feature","data":{"count":3,"strategy":"best-of-n","agents":["fusion-agent-1","fusion-agent-2","fusion-agent-3"]},"timestamp":"2026-02-25T13:53:05.928Z"}
@@ -0,0 +1,198 @@
1
+ {
2
+ "version": "4.0.0",
3
+ "features": {
4
+ "override-feature": {
5
+ "status": "in_progress",
6
+ "phase": "implement",
7
+ "tasks": {
8
+ "total": 20,
9
+ "completed": 30
10
+ },
11
+ "checkpoints": [
12
+ {
13
+ "passed": true
14
+ },
15
+ {
16
+ "passed": true
17
+ },
18
+ {
19
+ "passed": false
20
+ },
21
+ {
22
+ "passed": false
23
+ },
24
+ {
25
+ "passed": false
26
+ },
27
+ {
28
+ "passed": false
29
+ },
30
+ {
31
+ "passed": false
32
+ },
33
+ {
34
+ "passed": false
35
+ },
36
+ {
37
+ "passed": false
38
+ },
39
+ {
40
+ "passed": false
41
+ }
42
+ ],
43
+ "trustConfig": {}
44
+ }
45
+ },
46
+ "threads": {
47
+ "577ec36d-fb8e-472f-acde-61b011b2f51e": {
48
+ "id": "577ec36d-fb8e-472f-acde-61b011b2f51e",
49
+ "feature": "test-feature",
50
+ "type": "base",
51
+ "agent": "agent-1",
52
+ "mission": "",
53
+ "status": "pending",
54
+ "createdAt": "2026-02-25T13:33:44.195Z",
55
+ "startedAt": null,
56
+ "completedAt": null,
57
+ "duration": null,
58
+ "events": [],
59
+ "metrics": {
60
+ "toolCalls": 0,
61
+ "tokensUsed": 0,
62
+ "checkpointsPassed": 0,
63
+ "checkpointsFailed": 0
64
+ },
65
+ "meta": {}
66
+ },
67
+ "7b496b57-6fdf-493d-8ec2-7e459f44159f": {
68
+ "id": "7b496b57-6fdf-493d-8ec2-7e459f44159f",
69
+ "feature": "test-feature",
70
+ "type": "parallel",
71
+ "agent": "agent-2",
72
+ "mission": "",
73
+ "status": "running",
74
+ "createdAt": "2026-02-25T13:33:44.197Z",
75
+ "startedAt": "2026-02-25T13:33:44.197Z",
76
+ "completedAt": null,
77
+ "duration": null,
78
+ "events": [],
79
+ "metrics": {
80
+ "toolCalls": 0,
81
+ "tokensUsed": 0,
82
+ "checkpointsPassed": 0,
83
+ "checkpointsFailed": 0
84
+ },
85
+ "meta": {}
86
+ },
87
+ "2edfec89-4771-4156-a423-135eb248adfe": {
88
+ "id": "2edfec89-4771-4156-a423-135eb248adfe",
89
+ "feature": "test-feature",
90
+ "type": "base",
91
+ "agent": "agent-3",
92
+ "mission": "",
93
+ "status": "completed",
94
+ "createdAt": "2026-02-25T13:33:44.199Z",
95
+ "startedAt": "2026-02-25T13:33:44.200Z",
96
+ "completedAt": "2026-02-25T13:33:44.200Z",
97
+ "duration": 0,
98
+ "events": [],
99
+ "metrics": {
100
+ "toolCalls": 0,
101
+ "tokensUsed": 0,
102
+ "checkpointsPassed": 0,
103
+ "checkpointsFailed": 0
104
+ },
105
+ "meta": {},
106
+ "result": {
107
+ "filesCreated": [
108
+ "Service.cs",
109
+ "Controller.cs"
110
+ ],
111
+ "tasksCompleted": 3
112
+ }
113
+ },
114
+ "82d365e2-a865-40c4-b726-05cf5387291e": {
115
+ "id": "82d365e2-a865-40c4-b726-05cf5387291e",
116
+ "feature": "test-feature",
117
+ "type": "parallel",
118
+ "agent": "agent-4",
119
+ "mission": "",
120
+ "status": "killed",
121
+ "createdAt": "2026-02-25T13:33:44.202Z",
122
+ "startedAt": "2026-02-25T13:33:44.202Z",
123
+ "completedAt": "2026-02-25T13:33:44.203Z",
124
+ "duration": 0,
125
+ "events": [],
126
+ "metrics": {
127
+ "toolCalls": 0,
128
+ "tokensUsed": 0,
129
+ "checkpointsPassed": 0,
130
+ "checkpointsFailed": 0
131
+ },
132
+ "meta": {}
133
+ },
134
+ "824a1526-0141-4c41-8fd3-17241ce2d5cc": {
135
+ "id": "824a1526-0141-4c41-8fd3-17241ce2d5cc",
136
+ "feature": "test-feature",
137
+ "type": "parallel",
138
+ "agent": "agent-a",
139
+ "mission": "",
140
+ "status": "pending",
141
+ "createdAt": "2026-02-25T13:33:44.207Z",
142
+ "startedAt": null,
143
+ "completedAt": null,
144
+ "duration": null,
145
+ "events": [],
146
+ "metrics": {
147
+ "toolCalls": 0,
148
+ "tokensUsed": 0,
149
+ "checkpointsPassed": 0,
150
+ "checkpointsFailed": 0
151
+ },
152
+ "meta": {}
153
+ },
154
+ "52a8d223-3cca-466d-ba02-7f1615a55074": {
155
+ "id": "52a8d223-3cca-466d-ba02-7f1615a55074",
156
+ "feature": "test-feature",
157
+ "type": "parallel",
158
+ "agent": "agent-b",
159
+ "mission": "",
160
+ "status": "pending",
161
+ "createdAt": "2026-02-25T13:33:44.207Z",
162
+ "startedAt": null,
163
+ "completedAt": null,
164
+ "duration": null,
165
+ "events": [],
166
+ "metrics": {
167
+ "toolCalls": 0,
168
+ "tokensUsed": 0,
169
+ "checkpointsPassed": 0,
170
+ "checkpointsFailed": 0
171
+ },
172
+ "meta": {}
173
+ },
174
+ "b5c85462-f7a8-4179-b97e-adee1e2d3488": {
175
+ "id": "b5c85462-f7a8-4179-b97e-adee1e2d3488",
176
+ "feature": "test-feature",
177
+ "type": "parallel",
178
+ "agent": "agent-c",
179
+ "mission": "",
180
+ "status": "pending",
181
+ "createdAt": "2026-02-25T13:33:44.208Z",
182
+ "startedAt": null,
183
+ "completedAt": null,
184
+ "duration": null,
185
+ "events": [],
186
+ "metrics": {
187
+ "toolCalls": 0,
188
+ "tokensUsed": 0,
189
+ "checkpointsPassed": 0,
190
+ "checkpointsFailed": 0
191
+ },
192
+ "meta": {}
193
+ }
194
+ },
195
+ "metadata": {
196
+ "lastUpdated": "2026-02-25T13:33:44.208Z"
197
+ }
198
+ }
package/LICENSE CHANGED
@@ -68,5 +68,4 @@ Website: https://polymorphism.com.br
68
68
 
69
69
  ---
70
70
 
71
- MORPH-SPEC v2.0.0
72
- by Polymorphism Tech
71
+ MORPH-SPEC by Polymorphism Tech