@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
@@ -22,6 +22,7 @@ Use this for net-new implementation after design is stable.
22
22
 
23
23
  - This workflow file, active platform rules, and selected agents or skills guide execution.
24
24
  - Attach logs, screenshots, failing output, and relevant paths when context is incomplete.
25
+ - Read `ENGINEERING_RULES.md` first and `TECH.md` next for non-trivial work so new code follows the declared architecture and design-system rules.
25
26
 
26
27
  ## Skill Routing
27
28
 
@@ -35,7 +36,8 @@ Use this for net-new implementation after design is stable.
35
36
  1. Confirm target files and contracts.
36
37
  2. Implement smallest coherent increment.
37
38
  3. Validate behavior with focused tests.
38
- 4. Capture remaining gaps and follow-ups.
39
+ 4. Capture `doc_impact` when the feature changes architecture, boundaries, scale, or design-system rules.
40
+ 5. Capture remaining gaps and follow-ups.
39
41
 
40
42
  ## Verification
41
43
 
@@ -55,6 +57,7 @@ CREATE_WORKFLOW_RESULT:
55
57
  summary: <string>
56
58
  changed_artifacts: [<path-or-artifact>]
57
59
  behavioral_impact: [<string>]
60
+ doc_impact: none | tech | rules | both
58
61
  verification:
59
62
  checks_run: [<command-or-test>]
60
63
  evidence: [<string>]
@@ -62,4 +65,4 @@ CREATE_WORKFLOW_RESULT:
62
65
  follow_up_items: [<string>] | []
63
66
  ```
64
67
 
65
- > **Codex note:** This workflow runs inside a network-restricted sandbox. Specialists are reasoning postures defined in AGENTS.md, not spawned processes.
68
+ > **Codex note:** Prefer native Codex delegation when the host exposes it. Otherwise follow AGENTS.md specialist postures inline while keeping the same routing and verification contract.
@@ -20,6 +20,7 @@ Use this for schema design, query optimization, migration planning, or database
20
20
 
21
21
  - This workflow file, active platform rules, and selected agents or skills guide execution.
22
22
  - Attach existing schema, migration history, query patterns, and performance requirements.
23
+ - Read `ENGINEERING_RULES.md` and `TECH.md` before changing data ownership, persistence boundaries, or shared schema conventions.
23
24
 
24
25
  ## Skill Routing
25
26
 
@@ -34,6 +35,7 @@ Use this for schema design, query optimization, migration planning, or database
34
35
  3. Plan migration with rollback strategy.
35
36
  4. Optimize queries and indexes for known access patterns.
36
37
  5. Validate data integrity constraints.
38
+ 6. Set `doc_impact` if the change alters data boundaries, core entities, or persistence patterns that future work should follow.
37
39
 
38
40
  ## Verification
39
41
 
@@ -57,8 +59,9 @@ DATABASE_WORKFLOW_RESULT:
57
59
  query_optimization:
58
60
  queries_reviewed: <number>
59
61
  indexes_recommended: [<string>] | []
62
+ doc_impact: none | tech | rules | both
60
63
  integrity_checks: [<string>]
61
64
  follow_up_items: [<string>] | []
62
65
  ```
63
66
 
64
- > **Codex note:** This workflow runs inside a network-restricted sandbox. Specialists are reasoning postures defined in AGENTS.md, not spawned processes.
67
+ > **Codex note:** Prefer native Codex delegation when the host exposes it. Otherwise follow AGENTS.md specialist postures inline while keeping the same routing and verification contract.
@@ -60,4 +60,4 @@ DEBUG_WORKFLOW_RESULT:
60
60
  follow_up_items: [<string>] | []
61
61
  ```
62
62
 
63
- > **Codex note:** This workflow runs inside a network-restricted sandbox. Specialists are reasoning postures defined in AGENTS.md, not spawned processes.
63
+ > **Codex note:** Prefer native Codex delegation when the host exposes it. Otherwise follow AGENTS.md specialist postures inline while keeping the same routing and verification contract.
@@ -75,4 +75,4 @@ DEVOPS_WORKFLOW_RESULT:
75
75
  follow_up_items: [<string>] | []
76
76
  ```
77
77
 
78
- > **Codex note:** This workflow runs inside a network-restricted sandbox. Specialists are reasoning postures defined in AGENTS.md, not spawned processes.
78
+ > **Codex note:** Prefer native Codex delegation when the host exposes it. Otherwise follow AGENTS.md specialist postures inline while keeping the same routing and verification contract.
@@ -20,6 +20,8 @@ Use this for large-scale implementation work that spans multiple sessions or mil
20
20
 
21
21
  - This workflow file, active platform rules, and selected agents or skills guide execution.
