@cubis/foundry 0.3.77 → 0.3.78

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 (206) hide show
  1. package/dist/cli/build/commands.js +19 -0
  2. package/dist/cli/build/commands.js.map +1 -0
  3. package/dist/cli/commands/register.js +4 -0
  4. package/dist/cli/commands/register.js.map +1 -1
  5. package/dist/cli/core.js +787 -25
  6. package/dist/cli/core.js.map +1 -1
  7. package/package.json +4 -3
  8. package/src/cli/build/commands.ts +39 -0
  9. package/src/cli/commands/register.ts +6 -0
  10. package/src/cli/core.ts +960 -28
  11. package/workflows/skills/generated/skill-audit.json +11 -2
  12. package/workflows/skills/generated/skill-catalog.json +38 -4
  13. package/workflows/skills/skills_index.json +34 -0
  14. package/workflows/skills/spec-driven-delivery/SKILL.md +63 -0
  15. package/workflows/workflows/agent-environment-setup/generated/route-manifest.json +117 -4
  16. package/workflows/workflows/agent-environment-setup/manifest.json +21 -0
  17. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/accessibility.toml +10 -5
  18. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/architecture.toml +19 -0
  19. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/backend.toml +10 -5
  20. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/create.toml +10 -5
  21. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/database.toml +10 -5
  22. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/debug.toml +10 -5
  23. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/devops.toml +10 -5
  24. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/implement-track.toml +10 -5
  25. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/migrate.toml +10 -5
  26. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/mobile.toml +10 -5
  27. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/onboard.toml +10 -5
  28. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/orchestrate.toml +10 -5
  29. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/plan.toml +10 -5
  30. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/refactor.toml +10 -5
  31. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/release.toml +10 -5
  32. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/review.toml +10 -5
  33. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/security.toml +10 -5
  34. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/spec.toml +19 -0
  35. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/test.toml +10 -5
  36. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/vercel.toml +10 -5
  37. package/workflows/workflows/agent-environment-setup/platforms/antigravity/rules/GEMINI.md +3 -1
  38. package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/spec-driven-delivery/SKILL.md +65 -0
  39. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/architecture.md +82 -0
  40. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/backend.md +3 -0
  41. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/create.md +4 -1
  42. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/database.md +3 -0
  43. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/implement-track.md +7 -1
  44. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/migrate.md +4 -1
  45. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/mobile.md +3 -0
  46. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/onboard.md +1 -0
  47. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/orchestrate.md +6 -1
  48. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/plan.md +12 -2
  49. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/refactor.md +3 -0
  50. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/release.md +3 -0
  51. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/spec.md +81 -0
  52. package/workflows/workflows/agent-environment-setup/platforms/claude/rules/CLAUDE.md +3 -1
  53. package/workflows/workflows/agent-environment-setup/platforms/claude/skills/skills_index.json +34 -0
  54. package/workflows/workflows/agent-environment-setup/platforms/claude/skills/spec-driven-delivery/SKILL.md +66 -0
  55. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/architecture.md +80 -0
  56. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/backend.md +3 -0
  57. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/create.md +4 -1
  58. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/database.md +3 -0
  59. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/implement-track.md +7 -1
  60. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/migrate.md +4 -1
  61. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/mobile.md +3 -0
  62. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/onboard.md +1 -0
  63. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/orchestrate.md +6 -1
  64. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/plan.md +12 -2
  65. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/refactor.md +3 -0
  66. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/release.md +3 -0
  67. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/spec.md +79 -0
  68. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/backend-specialist.md +1 -1
  69. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/code-archaeologist.md +1 -1
  70. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/database-architect.md +1 -1
  71. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/debugger.md +1 -1
  72. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/devops-engineer.md +1 -1
  73. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/documentation-writer.md +1 -1
  74. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/frontend-specialist.md +1 -1
  75. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/game-developer.md +1 -1
  76. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/mobile-developer.md +1 -1
  77. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/orchestrator.md +1 -1
  78. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/penetration-tester.md +1 -1
  79. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/performance-optimizer.md +1 -1
  80. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/product-manager.md +1 -1
  81. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/project-planner.md +1 -1
  82. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/qa-automation-engineer.md +1 -1
  83. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/researcher.md +1 -1
  84. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/security-auditor.md +1 -1
  85. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/seo-specialist.md +1 -1
  86. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/sre-engineer.md +1 -1
  87. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/test-engineer.md +1 -1
  88. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/validator.md +1 -1
  89. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/vercel-expert.md +1 -1
  90. package/workflows/workflows/agent-environment-setup/platforms/codex/rules/AGENTS.md +3 -1
  91. package/workflows/workflows/agent-environment-setup/platforms/codex/skills/spec-driven-delivery/SKILL.md +65 -0
  92. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/accessibility.md +1 -1
  93. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/architecture.md +82 -0
  94. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/backend.md +4 -1
  95. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/create.md +5 -2
  96. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/database.md +4 -1
  97. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/debug.md +1 -1
  98. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/devops.md +1 -1
  99. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/implement-track.md +8 -2
  100. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/migrate.md +5 -2
  101. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/mobile.md +4 -1
  102. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/onboard.md +2 -1
  103. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/orchestrate.md +7 -2
  104. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/plan.md +13 -3
  105. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/refactor.md +4 -1
  106. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/release.md +4 -1
  107. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/review.md +1 -1
  108. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/security.md +1 -1
  109. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/spec.md +81 -0
  110. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/test.md +1 -1
  111. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/vercel.md +1 -1
  112. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-accessibility.prompt.md +9 -4
  113. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-architecture.prompt.md +18 -0
  114. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-backend.prompt.md +9 -4
  115. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-create.prompt.md +9 -4
  116. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-database.prompt.md +9 -4
  117. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-debug.prompt.md +9 -4
  118. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-devops.prompt.md +9 -4
  119. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-implement-track.prompt.md +9 -4
  120. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-migrate.prompt.md +9 -4
  121. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-mobile.prompt.md +9 -4
  122. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-onboard.prompt.md +9 -4
  123. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-orchestrate.prompt.md +9 -4
  124. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-plan.prompt.md +9 -4
  125. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-refactor.prompt.md +9 -4
  126. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-release.prompt.md +9 -4
  127. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-review.prompt.md +9 -4
  128. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-security.prompt.md +9 -4
  129. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-spec.prompt.md +18 -0
  130. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-test.prompt.md +9 -4
  131. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-vercel.prompt.md +9 -4
  132. package/workflows/workflows/agent-environment-setup/platforms/copilot/rules/copilot-instructions.md +3 -1
  133. package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/skills_index.json +34 -0
  134. package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/spec-driven-delivery/SKILL.md +70 -0
  135. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/architecture.md +80 -0
  136. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/backend.md +3 -0
  137. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/create.md +4 -1
  138. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/database.md +3 -0
  139. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/implement-track.md +7 -1
  140. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/migrate.md +4 -1
  141. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/mobile.md +3 -0
  142. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/onboard.md +1 -0
  143. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/orchestrate.md +6 -1
  144. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/plan.md +12 -2
  145. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/refactor.md +3 -0
  146. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/release.md +3 -0
  147. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/spec.md +79 -0
  148. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/accessibility.toml +10 -5
  149. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/architecture.toml +19 -0
  150. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/backend.toml +10 -5
  151. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/create.toml +10 -5
  152. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/database.toml +10 -5
  153. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/debug.toml +10 -5
  154. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/devops.toml +10 -5
  155. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/implement-track.toml +10 -5
  156. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/migrate.toml +10 -5
  157. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/mobile.toml +10 -5
  158. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/onboard.toml +10 -5
  159. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/orchestrate.toml +10 -5
  160. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/plan.toml +10 -5
  161. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/refactor.toml +10 -5
  162. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/release.toml +10 -5
  163. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/review.toml +10 -5
  164. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/security.toml +10 -5
  165. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/spec.toml +19 -0
  166. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/test.toml +10 -5
  167. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/vercel.toml +10 -5
  168. package/workflows/workflows/agent-environment-setup/platforms/gemini/rules/GEMINI.md +3 -1
  169. package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/spec-driven-delivery/SKILL.md +65 -0
  170. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/architecture.md +82 -0
  171. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/backend.md +3 -0
  172. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/create.md +4 -1
  173. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/database.md +3 -0
  174. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/implement-track.md +7 -1
  175. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/migrate.md +4 -1
  176. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/mobile.md +3 -0
  177. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/onboard.md +1 -0
  178. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/orchestrate.md +6 -1
  179. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/plan.md +12 -2
  180. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/refactor.md +3 -0
  181. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/release.md +3 -0
  182. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/spec.md +81 -0
  183. package/workflows/workflows/agent-environment-setup/shared/agents/backend-specialist.md +5 -5
  184. package/workflows/workflows/agent-environment-setup/shared/agents/database-architect.md +3 -3
  185. package/workflows/workflows/agent-environment-setup/shared/agents/orchestrator.md +8 -8
  186. package/workflows/workflows/agent-environment-setup/shared/agents/penetration-tester.md +3 -3
  187. package/workflows/workflows/agent-environment-setup/shared/agents/product-manager.md +6 -6
  188. package/workflows/workflows/agent-environment-setup/shared/agents/project-planner.md +8 -8
  189. package/workflows/workflows/agent-environment-setup/shared/agents/researcher.md +8 -8
  190. package/workflows/workflows/agent-environment-setup/shared/agents/security-auditor.md +2 -2
  191. package/workflows/workflows/agent-environment-setup/shared/rules/STEERING.md +13 -0
  192. package/workflows/workflows/agent-environment-setup/shared/rules/overrides/codex.md +3 -3
  193. package/workflows/workflows/agent-environment-setup/shared/workflows/architecture.md +80 -0
  194. package/workflows/workflows/agent-environment-setup/shared/workflows/backend.md +8 -5
  195. package/workflows/workflows/agent-environment-setup/shared/workflows/create.md +5 -2
  196. package/workflows/workflows/agent-environment-setup/shared/workflows/database.md +6 -3
  197. package/workflows/workflows/agent-environment-setup/shared/workflows/implement-track.md +12 -6
  198. package/workflows/workflows/agent-environment-setup/shared/workflows/migrate.md +7 -4
  199. package/workflows/workflows/agent-environment-setup/shared/workflows/mobile.md +3 -0
  200. package/workflows/workflows/agent-environment-setup/shared/workflows/onboard.md +6 -5
  201. package/workflows/workflows/agent-environment-setup/shared/workflows/orchestrate.md +10 -5
  202. package/workflows/workflows/agent-environment-setup/shared/workflows/plan.md +17 -7
  203. package/workflows/workflows/agent-environment-setup/shared/workflows/refactor.md +5 -2
  204. package/workflows/workflows/agent-environment-setup/shared/workflows/release.md +3 -0
  205. package/workflows/workflows/agent-environment-setup/shared/workflows/security.md +2 -2
  206. package/workflows/workflows/agent-environment-setup/shared/workflows/spec.md +79 -0
