@polymorphism-tech/morph-spec 4.8.11 → 4.8.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.
- package/README.md +379 -379
- package/bin/{task-manager.cjs → task-manager.js} +47 -158
- package/claude-plugin.json +14 -14
- package/docs/CHEATSHEET.md +203 -203
- package/docs/QUICKSTART.md +1 -1
- package/framework/agents.json +111 -24
- package/framework/hooks/README.md +202 -202
- package/framework/hooks/claude-code/pre-tool-use/enforce-phase-writes.js +6 -0
- package/framework/hooks/claude-code/session-start/inject-morph-context.js +7 -0
- package/framework/hooks/claude-code/statusline.py +6 -0
- package/framework/hooks/claude-code/stop/validate-completion.js +21 -2
- package/framework/hooks/dev/guard-version-numbers.js +1 -1
- package/framework/hooks/shared/phase-utils.js +3 -0
- package/framework/skills/level-0-meta/tool-usage-guide/SKILL.md +55 -0
- package/framework/skills/level-1-workflows/phase-clarify/SKILL.md +1 -1
- package/framework/skills/level-1-workflows/phase-codebase-analysis/SKILL.md +1 -1
- package/framework/skills/level-1-workflows/phase-design/SKILL.md +57 -1
- package/framework/skills/level-1-workflows/phase-implement/SKILL.md +23 -1
- package/framework/skills/level-1-workflows/phase-setup/SKILL.md +1 -1
- package/framework/skills/level-1-workflows/phase-tasks/SKILL.md +25 -2
- package/framework/skills/level-1-workflows/phase-uiux/SKILL.md +1 -1
- package/package.json +87 -87
- package/src/commands/project/update.js +12 -2
- package/src/commands/state/advance-phase.js +32 -13
- package/src/commands/tasks/task.js +2 -2
- package/src/core/paths/output-schema.js +1 -0
- package/src/lib/detectors/design-system-detector.js +5 -4
- package/src/lib/tasks/task-parser.js +94 -0
- package/src/lib/validators/content/content-validator.js +34 -106
package/framework/agents.json
CHANGED
|
@@ -80,7 +80,11 @@
|
|
|
80
80
|
"collaborates_with": [
|
|
81
81
|
"dotnet-senior"
|
|
82
82
|
],
|
|
83
|
-
"team_role": "orchestrator"
|
|
83
|
+
"team_role": "orchestrator",
|
|
84
|
+
"active_phases": [
|
|
85
|
+
"design",
|
|
86
|
+
"tasks"
|
|
87
|
+
]
|
|
84
88
|
},
|
|
85
89
|
"standards": [
|
|
86
90
|
"core/coding.md",
|
|
@@ -269,7 +273,11 @@
|
|
|
269
273
|
"devops-engineer",
|
|
270
274
|
"container-specialist"
|
|
271
275
|
],
|
|
272
|
-
"team_role": "specialist"
|
|
276
|
+
"team_role": "specialist",
|
|
277
|
+
"active_phases": [
|
|
278
|
+
"design",
|
|
279
|
+
"implement"
|
|
280
|
+
]
|
|
273
281
|
},
|
|
274
282
|
"standards": [
|
|
275
283
|
"core/coding.md",
|
|
@@ -373,7 +381,11 @@
|
|
|
373
381
|
"api-designer",
|
|
374
382
|
"nosql-cache-expert"
|
|
375
383
|
],
|
|
376
|
-
"team_role": "specialist"
|
|
384
|
+
"team_role": "specialist",
|
|
385
|
+
"active_phases": [
|
|
386
|
+
"design",
|
|
387
|
+
"implement"
|
|
388
|
+
]
|
|
377
389
|
},
|
|
378
390
|
"standards": [
|
|
379
391
|
"core/coding.md",
|
|
@@ -422,7 +434,11 @@
|
|
|
422
434
|
"api-designer",
|
|
423
435
|
"infra-architect"
|
|
424
436
|
],
|
|
425
|
-
"team_role": "specialist"
|
|
437
|
+
"team_role": "specialist",
|
|
438
|
+
"active_phases": [
|
|
439
|
+
"design",
|
|
440
|
+
"implement"
|
|
441
|
+
]
|
|
426
442
|
},
|
|
427
443
|
"standards": [
|
|
428
444
|
"core/coding.md",
|
|
@@ -468,7 +484,11 @@
|
|
|
468
484
|
"blazor-builder",
|
|
469
485
|
"nextjs-expert"
|
|
470
486
|
],
|
|
471
|
-
"team_role": "specialist"
|
|
487
|
+
"team_role": "specialist",
|
|
488
|
+
"active_phases": [
|
|
489
|
+
"design",
|
|
490
|
+
"implement"
|
|
491
|
+
]
|
|
472
492
|
},
|
|
473
493
|
"standards": [
|
|
474
494
|
"core/coding.md",
|
|
@@ -510,7 +530,11 @@
|
|
|
510
530
|
"ef-modeler",
|
|
511
531
|
"infra-architect"
|
|
512
532
|
],
|
|
513
|
-
"team_role": "specialist"
|
|
533
|
+
"team_role": "specialist",
|
|
534
|
+
"active_phases": [
|
|
535
|
+
"design",
|
|
536
|
+
"implement"
|
|
537
|
+
]
|
|
514
538
|
},
|
|
515
539
|
"standards": [
|
|
516
540
|
"core/coding.md",
|
|
@@ -611,7 +635,10 @@
|
|
|
611
635
|
"ef-modeler",
|
|
612
636
|
"infra-architect"
|
|
613
637
|
],
|
|
614
|
-
"team_role": "specialist"
|
|
638
|
+
"team_role": "specialist",
|
|
639
|
+
"active_phases": [
|
|
640
|
+
"implement"
|
|
641
|
+
]
|
|
615
642
|
},
|
|
616
643
|
"standards": [
|
|
617
644
|
"core/coding.md",
|
|
@@ -655,7 +682,11 @@
|
|
|
655
682
|
"dotnet-senior",
|
|
656
683
|
"infra-architect"
|
|
657
684
|
],
|
|
658
|
-
"team_role": "specialist"
|
|
685
|
+
"team_role": "specialist",
|
|
686
|
+
"active_phases": [
|
|
687
|
+
"design",
|
|
688
|
+
"implement"
|
|
689
|
+
]
|
|
659
690
|
},
|
|
660
691
|
"standards": [
|
|
661
692
|
"core/coding.md",
|
|
@@ -700,7 +731,11 @@
|
|
|
700
731
|
"vector-search-expert",
|
|
701
732
|
"ef-modeler"
|
|
702
733
|
],
|
|
703
|
-
"team_role": "specialist"
|
|
734
|
+
"team_role": "specialist",
|
|
735
|
+
"active_phases": [
|
|
736
|
+
"design",
|
|
737
|
+
"implement"
|
|
738
|
+
]
|
|
704
739
|
},
|
|
705
740
|
"standards": [
|
|
706
741
|
"core/coding.md",
|
|
@@ -741,7 +776,11 @@
|
|
|
741
776
|
"supabase-expert",
|
|
742
777
|
"context-optimizer"
|
|
743
778
|
],
|
|
744
|
-
"team_role": "specialist"
|
|
779
|
+
"team_role": "specialist",
|
|
780
|
+
"active_phases": [
|
|
781
|
+
"design",
|
|
782
|
+
"implement"
|
|
783
|
+
]
|
|
745
784
|
},
|
|
746
785
|
"standards": [
|
|
747
786
|
"core/coding.md",
|
|
@@ -779,7 +818,10 @@
|
|
|
779
818
|
"ms-agent-expert",
|
|
780
819
|
"vector-search-expert"
|
|
781
820
|
],
|
|
782
|
-
"team_role": "specialist"
|
|
821
|
+
"team_role": "specialist",
|
|
822
|
+
"active_phases": [
|
|
823
|
+
"implement"
|
|
824
|
+
]
|
|
783
825
|
},
|
|
784
826
|
"standards": [
|
|
785
827
|
"core/coding.md",
|
|
@@ -820,7 +862,11 @@
|
|
|
820
862
|
"blazor-builder",
|
|
821
863
|
"nextjs-expert"
|
|
822
864
|
],
|
|
823
|
-
"team_role": "specialist"
|
|
865
|
+
"team_role": "specialist",
|
|
866
|
+
"active_phases": [
|
|
867
|
+
"design",
|
|
868
|
+
"implement"
|
|
869
|
+
]
|
|
824
870
|
},
|
|
825
871
|
"standards": [
|
|
826
872
|
"core/coding.md",
|
|
@@ -867,7 +913,11 @@
|
|
|
867
913
|
"nextjs-expert",
|
|
868
914
|
"azure-identity"
|
|
869
915
|
],
|
|
870
|
-
"team_role": "specialist"
|
|
916
|
+
"team_role": "specialist",
|
|
917
|
+
"active_phases": [
|
|
918
|
+
"design",
|
|
919
|
+
"implement"
|
|
920
|
+
]
|
|
871
921
|
},
|
|
872
922
|
"standards": [
|
|
873
923
|
"core/coding.md",
|
|
@@ -913,7 +963,10 @@
|
|
|
913
963
|
"collaborates_with": [
|
|
914
964
|
"hangfire-orchestrator"
|
|
915
965
|
],
|
|
916
|
-
"team_role": "specialist"
|
|
966
|
+
"team_role": "specialist",
|
|
967
|
+
"active_phases": [
|
|
968
|
+
"implement"
|
|
969
|
+
]
|
|
917
970
|
},
|
|
918
971
|
"standards": [
|
|
919
972
|
"core/coding.md",
|
|
@@ -966,6 +1019,7 @@
|
|
|
966
1019
|
"team_role": "specialist",
|
|
967
1020
|
"active_phases": [
|
|
968
1021
|
"uiux",
|
|
1022
|
+
"tasks",
|
|
969
1023
|
"implement"
|
|
970
1024
|
]
|
|
971
1025
|
},
|
|
@@ -1022,6 +1076,7 @@
|
|
|
1022
1076
|
"team_role": "specialist",
|
|
1023
1077
|
"active_phases": [
|
|
1024
1078
|
"uiux",
|
|
1079
|
+
"tasks",
|
|
1025
1080
|
"implement"
|
|
1026
1081
|
]
|
|
1027
1082
|
},
|
|
@@ -1116,7 +1171,11 @@
|
|
|
1116
1171
|
"devops-engineer",
|
|
1117
1172
|
"container-specialist"
|
|
1118
1173
|
],
|
|
1119
|
-
"team_role": "specialist"
|
|
1174
|
+
"team_role": "specialist",
|
|
1175
|
+
"active_phases": [
|
|
1176
|
+
"design",
|
|
1177
|
+
"implement"
|
|
1178
|
+
]
|
|
1120
1179
|
},
|
|
1121
1180
|
"standards": [
|
|
1122
1181
|
"core/coding.md",
|
|
@@ -1157,7 +1216,10 @@
|
|
|
1157
1216
|
"bicep-architect",
|
|
1158
1217
|
"container-specialist"
|
|
1159
1218
|
],
|
|
1160
|
-
"team_role": "specialist"
|
|
1219
|
+
"team_role": "specialist",
|
|
1220
|
+
"active_phases": [
|
|
1221
|
+
"implement"
|
|
1222
|
+
]
|
|
1161
1223
|
},
|
|
1162
1224
|
"standards": [
|
|
1163
1225
|
"core/coding.md",
|
|
@@ -1196,7 +1258,10 @@
|
|
|
1196
1258
|
"bicep-architect",
|
|
1197
1259
|
"devops-engineer"
|
|
1198
1260
|
],
|
|
1199
|
-
"team_role": "specialist"
|
|
1261
|
+
"team_role": "specialist",
|
|
1262
|
+
"active_phases": [
|
|
1263
|
+
"implement"
|
|
1264
|
+
]
|
|
1200
1265
|
},
|
|
1201
1266
|
"standards": [
|
|
1202
1267
|
"core/coding.md",
|
|
@@ -1238,7 +1303,10 @@
|
|
|
1238
1303
|
"dotnet-senior",
|
|
1239
1304
|
"ms-agent-expert"
|
|
1240
1305
|
],
|
|
1241
|
-
"team_role": "specialist"
|
|
1306
|
+
"team_role": "specialist",
|
|
1307
|
+
"active_phases": [
|
|
1308
|
+
"implement"
|
|
1309
|
+
]
|
|
1242
1310
|
},
|
|
1243
1311
|
"standards": [
|
|
1244
1312
|
"core/coding.md",
|
|
@@ -1280,7 +1348,11 @@
|
|
|
1280
1348
|
"nextjs-expert",
|
|
1281
1349
|
"clerk-auth"
|
|
1282
1350
|
],
|
|
1283
|
-
"team_role": "specialist"
|
|
1351
|
+
"team_role": "specialist",
|
|
1352
|
+
"active_phases": [
|
|
1353
|
+
"design",
|
|
1354
|
+
"implement"
|
|
1355
|
+
]
|
|
1284
1356
|
},
|
|
1285
1357
|
"standards": [
|
|
1286
1358
|
"core/coding.md",
|
|
@@ -1324,7 +1396,10 @@
|
|
|
1324
1396
|
"blazor-builder",
|
|
1325
1397
|
"nextjs-expert"
|
|
1326
1398
|
],
|
|
1327
|
-
"team_role": "specialist"
|
|
1399
|
+
"team_role": "specialist",
|
|
1400
|
+
"active_phases": [
|
|
1401
|
+
"implement"
|
|
1402
|
+
]
|
|
1328
1403
|
},
|
|
1329
1404
|
"standards": [
|
|
1330
1405
|
"core/coding.md",
|
|
@@ -1366,7 +1441,10 @@
|
|
|
1366
1441
|
"dotnet-senior",
|
|
1367
1442
|
"troubleshooting-expert"
|
|
1368
1443
|
],
|
|
1369
|
-
"team_role": "specialist"
|
|
1444
|
+
"team_role": "specialist",
|
|
1445
|
+
"active_phases": [
|
|
1446
|
+
"implement"
|
|
1447
|
+
]
|
|
1370
1448
|
},
|
|
1371
1449
|
"standards": [
|
|
1372
1450
|
"core/coding.md",
|
|
@@ -1404,7 +1482,10 @@
|
|
|
1404
1482
|
"testing-specialist"
|
|
1405
1483
|
],
|
|
1406
1484
|
"team_role": "escalation_specialist",
|
|
1407
|
-
"spawn_trigger": "escalation_after_3_failures"
|
|
1485
|
+
"spawn_trigger": "escalation_after_3_failures",
|
|
1486
|
+
"active_phases": [
|
|
1487
|
+
"implement"
|
|
1488
|
+
]
|
|
1408
1489
|
},
|
|
1409
1490
|
"standards": [
|
|
1410
1491
|
"core/coding.md",
|
|
@@ -1446,7 +1527,10 @@
|
|
|
1446
1527
|
"infra-architect",
|
|
1447
1528
|
"observability-expert"
|
|
1448
1529
|
],
|
|
1449
|
-
"team_role": "specialist"
|
|
1530
|
+
"team_role": "specialist",
|
|
1531
|
+
"active_phases": [
|
|
1532
|
+
"implement"
|
|
1533
|
+
]
|
|
1450
1534
|
},
|
|
1451
1535
|
"standards": [
|
|
1452
1536
|
"core/coding.md",
|
|
@@ -1484,7 +1568,10 @@
|
|
|
1484
1568
|
"devops-engineer"
|
|
1485
1569
|
],
|
|
1486
1570
|
"team_role": "post_implementation",
|
|
1487
|
-
"spawn_trigger": "post_fase_5"
|
|
1571
|
+
"spawn_trigger": "post_fase_5",
|
|
1572
|
+
"active_phases": [
|
|
1573
|
+
"implement"
|
|
1574
|
+
]
|
|
1488
1575
|
},
|
|
1489
1576
|
"standards": [
|
|
1490
1577
|
"core/coding.md",
|