22
22
  - Attach the implementation plan, milestone definitions, and acceptance criteria per milestone.
23
+ - Reuse `docs/specs/<spec-id>/` when present instead of maintaining a separate progress source of truth.
24
+ - Read `ENGINEERING_RULES.md` first and `TECH.md` next before starting milestone execution.
23
25
 
24
26
  ## Skill Routing
25
27
 
@@ -33,7 +35,7 @@ Use this for large-scale implementation work that spans multiple sessions or mil
33
35
  2. Execute current milestone with focused implementation.
34
36
  3. Run quality gate validation at milestone completion.
35
37
  4. Update progress tracking and capture status.
36
- 5. Adjust remaining plan based on learnings.
38
+ 5. Adjust remaining plan, spec traceability, and doc refresh needs based on learnings.
37
39
  6. Proceed to next milestone or report completion.
38
40
 
39
41
  ## Verification
@@ -59,7 +61,11 @@ IMPLEMENT_TRACK_WORKFLOW_RESULT:
59
61
  validation_evidence: <string>
60
62
  overall_progress: <percentage>
61
63
  scope_changes: [<string>] | []
64
+ spec_id: <string> | null
65
+ spec_root: docs/specs/<spec-id> | null
66
+ traceability_status: complete | partial | blocked
67
+ doc_impact: none | tech | rules | both
62
68
  follow_up_items: [<string>] | []
63
69
  ```
64
70
 
65
- > **Codex note:** This workflow runs inside a network-restricted sandbox. Specialists are reasoning postures defined in AGENTS.md, not spawned processes.
71
+ > **Codex note:** Prefer native Codex delegation when the host exposes it. Otherwise follow AGENTS.md specialist postures inline while keeping the same routing and verification contract.
@@ -28,6 +28,7 @@ Use this for technology migrations, framework upgrades, dependency updates, or m
28
28
 
29
29
  - This workflow file, active platform rules, and selected agents or skills guide execution.
30
30
  - Attach the migration target, current versions, breaking change lists, and impact assessment.
31
+ - Read `ENGINEERING_RULES.md` and `TECH.md` first because migrations often change accepted patterns and current-state architecture at the same time.
31
32
 
32
33
  ## Skill Routing
33
34
 
@@ -42,7 +43,8 @@ Use this for technology migrations, framework upgrades, dependency updates, or m
42
43
  3. Plan incremental migration steps with rollback points.
43
44
  4. Execute migration one step at a time with verification.
44
45
  5. Update tests and documentation for new patterns.
45
- 6. Verify full system behavior after migration complete.
46
+ 6. Set `doc_impact` when the migration changes architecture, deployment shape, boundaries, or design-system rules.
47
+ 7. Verify full system behavior after migration complete.
46
48
 
47
49
  ## Verification
48
50
 
@@ -69,7 +71,8 @@ MIGRATE_WORKFLOW_RESULT:
69
71
  verification:
70
72
  tests_passed: true | false
71
73
  performance_impact: <string>
74
+ doc_impact: none | tech | rules | both
72
75
  follow_up_items: [<string>] | []
73
76
  ```
74
77
 
75
- > **Codex note:** This workflow runs inside a network-restricted sandbox. Specialists are reasoning postures defined in AGENTS.md, not spawned processes.
78
+ > **Codex note:** Prefer native Codex delegation when the host exposes it. Otherwise follow AGENTS.md specialist postures inline while keeping the same routing and verification contract.
@@ -20,6 +20,7 @@ Use this for mobile app development, Flutter architecture, Stitch-driven mobile
20
20
 
21
21
  - This workflow file, active platform rules, and selected agents or skills guide execution.
22
22
  - Attach platform targets (iOS, Android, both), Flutter version, and relevant screen/feature context.
23
+ - Read `ENGINEERING_RULES.md` and `TECH.md` before implementing non-trivial mobile work so screens and features follow the declared architecture and design-system rules.
23
24
 
24
25
  ## Skill Routing
25
26
 
@@ -35,6 +36,7 @@ Use this for mobile app development, Flutter architecture, Stitch-driven mobile
35
36
  3. Implement with consideration for iOS/Android differences.
36
37
  4. Write widget and integration tests.
37
38
  5. Review for platform-specific edge cases and UX conventions.
39
+ 6. Set `doc_impact` if the feature changes navigation, shared UI rules, or mobile architecture conventions.
38
40
 
39
41
  ## Verification
40
42
 
@@ -62,7 +64,8 @@ MOBILE_WORKFLOW_RESULT:
62
64
  platform_notes:
63
65
  ios: [<string>] | []
64
66
  android: [<string>] | []
67
+ doc_impact: none | tech | rules | both
65
68
  follow_up_items: [<string>] | []