@@ -2,7 +2,7 @@
2
2
  "$schema": "cubis-foundry-skill-audit-v1",
3
3
  "generatedAt": "1970-01-01T00:00:00.000Z",
4
4
  "summary": {
5
- "keep": 69,
5
+ "keep": 70,
6
6
  "review": 0,
7
7
  "alias-only": 0
8
8
  },
@@ -502,6 +502,15 @@
502
502
  "tier": "system",
503
503
  "reason": "Canonical skill remains active in the layered catalog."
504
504
  },
505
+ {
506
+ "id": "spec-driven-delivery",
507
+ "canonical_id": "spec-driven-delivery",
508
+ "status": "keep",
509
+ "layer": "workflow-specialists",
510
+ "category": "workflow-specialists",
511
+ "tier": "experimental",
512
+ "reason": "Canonical skill remains active in the layered catalog."
513
+ },
505
514
  {
506
515
  "id": "spring-boot",
507
516
  "canonical_id": "spring-boot",
@@ -629,5 +638,5 @@
629
638
  "reason": "Canonical skill remains active in the layered catalog."
630
639
  }
631
640
  ],
632
- "contentHash": "101f661a3eeb90cd"
641
+ "contentHash": "e89ff93cdf3025e8"
633
642
  }
@@ -2,10 +2,10 @@
2
2
  "$schema": "cubis-foundry-skill-catalog-v1",
3
3
  "generatedAt": "1970-01-01T00:00:00.000Z",
4
4
  "summary": {
5
- "totalEntries": 69,
6
- "totalSkills": 69,
5
+ "totalEntries": 70,
6
+ "totalSkills": 70,
7
7
  "totalSubskills": 0,
8
- "canonicalSkills": 69,
8
+ "canonicalSkills": 70,
9
9
  "compatibilityAliases": 0,
10
10
  "layers": [
11
11
  "core-operating",
@@ -1748,6 +1748,40 @@
1748
1748
  "core-operating"
1749
1749
  ]
1750
1750
  },
1751
+ {
1752
+ "id": "spec-driven-delivery",
1753
+ "package_id": "spec-driven-delivery",
1754
+ "catalog_id": "spec-driven-delivery",
1755
+ "kind": "skill",
1756
+ "path": "workflows/skills/spec-driven-delivery/SKILL.md",
1757
+ "name": "spec-driven-delivery",
1758
+ "description": "Use when turning a non-trivial request into a Git-tracked spec pack, maintaining traceability during execution, and updating specs before code when requirements or architecture change.",
1759
+ "canonical": true,
1760
+ "canonical_id": "spec-driven-delivery",
1761
+ "deprecated": false,
1762
+ "replaced_by": null,
1763
+ "aliases": [],
1764
+ "category": "workflow-specialists",
1765
+ "layer": "workflow-specialists",
1766
+ "maturity": "incubating",
1767
+ "tier": "experimental",
1768
+ "tags": [
1769
+ "delivery",
1770
+ "driven",
1771
+ "spec",
1772
+ "spec driven delivery",
1773
+ "spec-driven-delivery",
1774
+ "workflow-specialists"
1775
+ ],
1776
+ "triggers": [
1777
+ "spec-driven-delivery",
1778
+ "spec driven delivery",
1779
+ "spec",
1780
+ "driven",
1781
+ "delivery",
1782
+ "workflow-specialists"
1783
+ ]
1784
+ },
1751
1785
  {
1752
1786
  "id": "spring-boot",
1753
1787
  "package_id": "spring-boot",
@@ -2173,5 +2207,5 @@
2173
2207
  ]
2174
2208
  }
2175
2209
  ],
2176
- "contentHash": "b27e549d17f95efb"
2210
+ "contentHash": "b8ed402a6bbe2ed2"
2177
2211
  }
@@ -1721,6 +1721,40 @@
1721
1721
  "core-operating"
1722
1722
  ]
1723
1723
  },