66
69
  ```
67
70
 
68
- > **Codex note:** This workflow runs inside a network-restricted sandbox. Specialists are reasoning postures defined in AGENTS.md, not spawned processes.
71
+ > **Codex note:** Prefer native Codex delegation when the host exposes it. Otherwise follow AGENTS.md specialist postures inline while keeping the same routing and verification contract.
@@ -27,6 +27,7 @@ Use this when joining a new project, exploring an unfamiliar codebase, or prepar
27
27
 
28
28
  - This workflow file, active platform rules, and selected agents or skills guide execution.
29
29
  - Provide the repo URL, focus areas, and any specific questions to answer during onboarding.
30
+ - Read `ENGINEERING_RULES.md` first and `TECH.md` next when present so onboarding distinguishes the intended contract from current implementation reality.
30
31
 
31
32
  ## Skill Routing
32
33
 
@@ -68,4 +69,4 @@ ONBOARD_WORKFLOW_RESULT:
68
69
  knowledge_gaps: [<string>] | []
69
70
  ```
70
71
 
71
- > **Codex note:** This workflow runs inside a network-restricted sandbox. Specialists are reasoning postures defined in AGENTS.md, not spawned processes.
72
+ > **Codex note:** Prefer native Codex delegation when the host exposes it. Otherwise follow AGENTS.md specialist postures inline while keeping the same routing and verification contract.
@@ -20,6 +20,7 @@ Use this when a task spans multiple domains (backend + frontend, security + infr
20
20
 
21
21
  - This workflow file, active platform rules, and selected agents or skills guide execution.
22
22
  - Attach the full task description, constraints, acceptance criteria, and relevant context when starting.
23
+ - Read `ENGINEERING_RULES.md` and `TECH.md` before decomposing non-trivial work, then reuse any existing `docs/specs/<spec-id>/` pack as the handoff source of truth.
23
24
 
24
25
  ## Skill Routing
25
26
 
@@ -34,7 +35,8 @@ Use this when a task spans multiple domains (backend + frontend, security + infr
34
35
  3. Delegate each task to the best specialist agent with full context.
35
36
  4. Validate each deliverable against acceptance criteria via independent validation.
36
37
  5. Iterate on failed validations with specific feedback (max 3 iterations).
37
- 6. Integrate outputs, verify cross-task consistency, and report results.
38
+ 6. Surface `doc_impact` when the coordinated work changes architecture, boundaries, scale, or the design system.
39
+ 7. Integrate outputs, verify cross-task consistency, and report results.
38
40
 
39
41
  ## Verification
40
42
 
@@ -51,6 +53,8 @@ ORCHESTRATE_WORKFLOW_RESULT:
51
53
  supporting_agents: [<specialist-agents-used>]
52
54
  primary_skills: [system-design, api-design]
53
55
  supporting_skills: [<supporting-skills-used>]
56
+ spec_id: <string> | null
57
+ spec_root: docs/specs/<spec-id> | null
54
58
  task_count: <number>
55
59
  completed: <number>
56
60
  failed: <number>
@@ -61,8 +65,9 @@ ORCHESTRATE_WORKFLOW_RESULT:
61
65
  iterations: <number>
62
66
  validation_evidence: <string>
63
67
  integration_status: clean | conflicts_resolved | issues_remaining
68
+ doc_impact: none | tech | rules | both
64
69
  remaining_risks: [<string>] | []
65
70
  follow_up_actions: [<string>] | []
66
71
  ```
67
72
 
68
- > **Codex note:** This workflow runs inside a network-restricted sandbox. Specialists are reasoning postures defined in AGENTS.md, not spawned processes.
73
+ > **Codex note:** Prefer native Codex delegation when the host exposes it. Otherwise follow AGENTS.md specialist postures inline while keeping the same routing and verification contract.
@@ -4,7 +4,6 @@ description: "Build a decision-complete implementation plan with interfaces, fai
4
4
  triggers:
5
5
  [
6
6
  "plan",
7
- "spec",
8
7
  "design",
9
8
  "roadmap",
10
9
  "acceptance",
@@ -32,6 +31,8 @@ Use this when starting a new feature, project, or significant change that needs
32
31
 
33
32
  - This workflow file, active platform rules, and selected agents or skills guide execution.
34
33
  - Attach the feature request, problem statement, constraints, and any existing design documents.
34
+ - Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before finalizing a non-trivial plan.
35
+ - Reuse an existing `docs/specs/<spec-id>/` pack when the change already has one instead of creating a parallel planning track.
35
36
 
36
37
  ## Skill Routing
37
38
 
@@ -46,7 +47,8 @@ Use this when starting a new feature, project, or significant change that needs
46
47
  3. Decompose into tasks with ownership and dependencies.
47
48
  4. Define interfaces, contracts, and failure modes.
48
49
  5. Produce acceptance criteria for each milestone.
49
- 6. Identify risks, unknowns, and mitigation strategies.
50
+ 6. Record `architecture_impact`, `doc_impact`, and `traceability_status` when the work is non-trivial.
51
+ 7. Identify risks, unknowns, and mitigation strategies.
50
52
 
51
53
  ## Verification
52
54
 
@@ -63,6 +65,8 @@ PLAN_WORKFLOW_RESULT:
63
65
  supporting_agents: [orchestrator?, backend-specialist?, frontend-specialist?, database-architect?]
64
66
  primary_skills: [system-design, api-design]
65
67
  supporting_skills: [database-design?, deep-research?, mcp-server-builder?]
68
+ spec_id: <string> | null
69
+ spec_root: docs/specs/<spec-id> | null
66
70
  plan:
67
71
  scope_summary: <string>
68
72
  tasks:
@@ -74,7 +78,13 @@ PLAN_WORKFLOW_RESULT:
74
78
  interfaces: [<string>]
75
79
  risks: [<string>]
76
80
  milestones: [<string>]
81
+ architecture_impact:
82
+ summary: <string>
83
+ affects_structure: true | false
84
+ affects_design_system: true | false
85
+ doc_impact: none | tech | rules | both
86
+ traceability_status: complete | partial | blocked
77
87
  follow_up_items: [<string>] | []
78
88
  ```
79
89
 
80
- > **Codex note:** This workflow runs inside a network-restricted sandbox. Specialists are reasoning postures defined in AGENTS.md, not spawned processes.
90
+ > **Codex note:** Prefer native Codex delegation when the host exposes it. Otherwise follow AGENTS.md specialist postures inline while keeping the same routing and verification contract.
@@ -20,6 +20,7 @@ Use this when improving code structure, reducing tech debt, or modularizing with
20
20
 
21
21
  - This workflow file, active platform rules, and selected agents or skills guide execution.
22
22
  - Attach the target code, pain points, and any constraints on what can change.
23
+ - Read `ENGINEERING_RULES.md` and `TECH.md` first so behavior-preserving structure changes do not drift from the accepted architecture contract.
23
24
 
24
25
  ## Skill Routing
25
26
 
@@ -34,6 +35,7 @@ Use this when improving code structure, reducing tech debt, or modularizing with
34
35
  3. Apply one refactoring at a time with behavior preservation.
35
36
  4. Verify behavior unchanged after each step.
36
37
  5. Document the improved structure and any conventions established.
38
+ 6. Set `doc_impact` when the refactor changes project structure, module boundaries, or design-system conventions.
37
39
 
38
40
  ## Verification
39
41
 
@@ -57,8 +59,9 @@ REFACTOR_WORKFLOW_RESULT:
57
59
  quality_improvement:
58
60
  complexity_before: <string>
59
61
  complexity_after: <string>
62
+ doc_impact: none | tech | rules | both
60
63
  tests_added: [<test-file-path>] | []
61
64
  follow_up_items: [<string>] | []
62
65
  ```
63
66
 
64
- > **Codex note:** This workflow runs inside a network-restricted sandbox. Specialists are reasoning postures defined in AGENTS.md, not spawned processes.
67
+ > **Codex note:** Prefer native Codex delegation when the host exposes it. Otherwise follow AGENTS.md specialist postures inline while keeping the same routing and verification contract.
@@ -20,6 +20,7 @@ Use this when preparing a release, deploying to production, or managing a rollou
20
20
 
21
21
  - This workflow file, active platform rules, and selected agents or skills guide execution.
22
22
  - Attach the release scope, version number, changelog draft, and deployment target.
23
+ - Read `ENGINEERING_RULES.md` and `TECH.md` before release if the shipped changes touched architecture, scaling assumptions, or design-system rules.
23
24
 
24
25
  ## Skill Routing
25
26
 
@@ -35,6 +36,7 @@ Use this when preparing a release, deploying to production, or managing a rollou
35
36
  4. Execute staged rollout with health checks at each stage.
36
37
  5. Verify production health post-deployment.
37
38
  6. Document rollback procedure and post-release status.
39
+ 7. Set `doc_impact` if the release includes architecture-affecting work that should refresh the managed docs.
38
40
 
39
41
  ## Verification
40
42
 
@@ -61,7 +63,8 @@ RELEASE_WORKFLOW_RESULT:
61
63
  stages_completed: [<string>]
62
64
  health_checks: [<string>]
63
65
  rollback_plan: <string>
66
+ doc_impact: none | tech | rules | both
64
67
  follow_up_items: [<string>] | []
65
68
  ```
66
69
 
67
- > **Codex note:** This workflow runs inside a network-restricted sandbox. Specialists are reasoning postures defined in AGENTS.md, not spawned processes.
70
+ > **Codex note:** Prefer native Codex delegation when the host exposes it. Otherwise follow AGENTS.md specialist postures inline while keeping the same routing and verification contract.
@@ -63,4 +63,4 @@ REVIEW_WORKFLOW_RESULT:
63
63
  follow_up_items: [<string>] | []
64
64
  ```
65
65
 
66
- > **Codex note:** This workflow runs inside a network-restricted sandbox. Specialists are reasoning postures defined in AGENTS.md, not spawned processes.
66
+ > **Codex note:** Prefer native Codex delegation when the host exposes it. Otherwise follow AGENTS.md specialist postures inline while keeping the same routing and verification contract.
@@ -66,4 +66,4 @@ SECURITY_WORKFLOW_RESULT:
66
66
  follow_up_items: [<string>] | []
67
67
  ```
68
68
 
69
- > **Codex note:** This workflow runs inside a network-restricted sandbox. Specialists are reasoning postures defined in AGENTS.md, not spawned processes.
69
+ > **Codex note:** Prefer native Codex delegation when the host exposes it. Otherwise follow AGENTS.md specialist postures inline while keeping the same routing and verification contract.
@@ -0,0 +1,81 @@
1
+ ---
2
+ command: "/spec"
3
+ description: "Create or refresh a Git-tracked spec pack for non-trivial work, including acceptance criteria, traceability, architecture impact, and next-route handoff."
4
+ triggers:
5
+ [
6
+ "spec",
7
+ "sdd",
8
+ "source of truth",
9
+ "traceability",
10
+ "acceptance criteria",
11
+ "openspec",
12
+ "requirements",
13
+ "architecture impact",
14
+ ]
15
+ ---
16
+
17
+ # Spec Workflow
18
+
19
+ ## When to use
20
+
21
+ Use this for non-trivial work that needs durable planning in Git before implementation: medium or large features, multi-step changes, cross-session work, migrations, risky refactors, or any request that needs explicit acceptance and traceability.
22
+
23
+ ## Routing
24
+
25
+ - Primary coordinator: `the project-planner posture`
26
+ - Traceability and requirements support: `the researcher posture`
27
+ - Cross-domain coordination: `the orchestrator posture`
28
+ - Documentation and structure support: `the documentation-writer posture`
29
+
30
+ ## Skill Routing
31
+
32
+ - Primary skills: `spec-driven-delivery`, `sadd`
33
+ - Supporting skills (optional): `system-design`, `architecture-doc`, `deep-research`, `api-design`, `database-design`, `tech-doc`
34
+ - Start with `spec-driven-delivery` for the pack structure and handoff contract. Add `sadd` when mining requirements into testable assertions, `system-design` or `architecture-doc` when the spec changes structure, and `deep-research` only when repo-local evidence is insufficient.
35
+
36
+ ## Workflow steps
37
+
38
+ 1. Determine whether the task is non-trivial enough to justify a spec pack.
39
+ 2. Find an existing `docs/specs/<spec-id>/` pack or create a new stable `spec_id`.
40
+ 3. Write or refresh the spec pack with brief, acceptance, tasks, traceability, and handoff files.
41
+ 4. Record `architecture_impact`, `doc_impact`, and any required updates to `ENGINEERING_RULES.md` or `TECH.md`.
42
+ 5. Identify the next execution route and hand off without replanning the same work.
43
+
44
+ ## Context notes
45
+
46
+ - Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist because they define the accepted architecture contract and current state.
47
+ - Prefer repo evidence first; escalate to `deep-research` only when freshness, public comparison, or explicit research requests require it.
48
+ - Keep spec packs lean. Trivial one-step tasks should stay on the lightweight path with no new spec directory.
49
+
50
+ ## Verification
51
+
52
+ - `spec_id` and `spec_root` are stable and explicit.
53
+ - Acceptance criteria are testable and traceable.
54
+ - Task dependencies form a valid execution order.
55
+ - `architecture_impact`, `doc_impact`, and `traceability_status` are present.
56
+
57
+ ## Output Contract
58
+
59
+ ```yaml
60
+ SPEC_WORKFLOW_RESULT:
61
+ primary_agent: project-planner
62
+ supporting_agents: [researcher?, orchestrator?, documentation-writer?]
63
+ primary_skills: [spec-driven-delivery, sadd]
64
+ supporting_skills: [system-design?, architecture-doc?, deep-research?, api-design?, database-design?, tech-doc?]
65
+ spec_id: <string>
66
+ spec_root: docs/specs/<spec-id>
67
+ architecture_impact:
68
+ summary: <string>
69
+ affects_structure: true | false
70
+ affects_design_system: true | false
71
+ affects_testing_strategy: true | false
72
+ doc_impact: none | tech | rules | both
73
+ traceability_status: complete | partial | blocked
74
+ documents:
75
+ created: [<path>] | []
76
+ updated: [<path>] | []
77
+ next_route: </create | /implement-track | /orchestrate | /architecture | direct>
78
+ gaps: [<string>] | []
79
+ ```
80
+
81
+ > **Codex note:** Prefer native Codex delegation when the host exposes it. Otherwise follow AGENTS.md specialist postures inline while keeping the same routing and verification contract.
@@ -63,4 +63,4 @@ TEST_WORKFLOW_RESULT:
63
63
  follow_up_items: [<string>] | []
64
64
  ```
65
65
 
66
- > **Codex note:** This workflow runs inside a network-restricted sandbox. Specialists are reasoning postures defined in AGENTS.md, not spawned processes.
66
+ > **Codex note:** Prefer native Codex delegation when the host exposes it. Otherwise follow AGENTS.md specialist postures inline while keeping the same routing and verification contract.
@@ -73,4 +73,4 @@ VERCEL_WORKFLOW_RESULT:
73
73
  follow_up_items: [<string>] | []
74
74
  ```
75
75
 
76
- > **Codex note:** This workflow runs inside a network-restricted sandbox. Specialists are reasoning postures defined in AGENTS.md, not spawned processes.
76
+ > **Codex note:** Prefer native Codex delegation when the host exposes it. Otherwise follow AGENTS.md specialist postures inline while keeping the same routing and verification contract.
@@ -7,7 +7,12 @@ Use this prompt with the matching workflow file:
7
7
 
8
8
  Execution contract:
9
9
  1. Treat route selection as already resolved by this prompt; do not begin with skill discovery.
10
- 2. Apply workflow sections in order: When to use, Workflow steps, Context notes, Verification.
11
- 3. Route to the workflow's primary specialist and only add supporting specialists when needed.
12
- 4. If freshness or public comparison matters, run `deep-research` before implementation and use official docs as primary evidence.
13
- 5. Return actions taken, verification evidence, and any gaps.
10
+ 2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
11
+ Attached skills:
12
+ - Load these exact skill IDs first: `code-review`, `frontend-design`, `performance-testing`, `react`, `nextjs`, `playwright-interactive`, `typescript-best-practices`, `javascript-best-practices`.
13
+ - Local skill file hints if installed: `.github/skills/code-review/SKILL.md`, `.github/skills/frontend-design/SKILL.md`, `.github/skills/performance-testing/SKILL.md`, `.github/skills/react/SKILL.md`, `.github/skills/nextjs/SKILL.md`, `.github/skills/playwright-interactive/SKILL.md`, `.github/skills/typescript-best-practices/SKILL.md`, `.github/skills/javascript-best-practices/SKILL.md`.
14
+ - Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
15
+ 3. Apply workflow sections in order: When to use, Workflow steps, Context notes, Verification.
16
+ 4. Route to the workflow's primary specialist and only add supporting specialists when needed.
17
+ 5. If freshness or public comparison matters, run `deep-research` before implementation and use official docs as primary evidence.
18
+ 6. Return actions taken, verification evidence, and any gaps.
@@ -0,0 +1,18 @@
1
+ # Workflow Prompt: /architecture
2
+
3
+ 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.
4
+
5
+ Use this prompt with the matching workflow file:
6
+ - Workflow: ../copilot/workflows/architecture.md
7
+
8
+ Execution contract:
9
+ 1. Treat route selection as already resolved by this prompt; do not begin with skill discovery.
10
+ 2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
11
+ Attached skills:
12
+ - Load these exact skill IDs first: `architecture-doc`, `system-design`, `tech-doc`, `frontend-design`, `api-design`, `database-design`, `sadd`, `deep-research`.
13
+ - Local skill file hints if installed: `.github/skills/architecture-doc/SKILL.md`, `.github/skills/system-design/SKILL.md`, `.github/skills/tech-doc/SKILL.md`, `.github/skills/frontend-design/SKILL.md`, `.github/skills/api-design/SKILL.md`, `.github/skills/database-design/SKILL.md`, `.github/skills/sadd/SKILL.md`, `.github/skills/deep-research/SKILL.md`.
14
+ - Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
15
+ 3. Apply workflow sections in order: When to use, Workflow steps, Context notes, Verification.
16
+ 4. Route to the workflow's primary specialist and only add supporting specialists when needed.
17
+ 5. If freshness or public comparison matters, run `deep-research` before implementation and use official docs as primary evidence.
18
+ 6. Return actions taken, verification evidence, and any gaps.
@@ -7,7 +7,12 @@ Use this prompt with the matching workflow file:
7
7
 
8
8
  Execution contract:
9
9
  1. Treat route selection as already resolved by this prompt; do not begin with skill discovery.
10
- 2. Apply workflow sections in order: When to use, Workflow steps, Context notes, Verification.
11
- 3. Route to the workflow's primary specialist and only add supporting specialists when needed.
12
- 4. If freshness or public comparison matters, run `deep-research` before implementation and use official docs as primary evidence.
13
- 5. Return actions taken, verification evidence, and any gaps.
10
+ 2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
11
+ Attached skills:
12
+ - 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`.
13
+ - Local skill file hints if installed: `.github/skills/api-design/SKILL.md`, `.github/skills/javascript-best-practices/SKILL.md`, `.github/skills/owasp-security-review/SKILL.md`, `.github/skills/database-design/SKILL.md`, `.github/skills/nestjs/SKILL.md`, `.github/skills/fastapi/SKILL.md`, `.github/skills/microservices-design/SKILL.md`, `.github/skills/drizzle-orm/SKILL.md`.
14
+ - Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
15
+ 3. Apply workflow sections in order: When to use, Workflow steps, Context notes, Verification.
16
+ 4. Route to the workflow's primary specialist and only add supporting specialists when needed.
17
+ 5. If freshness or public comparison matters, run `deep-research` before implementation and use official docs as primary evidence.
18
+ 6. Return actions taken, verification evidence, and any gaps.
@@ -7,7 +7,12 @@ Use this prompt with the matching workflow file:
7
7
 
8
8
  Execution contract:
9
9
  1. Treat route selection as already resolved by this prompt; do not begin with skill discovery.
10
- 2. Apply workflow sections in order: When to use, Workflow steps, Context notes, Verification.
11
- 3. Route to the workflow's primary specialist and only add supporting specialists when needed.
12
- 4. If freshness or public comparison matters, run `deep-research` before implementation and use official docs as primary evidence.
13
- 5. Return actions taken, verification evidence, and any gaps.
10
+ 2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
11
+ Attached skills:
12
+ - 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`.
13
+ - Local skill file hints if installed: `.github/skills/typescript-best-practices/SKILL.md`, `.github/skills/javascript-best-practices/SKILL.md`, `.github/skills/python-best-practices/SKILL.md`, `.github/skills/golang-best-practices/SKILL.md`, `.github/skills/java-best-practices/SKILL.md`, `.github/skills/csharp-best-practices/SKILL.md`, `.github/skills/kotlin-best-practices/SKILL.md`, `.github/skills/rust-best-practices/SKILL.md`.
14
+ - Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
15
+ 3. Apply workflow sections in order: When to use, Workflow steps, Context notes, Verification.
16
+ 4. Route to the workflow's primary specialist and only add supporting specialists when needed.
17
+ 5. If freshness or public comparison matters, run `deep-research` before implementation and use official docs as primary evidence.
18
+ 6. Return actions taken, verification evidence, and any gaps.
@@ -7,7 +7,12 @@ Use this prompt with the matching workflow file:
7
7
 
8
8
  Execution contract:
9
9
  1. Treat route selection as already resolved by this prompt; do not begin with skill discovery.
10
- 2. Apply workflow sections in order: When to use, Workflow steps, Context notes, Verification.
11
- 3. Route to the workflow's primary specialist and only add supporting specialists when needed.
12
- 4. If freshness or public comparison matters, run `deep-research` before implementation and use official docs as primary evidence.
13
- 5. Return actions taken, verification evidence, and any gaps.
10
+ 2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
11
+ Attached skills:
12
+ - Load these exact skill IDs first: `database-design`, `drizzle-orm`, `typescript-best-practices`, `javascript-best-practices`, `python-best-practices`.
13
+ - Local skill file hints if installed: `.github/skills/database-design/SKILL.md`, `.github/skills/drizzle-orm/SKILL.md`, `.github/skills/typescript-best-practices/SKILL.md`, `.github/skills/javascript-best-practices/SKILL.md`, `.github/skills/python-best-practices/SKILL.md`.
14
+ - Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
15
+ 3. Apply workflow sections in order: When to use, Workflow steps, Context notes, Verification.
16
+ 4. Route to the workflow's primary specialist and only add supporting specialists when needed.
17
+ 5. If freshness or public comparison matters, run `deep-research` before implementation and use official docs as primary evidence.
18
+ 6. Return actions taken, verification evidence, and any gaps.
@@ -7,7 +7,12 @@ Use this prompt with the matching workflow file:
7
7
 
8
8
  Execution contract:
9
9
  1. Treat route selection as already resolved by this prompt; do not begin with skill discovery.
10
- 2. Apply workflow sections in order: When to use, Workflow steps, Context notes, Verification.
11
- 3. Route to the workflow's primary specialist and only add supporting specialists when needed.
12
- 4. If freshness or public comparison matters, run `deep-research` before implementation and use official docs as primary evidence.
13
- 5. Return actions taken, verification evidence, and any gaps.
10
+ 2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
11
+ Attached skills:
12
+ - 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`.
13
+ - Local skill file hints if installed: `.github/skills/systematic-debugging/SKILL.md`, `.github/skills/observability/SKILL.md`, `.github/skills/unit-testing/SKILL.md`, `.github/skills/typescript-best-practices/SKILL.md`, `.github/skills/javascript-best-practices/SKILL.md`, `.github/skills/python-best-practices/SKILL.md`, `.github/skills/golang-best-practices/SKILL.md`, `.github/skills/java-best-practices/SKILL.md`.
14
+ - Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
15
+ 3. Apply workflow sections in order: When to use, Workflow steps, Context notes, Verification.
16
+ 4. Route to the workflow's primary specialist and only add supporting specialists when needed.
17
+ 5. If freshness or public comparison matters, run `deep-research` before implementation and use official docs as primary evidence.
18
+ 6. Return actions taken, verification evidence, and any gaps.
@@ -7,7 +7,12 @@ Use this prompt with the matching workflow file:
7
7
 
8
8
  Execution contract:
9
9
  1. Treat route selection as already resolved by this prompt; do not begin with skill discovery.
10
- 2. Apply workflow sections in order: When to use, Workflow steps, Context notes, Verification.
11
- 3. Route to the workflow's primary specialist and only add supporting specialists when needed.
12
- 4. If freshness or public comparison matters, run `deep-research` before implementation and use official docs as primary evidence.
13
- 5. Return actions taken, verification evidence, and any gaps.
10
+ 2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
11
+ Attached skills:
12
+ - Load these exact skill IDs first: `ci-cd-pipeline`, `kubernetes-deploy`, `observability`, `git-workflow`, `systematic-debugging`, `typescript-best-practices`, `javascript-best-practices`, `python-best-practices`, `golang-best-practices`.
13
+ - Local skill file hints if installed: `.github/skills/ci-cd-pipeline/SKILL.md`, `.github/skills/kubernetes-deploy/SKILL.md`, `.github/skills/observability/SKILL.md`, `.github/skills/git-workflow/SKILL.md`, `.github/skills/systematic-debugging/SKILL.md`, `.github/skills/typescript-best-practices/SKILL.md`, `.github/skills/javascript-best-practices/SKILL.md`, `.github/skills/python-best-practices/SKILL.md`.
14
+ - Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
15
+ 3. Apply workflow sections in order: When to use, Workflow steps, Context notes, Verification.
16
+ 4. Route to the workflow's primary specialist and only add supporting specialists when needed.
17
+ 5. If freshness or public comparison matters, run `deep-research` before implementation and use official docs as primary evidence.
18
+ 6. Return actions taken, verification evidence, and any gaps.
@@ -7,7 +7,12 @@ Use this prompt with the matching workflow file:
7
7
 
8
8
  Execution contract:
9
9
  1. Treat route selection as already resolved by this prompt; do not begin with skill discovery.
10
- 2. Apply workflow sections in order: When to use, Workflow steps, Context notes, Verification.
11
- 3. Route to the workflow's primary specialist and only add supporting specialists when needed.
12
- 4. If freshness or public comparison matters, run `deep-research` before implementation and use official docs as primary evidence.
13
- 5. Return actions taken, verification evidence, and any gaps.
10
+ 2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
11
+ Attached skills:
12
+ - Load these exact skill IDs first: `system-design`, `api-design`, `database-design`, `typescript-best-practices`, `javascript-best-practices`, `python-best-practices`, `golang-best-practices`, `react`, `nextjs`.
13
+ - Local skill file hints if installed: `.github/skills/system-design/SKILL.md`, `.github/skills/api-design/SKILL.md`, `.github/skills/database-design/SKILL.md`, `.github/skills/typescript-best-practices/SKILL.md`, `.github/skills/javascript-best-practices/SKILL.md`, `.github/skills/python-best-practices/SKILL.md`, `.github/skills/golang-best-practices/SKILL.md`, `.github/skills/react/SKILL.md`.
14
+ - Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
15
+ 3. Apply workflow sections in order: When to use, Workflow steps, Context notes, Verification.
16
+ 4. Route to the workflow's primary specialist and only add supporting specialists when needed.
17
+ 5. If freshness or public comparison matters, run `deep-research` before implementation and use official docs as primary evidence.
18
+ 6. Return actions taken, verification evidence, and any gaps.