1724
+ {
1725
+ "id": "spec-driven-delivery",
1726
+ "package_id": "spec-driven-delivery",
1727
+ "catalog_id": "spec-driven-delivery",
1728
+ "kind": "skill",
1729
+ "name": "spec-driven-delivery",
1730
+ "canonical": true,
1731
+ "canonical_id": "spec-driven-delivery",
1732
+ "deprecated": false,
1733
+ "replaced_by": null,
1734
+ "aliases": [],
1735
+ "category": "workflow-specialists",
1736
+ "layer": "workflow-specialists",
1737
+ "maturity": "incubating",
1738
+ "tier": "experimental",
1739
+ "tags": [
1740
+ "delivery",
1741
+ "driven",
1742
+ "spec",
1743
+ "spec driven delivery",
1744
+ "spec-driven-delivery",
1745
+ "workflow-specialists"
1746
+ ],
1747
+ "path": ".agents/skills/spec-driven-delivery/SKILL.md",
1748
+ "description": "Use when turning a non-trivial request into a Git-tracked spec pack, maintaining traceability during execution, and updating specs before code when requirements or architecture change.",
1749
+ "triggers": [
1750
+ "spec-driven-delivery",
1751
+ "spec driven delivery",
1752
+ "spec",
1753
+ "driven",
1754
+ "delivery",
1755
+ "workflow-specialists"
1756
+ ]
1757
+ },
1724
1758
  {
1725
1759
  "id": "spring-boot",
1726
1760
  "package_id": "spring-boot",
@@ -0,0 +1,63 @@
1
+ ---
2
+ name: spec-driven-delivery
3
+ description: Use when turning a non-trivial request into a Git-tracked spec pack, maintaining traceability during execution, and updating specs before code when requirements or architecture change.
4
+ license: MIT
5
+ metadata:
6
+ author: cubis-foundry
7
+ version: "1.0"
8
+ compatibility: Claude Code, Codex, GitHub Copilot
9
+ ---
10
+
11
+ # Spec-Driven Delivery
12
+
13
+ ## Purpose
14
+
15
+ Create and maintain a lightweight source of truth for non-trivial work. This skill turns requirements, decisions, acceptance criteria, and architecture impact into a spec pack under the `docs/specs/<spec-id>/` workspace area, then keeps that pack aligned as implementation evolves.
16
+
17
+ ## When to Use
18
+
19
+ - Planning a medium or large feature before implementation
20
+ - Capturing acceptance criteria, traceability, and architecture impact in Git
21
+ - Reusing or refreshing an existing spec pack for a follow-up change
22
+ - Bridging native plan-mode output into durable project documents
23
+ - Keeping implementation, verification, and documentation aligned across sessions
24
+
25
+ ## Instructions
26
+
27
+ 1. **Classify the task first** because trivial work should not pay spec overhead. Use this skill only when the task is multi-step, cross-session, cross-domain, risky, or likely to change architecture, testing strategy, or team coordination.
28
+ 2. **Look for an existing spec pack before creating a new one** because duplicate specs create drift. Reuse the closest matching spec directory when the current request extends an active initiative.
29
+ 3. **Create a stable `spec_id` and spec root** because the same identifier should survive planning, execution, review, and follow-up changes.
30
+ 4. **Write the minimum viable pack** because the goal is durable coordination, not bureaucracy. Keep the brief, acceptance, tasks, traceability, and handoff documents concise and testable.
31
+ 5. **Use `sadd` when turning requirements into assertions** because spec quality depends on extracting testable behavior instead of leaving requirements vague.
32
+ 6. **Record architecture impact explicitly** because implementation must stay aligned with the project architecture contract and current-state tech map. Mark whether the change affects architecture style, module boundaries, dependency rules, design system, deployment shape, or testing strategy.
33
+ 7. **Update the spec before implementation changes behavior** because traceability breaks when code changes first and docs lag behind.
34
+ 8. **Keep the task graph execution-ready** because `/implement-track` and `/orchestrate` should be able to act on the spec without replanning. Every task should have ownership, dependencies, acceptance criteria, and a verification path.
35
+ 9. **Route external research through `deep-research`** because repo-first planning still needs disciplined escalation when freshness or public comparison matters.
36
+ 10. **Emit a clear next route** because spec work usually hands off into `/create`, `/implement-track`, `/orchestrate`, or `/architecture`.
37
+ 11. **Report `doc_impact` and `traceability_status`** because feature work should surface whether the architecture contract or tech map must be refreshed at the end.
38
+ 12. **Keep the pack alive during execution** because a stale spec is worse than none. Update acceptance, tasks, and traceability when scope or constraints change.
39
+
40
+ ## Output Format
41
+
42
+ Deliver:
43
+
44
+ 1. **Spec summary** — `spec_id`, `spec_root`, goal, scope, and why spec mode is warranted
45
+ 2. **Acceptance and traceability state** — requirements, open gaps, and `traceability_status`
46
+ 3. **Execution-ready plan** — tasks, owners, dependencies, and verification checkpoints
47
+ 4. **Architecture and doc impact** — `architecture_impact` plus `doc_impact`
48
+ 5. **Recommended next route** — exact workflow, agent, or skill to continue from the spec
49
+
50
+ ## References
51
+
52
+ | File | Load when |
53
+ | --- | --- |
54
+ | `../sadd/SKILL.md` | Need requirement mining, GIVEN-WHEN-THEN specs, or traceability patterns. |
55
+ | `../architecture-doc/SKILL.md` | Need ADRs, system boundaries, or architecture-document structure. |
56
+ | `../deep-research/SKILL.md` | Need repo-first research escalation or evidence labeling rules. |
57
+
58
+ ## Examples
59
+
60
+ | File | Use when |
61
+ | --- | --- |
62
+ | `../sadd/references/spec-mining.md` | Turning loose requirements into testable spec entries. |
63
+ | `../sadd/references/coverage-mapping.md` | Building a traceability matrix that links specs, tests, and code. |
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "$schema": "cubis-foundry-route-manifest-v1",
3
3
  "generatedAt": "1970-01-01T00:00:00.000Z",
4
- "contentHash": "47cf8920e99d0258",
4
+ "contentHash": "84d671504acfd27c",
5
5
  "summary": {
6
- "totalRoutes": 40,
7
- "workflows": 18,
6
+ "totalRoutes": 42,
7
+ "workflows": 20,
8
8
  "agents": 22
9
9
  },
10
10
  "routes": [
@@ -1206,6 +1206,64 @@
1206
1206
  }
1207
1207
  }
1208
1208
  },
1209
+ {
1210
+ "kind": "workflow",
1211
+ "id": "architecture",
1212
+ "command": "/architecture",
1213
+ "displayName": "architecture",
1214
+ "description": "Refresh the project architecture contract and current-state map in ENGINEERING_RULES.md and TECH.md with explicit structure, design-system, testing, and flow guidance.",
1215
+ "triggers": [
1216
+ "architecture",
1217
+ "design system",
1218
+ "adr",
1219
+ "clean architecture",
1220
+ "system map",
1221
+ "app structure",
1222
+ "technical governance",
1223
+ "flow diagram"
1224
+ ],
1225
+ "primaryAgent": "project-planner",
1226
+ "supportingAgents": [
1227
+ "documentation-writer",
1228
+ "researcher",
1229
+ "backend-specialist",
1230
+ "frontend-specialist",
1231
+ "database-architect"
1232
+ ],
1233
+ "primarySkills": [
1234
+ "architecture-doc",
1235
+ "system-design",
1236
+ "tech-doc",
1237
+ "frontend-design"
1238
+ ],
1239
+ "supportingSkills": [
1240
+ "api-design",
1241
+ "database-design",
1242
+ "sadd",
1243
+ "deep-research"
1244
+ ],
1245
+ "artifacts": {
1246
+ "codex": {
1247
+ "workflowFile": "architecture.md",
1248
+ "compatibilityAlias": "$workflow-architecture"
1249
+ },
1250
+ "copilot": {
1251
+ "workflowFile": "architecture.md",
1252
+ "promptFile": "workflow-architecture.prompt.md"
1253
+ },
1254
+ "antigravity": {
1255
+ "workflowFile": "architecture.md",
1256
+ "commandFile": "architecture.toml"
1257
+ },
1258
+ "claude": {
1259
+ "workflowFile": "architecture.md"
1260
+ },
1261
+ "gemini": {
1262
+ "workflowFile": "architecture.md",
1263
+ "commandFile": "architecture.toml"
1264
+ }
1265
+ }
1266
+ },
1209
1267
  {
1210
1268
  "kind": "workflow",
1211
1269
  "id": "backend",
@@ -1792,7 +1850,6 @@
1792
1850
  "description": "Build a decision-complete implementation plan with interfaces, failure modes, and acceptance criteria.",
1793
1851
  "triggers": [
1794
1852
  "plan",
1795
- "spec",
1796
1853
  "design",
1797
1854
  "roadmap",
1798
1855
  "acceptance",
@@ -2061,6 +2118,62 @@
2061
2118
  }
2062
2119
  }
2063
2120
  },
2121
+ {
2122
+ "kind": "workflow",
2123
+ "id": "spec",
2124
+ "command": "/spec",
2125
+ "displayName": "spec",
2126
+ "description": "Create or refresh a Git-tracked spec pack for non-trivial work, including acceptance criteria, traceability, architecture impact, and next-route handoff.",
2127
+ "triggers": [
2128
+ "spec",
2129
+ "sdd",
2130
+ "source of truth",
2131
+ "traceability",
2132
+ "acceptance criteria",
2133
+ "openspec",
2134
+ "requirements",
2135
+ "architecture impact"
2136
+ ],
2137
+ "primaryAgent": "project-planner",
2138
+ "supportingAgents": [
2139
+ "researcher",
2140
+ "orchestrator",
2141
+ "documentation-writer"
2142
+ ],
2143
+ "primarySkills": [
2144
+ "spec-driven-delivery",
2145
+ "sadd"
2146
+ ],
2147
+ "supportingSkills": [
2148
+ "system-design",
2149
+ "architecture-doc",
2150
+ "deep-research",
2151
+ "api-design",
2152
+ "database-design",
2153
+ "tech-doc"
2154
+ ],
2155
+ "artifacts": {
2156
+ "codex": {
2157
+ "workflowFile": "spec.md",
2158
+ "compatibilityAlias": "$workflow-spec"
2159
+ },
2160
+ "copilot": {
2161
+ "workflowFile": "spec.md",
2162
+ "promptFile": "workflow-spec.prompt.md"
2163
+ },
2164
+ "antigravity": {
2165
+ "workflowFile": "spec.md",
2166
+ "commandFile": "spec.toml"
2167
+ },
2168
+ "claude": {
2169
+ "workflowFile": "spec.md"
2170
+ },
2171
+ "gemini": {
2172
+ "workflowFile": "spec.md",
2173
+ "commandFile": "spec.toml"
2174
+ }
2175
+ }
2176
+ },
2064
2177
  {
2065
2178
  "kind": "workflow",
2066
2179
  "id": "test",
@@ -6,6 +6,7 @@
6
6
  "antigravity": {
7
7
  "workflows": [
8
8
  "accessibility.md",
9
+ "architecture.md",
9
10
  "backend.md",
10
11
  "create.md",
11
12
  "database.md",
@@ -21,6 +22,7 @@
21
22
  "release.md",
22
23
  "review.md",
23
24
  "security.md",
25
+ "spec.md",
24
26
  "test.md",
25
27
  "vercel.md"
26
28
  ],
@@ -104,6 +106,7 @@
104
106
  "sanitize-pii",
105
107
  "secret-management",
106
108
  "skill-creator",
109
+ "spec-driven-delivery",
107
110
  "spring-boot",
108
111
  "sqlalchemy",
109
112
  "stitch",
@@ -129,6 +132,7 @@
129
132
  ],
130
133
  "commands": [
131
134
  "accessibility.toml",
135
+ "architecture.toml",
132
136
  "backend.toml",
133
137
  "create.toml",
134
138
  "database.toml",
@@ -144,6 +148,7 @@
144
148
  "release.toml",
145
149
  "review.toml",
146
150
  "security.toml",
151
+ "spec.toml",
147
152
  "test.toml",
148
153
  "vercel.toml"
149
154
  ]
@@ -151,6 +156,7 @@
151
156
  "codex": {
152
157
  "workflows": [
153
158
  "accessibility.md",
159
+ "architecture.md",
154
160
  "backend.md",
155
161
  "create.md",
156
162
  "database.md",
@@ -166,6 +172,7 @@
166
172
  "release.md",
167
173
  "review.md",
168
174
  "security.md",
175
+ "spec.md",
169
176
  "test.md",
170
177
  "vercel.md"
171
178
  ],
@@ -249,6 +256,7 @@
249
256
  "sanitize-pii",
250
257
  "secret-management",
251
258
  "skill-creator",
259
+ "spec-driven-delivery",
252
260
  "spring-boot",
253
261
  "sqlalchemy",
254
262
  "stitch",
@@ -276,6 +284,7 @@
276
284
  "copilot": {
277
285
  "workflows": [
278
286
  "accessibility.md",
287
+ "architecture.md",
279
288
  "backend.md",
280
289
  "create.md",
281
290
  "database.md",
@@ -291,6 +300,7 @@
291
300
  "release.md",
292
301
  "review.md",
293
302
  "security.md",
303
+ "spec.md",
294
304
  "test.md",
295
305
  "vercel.md"
296
306
  ],
@@ -374,6 +384,7 @@
374
384
  "sanitize-pii",
375
385
  "secret-management",
376
386
  "skill-creator",
387
+ "spec-driven-delivery",
377
388
  "spring-boot",
378
389
  "sqlalchemy",
379
390
  "stitch",
@@ -399,6 +410,7 @@
399
410
  ],
400
411
  "prompts": [
401
412
  "workflow-accessibility.prompt.md",
413
+ "workflow-architecture.prompt.md",
402
414
  "workflow-backend.prompt.md",
403
415
  "workflow-create.prompt.md",
404
416
  "workflow-database.prompt.md",
@@ -414,6 +426,7 @@
414
426
  "workflow-release.prompt.md",
415
427
  "workflow-review.prompt.md",
416
428
  "workflow-security.prompt.md",
429
+ "workflow-spec.prompt.md",
417
430
  "workflow-test.prompt.md",
418
431
  "workflow-vercel.prompt.md"
419
432
  ]
@@ -421,6 +434,7 @@
421
434
  "claude": {
422
435
  "workflows": [
423
436
  "accessibility.md",
437
+ "architecture.md",
424
438
  "backend.md",
425
439
  "create.md",
426
440
  "database.md",
@@ -436,6 +450,7 @@
436
450
  "release.md",
437
451
  "review.md",
438
452
  "security.md",
453
+ "spec.md",
439
454
  "test.md",
440
455
  "vercel.md"
441
456
  ],
@@ -519,6 +534,7 @@
519
534
  "sanitize-pii",
520
535
  "secret-management",
521
536
  "skill-creator",
537
+ "spec-driven-delivery",
522
538
  "spring-boot",
523
539
  "sqlalchemy",
524
540
  "stitch",
@@ -567,6 +583,7 @@
567
583
  "gemini": {
568
584
  "workflows": [
569
585
  "accessibility.md",
586
+ "architecture.md",
570
587
  "backend.md",
571
588
  "create.md",
572
589
  "database.md",
@@ -582,6 +599,7 @@
582
599
  "release.md",
583
600
  "review.md",
584
601
  "security.md",
602
+ "spec.md",
585
603
  "test.md",
586
604
  "vercel.md"
587
605
  ],
@@ -642,6 +660,7 @@
642
660
  "sanitize-pii",
643
661
  "secret-management",
644
662
  "skill-creator",
663
+ "spec-driven-delivery",
645
664
  "spring-boot",
646
665
  "sqlalchemy",
647
666
  "stitch",
@@ -667,6 +686,7 @@
667
686
  ],
668
687
  "commands": [
669
688
  "accessibility.toml",
689
+ "architecture.toml",
670
690
  "backend.toml",
671
691
  "create.toml",
672
692
  "database.toml",
@@ -682,6 +702,7 @@
682
702
  "release.toml",
683
703
  "review.toml",
684
704
  "security.toml",
705
+ "spec.toml",
685
706
  "test.toml",
686
707
  "vercel.toml"
687
708
  ]
@@ -4,11 +4,16 @@ Follow the /accessibility workflow from .agent/workflows/accessibility.md.
4
4
 
5
5
  Execution contract:
6
6
  1. Treat route selection as already resolved by this command; do not begin with skill discovery.
7
- 2. Confirm the request fits the workflow's "When to use" section.
8
- 3. Execute according to "Workflow steps" and apply "Context notes".
9
- 4. Complete "Verification" checks and report concrete evidence.
10
- 5. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
11
- 6. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
7
+ 2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
8
+ Attached skills:
9
+ - Load these exact skill IDs first: `code-review`, `frontend-design`, `performance-testing`, `react`, `nextjs`, `playwright-interactive`, `typescript-best-practices`, `javascript-best-practices`.
10
+ - Local skill file hints if installed: `.agent/skills/code-review/SKILL.md`, `.agent/skills/frontend-design/SKILL.md`, `.agent/skills/performance-testing/SKILL.md`, `.agent/skills/react/SKILL.md`, `.agent/skills/nextjs/SKILL.md`, `.agent/skills/playwright-interactive/SKILL.md`, `.agent/skills/typescript-best-practices/SKILL.md`, `.agent/skills/javascript-best-practices/SKILL.md`.
11
+ - Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
12
+ 3. Confirm the request fits the workflow's "When to use" section.
13
+ 4. Execute according to "Workflow steps" and apply "Context notes".
14
+ 5. Complete "Verification" checks and report concrete evidence.
15
+ 6. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
16
+ 7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
12
17
 
13
18
  If command arguments are provided, treat them as additional user context.
14
19
  '''
@@ -0,0 +1,19 @@
1
+ description = "Refresh the project architecture contract and current-state map in ENGINEERING_RULES.md and TECH.md with explicit structure, design-system, testing, and flow guidance."
2
+ prompt = '''
3
+ Follow the /architecture workflow from .agent/workflows/architecture.md.
4
+
5
+ Execution contract:
6
+ 1. Treat route selection as already resolved by this command; do not begin with skill discovery.
7
+ 2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
8
+ Attached skills:
9
+ - Load these exact skill IDs first: `architecture-doc`, `system-design`, `tech-doc`, `frontend-design`, `api-design`, `database-design`, `sadd`, `deep-research`.
10
+ - Local skill file hints if installed: `.agent/skills/architecture-doc/SKILL.md`, `.agent/skills/system-design/SKILL.md`, `.agent/skills/tech-doc/SKILL.md`, `.agent/skills/frontend-design/SKILL.md`, `.agent/skills/api-design/SKILL.md`, `.agent/skills/database-design/SKILL.md`, `.agent/skills/sadd/SKILL.md`, `.agent/skills/deep-research/SKILL.md`.
11
+ - Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
12
+ 3. Confirm the request fits the workflow's "When to use" section.
13
+ 4. Execute according to "Workflow steps" and apply "Context notes".
14
+ 5. Complete "Verification" checks and report concrete evidence.
15
+ 6. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
16
+ 7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
17
+
18
+ If command arguments are provided, treat them as additional user context.
19
+ '''
@@ -4,11 +4,16 @@ Follow the /backend workflow from .agent/workflows/backend.md.
4
4
 
5
5
  Execution contract:
6
6
  1. Treat route selection as already resolved by this command; do not begin with skill discovery.
7
- 2. Confirm the request fits the workflow's "When to use" section.
8
- 3. Execute according to "Workflow steps" and apply "Context notes".
9
- 4. Complete "Verification" checks and report concrete evidence.
10
- 5. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
11
- 6. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
7
+ 2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
8
+ Attached skills:
9
+ - Load these exact skill IDs first: `api-design`, `javascript-best-practices`, `owasp-security-review`, `database-design`, `nestjs`, `fastapi`, `microservices-design`, `drizzle-orm`, `stripe-integration`, `ci-cd-pipeline`, `frontend-design`, `typescript-best-practices`, `python-best-practices`, `golang-best-practices`.
10
+ - Local skill file hints if installed: `.agent/skills/api-design/SKILL.md`, `.agent/skills/javascript-best-practices/SKILL.md`, `.agent/skills/owasp-security-review/SKILL.md`, `.agent/skills/database-design/SKILL.md`, `.agent/skills/nestjs/SKILL.md`, `.agent/skills/fastapi/SKILL.md`, `.agent/skills/microservices-design/SKILL.md`, `.agent/skills/drizzle-orm/SKILL.md`.
11
+ - Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
12
+ 3. Confirm the request fits the workflow's "When to use" section.
13
+ 4. Execute according to "Workflow steps" and apply "Context notes".
14
+ 5. Complete "Verification" checks and report concrete evidence.
15
+ 6. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
16
+ 7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
12
17
 
13
18
  If command arguments are provided, treat them as additional user context.
14
19
  '''
@@ -4,11 +4,16 @@ Follow the /create workflow from .agent/workflows/create.md.
4
4
 
5
5
  Execution contract:
6
6
  1. Treat route selection as already resolved by this command; do not begin with skill discovery.
7
- 2. Confirm the request fits the workflow's "When to use" section.
8
- 3. Execute according to "Workflow steps" and apply "Context notes".
9
- 4. Complete "Verification" checks and report concrete evidence.
10
- 5. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
11
- 6. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
7
+ 2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
8
+ Attached skills:
9
+ - Load these exact skill IDs first: `typescript-best-practices`, `javascript-best-practices`, `python-best-practices`, `golang-best-practices`, `java-best-practices`, `csharp-best-practices`, `kotlin-best-practices`, `rust-best-practices`, `php-best-practices`, `expo-app`, `swift-best-practices`, `api-design`, `nestjs`, `fastapi`, `drizzle-orm`, `database-design`, `mcp-server-builder`, `stitch`, `react`, `nextjs`, `frontend-design`, `performance-testing`, `skill-creator`, `stripe-integration`, `ci-cd-pipeline`.
10
+ - Local skill file hints if installed: `.agent/skills/typescript-best-practices/SKILL.md`, `.agent/skills/javascript-best-practices/SKILL.md`, `.agent/skills/python-best-practices/SKILL.md`, `.agent/skills/golang-best-practices/SKILL.md`, `.agent/skills/java-best-practices/SKILL.md`, `.agent/skills/csharp-best-practices/SKILL.md`, `.agent/skills/kotlin-best-practices/SKILL.md`, `.agent/skills/rust-best-practices/SKILL.md`.
11
+ - Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
12
+ 3. Confirm the request fits the workflow's "When to use" section.
13
+ 4. Execute according to "Workflow steps" and apply "Context notes".
14
+ 5. Complete "Verification" checks and report concrete evidence.
15
+ 6. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
16
+ 7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
12
17
 
13
18
  If command arguments are provided, treat them as additional user context.
14
19
  '''
@@ -4,11 +4,16 @@ Follow the /database workflow from .agent/workflows/database.md.
4
4
 
5
5
  Execution contract:
6
6
  1. Treat route selection as already resolved by this command; do not begin with skill discovery.
7
- 2. Confirm the request fits the workflow's "When to use" section.
8
- 3. Execute according to "Workflow steps" and apply "Context notes".
9
- 4. Complete "Verification" checks and report concrete evidence.
10
- 5. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
11
- 6. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
7
+ 2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
8
+ Attached skills:
9
+ - Load these exact skill IDs first: `database-design`, `drizzle-orm`, `typescript-best-practices`, `javascript-best-practices`, `python-best-practices`.
10
+ - Local skill file hints if installed: `.agent/skills/database-design/SKILL.md`, `.agent/skills/drizzle-orm/SKILL.md`, `.agent/skills/typescript-best-practices/SKILL.md`, `.agent/skills/javascript-best-practices/SKILL.md`, `.agent/skills/python-best-practices/SKILL.md`.
11
+ - Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
12
+ 3. Confirm the request fits the workflow's "When to use" section.
13
+ 4. Execute according to "Workflow steps" and apply "Context notes".
14
+ 5. Complete "Verification" checks and report concrete evidence.
15
+ 6. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
16
+ 7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
12
17
 
13
18
  If command arguments are provided, treat them as additional user context.
14
19
  '''
@@ -4,11 +4,16 @@ Follow the /debug workflow from .agent/workflows/debug.md.
4
4
 
5
5
  Execution contract:
6
6
  1. Treat route selection as already resolved by this command; do not begin with skill discovery.
7
- 2. Confirm the request fits the workflow's "When to use" section.
8
- 3. Execute according to "Workflow steps" and apply "Context notes".
9
- 4. Complete "Verification" checks and report concrete evidence.
10
- 5. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
11
- 6. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
7
+ 2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
8
+ Attached skills:
9
+ - Load these exact skill IDs first: `systematic-debugging`, `observability`, `unit-testing`, `typescript-best-practices`, `javascript-best-practices`, `python-best-practices`, `golang-best-practices`, `java-best-practices`, `csharp-best-practices`, `kotlin-best-practices`, `rust-best-practices`, `integration-testing`, `playwright-interactive`, `skill-creator`.
10
+ - Local skill file hints if installed: `.agent/skills/systematic-debugging/SKILL.md`, `.agent/skills/observability/SKILL.md`, `.agent/skills/unit-testing/SKILL.md`, `.agent/skills/typescript-best-practices/SKILL.md`, `.agent/skills/javascript-best-practices/SKILL.md`, `.agent/skills/python-best-practices/SKILL.md`, `.agent/skills/golang-best-practices/SKILL.md`, `.agent/skills/java-best-practices/SKILL.md`.
11
+ - Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
12
+ 3. Confirm the request fits the workflow's "When to use" section.
13
+ 4. Execute according to "Workflow steps" and apply "Context notes".
14
+ 5. Complete "Verification" checks and report concrete evidence.
15
+ 6. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
16
+ 7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
12
17
 
13
18
  If command arguments are provided, treat them as additional user context.
14
19
  '''