@cubis/foundry 0.3.76 → 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 (276) 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 +844 -25
  6. package/dist/cli/core.js.map +1 -1
  7. package/mcp/src/tools/skillTools.test.ts +34 -1
  8. package/package.json +4 -3
  9. package/src/cli/build/commands.ts +39 -0
  10. package/src/cli/commands/register.ts +6 -0
  11. package/src/cli/core.ts +1026 -28
  12. package/workflows/skills/_schema/skill-platform-attributes.json +7 -0
  13. package/workflows/skills/deep-research/SKILL.md +81 -0
  14. package/workflows/skills/deep-research/evals/assertions.md +17 -0
  15. package/workflows/skills/deep-research/evals/evals.json +56 -0
  16. package/workflows/skills/deep-research/examples/01-latest-docs-check.md +12 -0
  17. package/workflows/skills/deep-research/examples/02-ecosystem-comparison.md +12 -0
  18. package/workflows/skills/deep-research/examples/03-research-to-implementation-handoff.md +12 -0
  19. package/workflows/skills/deep-research/references/comparison-checklist.md +57 -0
  20. package/workflows/skills/deep-research/references/research-output.md +69 -0
  21. package/workflows/skills/deep-research/references/source-ladder.md +81 -0
  22. package/workflows/skills/generated/skill-audit.json +20 -2
  23. package/workflows/skills/generated/skill-catalog.json +70 -4
  24. package/workflows/skills/skills_index.json +66 -0
  25. package/workflows/skills/spec-driven-delivery/SKILL.md +63 -0
  26. package/workflows/workflows/agent-environment-setup/generated/route-manifest.json +123 -10
  27. package/workflows/workflows/agent-environment-setup/manifest.json +48 -1
  28. package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/orchestrator.md +6 -5
  29. package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/project-planner.md +4 -3
  30. package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/researcher.md +8 -4
  31. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/accessibility.toml +10 -3
  32. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/architecture.toml +19 -0
  33. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/backend.toml +10 -3
  34. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/create.toml +10 -3
  35. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/database.toml +10 -3
  36. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/debug.toml +10 -3
  37. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/devops.toml +10 -3
  38. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/implement-track.toml +10 -3
  39. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/migrate.toml +10 -3
  40. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/mobile.toml +10 -3
  41. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/onboard.toml +10 -3
  42. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/orchestrate.toml +10 -3
  43. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/plan.toml +10 -3
  44. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/refactor.toml +10 -3
  45. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/release.toml +10 -3
  46. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/review.toml +10 -3
  47. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/security.toml +10 -3
  48. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/spec.toml +19 -0
  49. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/test.toml +10 -3
  50. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/vercel.toml +10 -3
  51. package/workflows/workflows/agent-environment-setup/platforms/antigravity/rules/GEMINI.md +15 -8
  52. package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/SKILL.md +89 -0
  53. package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/evals/assertions.md +17 -0
  54. package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/evals/evals.json +56 -0
  55. package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/examples/01-latest-docs-check.md +12 -0
  56. package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/examples/02-ecosystem-comparison.md +12 -0
  57. package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/examples/03-research-to-implementation-handoff.md +12 -0
  58. package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/references/comparison-checklist.md +57 -0
  59. package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/references/research-output.md +69 -0
  60. package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/references/source-ladder.md +81 -0
  61. package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/spec-driven-delivery/SKILL.md +65 -0
  62. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/architecture.md +82 -0
  63. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/backend.md +3 -0
  64. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/create.md +4 -1
  65. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/database.md +3 -0
  66. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/implement-track.md +7 -1
  67. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/migrate.md +4 -1
  68. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/mobile.md +3 -0
  69. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/onboard.md +4 -3
  70. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/orchestrate.md +8 -3
  71. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/plan.md +16 -6
  72. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/refactor.md +3 -0
  73. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/release.md +3 -0
  74. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/spec.md +81 -0
  75. package/workflows/workflows/agent-environment-setup/platforms/claude/agents/orchestrator.md +6 -5
  76. package/workflows/workflows/agent-environment-setup/platforms/claude/agents/project-planner.md +4 -3
  77. package/workflows/workflows/agent-environment-setup/platforms/claude/agents/researcher.md +8 -4
  78. package/workflows/workflows/agent-environment-setup/platforms/claude/hooks/README.md +15 -0
  79. package/workflows/workflows/agent-environment-setup/platforms/claude/hooks/route-research-guard.mjs +39 -0
  80. package/workflows/workflows/agent-environment-setup/platforms/claude/hooks/settings.snippet.json +15 -0
  81. package/workflows/workflows/agent-environment-setup/platforms/claude/rules/CLAUDE.md +17 -8
  82. package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/SKILL.md +95 -0
  83. package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/evals/assertions.md +17 -0
  84. package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/evals/evals.json +56 -0
  85. package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/examples/01-latest-docs-check.md +12 -0
  86. package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/examples/02-ecosystem-comparison.md +12 -0
  87. package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/examples/03-research-to-implementation-handoff.md +12 -0
  88. package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/references/comparison-checklist.md +57 -0
  89. package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/references/research-output.md +69 -0
  90. package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/references/source-ladder.md +81 -0
  91. package/workflows/workflows/agent-environment-setup/platforms/claude/skills/skills_index.json +66 -0
  92. package/workflows/workflows/agent-environment-setup/platforms/claude/skills/spec-driven-delivery/SKILL.md +66 -0
  93. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/architecture.md +80 -0
  94. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/backend.md +3 -0
  95. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/create.md +4 -1
  96. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/database.md +3 -0
  97. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/implement-track.md +7 -1
  98. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/migrate.md +4 -1
  99. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/mobile.md +3 -0
  100. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/onboard.md +4 -3
  101. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/orchestrate.md +8 -3
  102. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/plan.md +16 -6
  103. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/refactor.md +3 -0
  104. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/release.md +3 -0
  105. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/spec.md +79 -0
  106. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/backend-specialist.md +1 -1
  107. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/code-archaeologist.md +1 -1
  108. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/database-architect.md +1 -1
  109. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/debugger.md +1 -1
  110. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/devops-engineer.md +1 -1
  111. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/documentation-writer.md +1 -1
  112. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/frontend-specialist.md +1 -1
  113. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/game-developer.md +1 -1
  114. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/mobile-developer.md +1 -1
  115. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/orchestrator.md +7 -6
  116. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/penetration-tester.md +1 -1
  117. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/performance-optimizer.md +1 -1
  118. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/product-manager.md +1 -1
  119. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/project-planner.md +5 -4
  120. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/qa-automation-engineer.md +1 -1
  121. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/researcher.md +9 -5
  122. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/security-auditor.md +1 -1
  123. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/seo-specialist.md +1 -1
  124. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/sre-engineer.md +1 -1
  125. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/test-engineer.md +1 -1
  126. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/validator.md +1 -1
  127. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/vercel-expert.md +1 -1
  128. package/workflows/workflows/agent-environment-setup/platforms/codex/rules/AGENTS.md +15 -8
  129. package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/SKILL.md +89 -0
  130. package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/evals/assertions.md +17 -0
  131. package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/evals/evals.json +56 -0
  132. package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/examples/01-latest-docs-check.md +12 -0
  133. package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/examples/02-ecosystem-comparison.md +12 -0
  134. package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/examples/03-research-to-implementation-handoff.md +12 -0
  135. package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/references/comparison-checklist.md +57 -0
  136. package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/references/research-output.md +69 -0
  137. package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/references/source-ladder.md +81 -0
  138. package/workflows/workflows/agent-environment-setup/platforms/codex/skills/spec-driven-delivery/SKILL.md +65 -0
  139. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/accessibility.md +1 -1
  140. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/architecture.md +82 -0
  141. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/backend.md +4 -1
  142. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/create.md +5 -2
  143. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/database.md +4 -1
  144. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/debug.md +1 -1
  145. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/devops.md +1 -1
  146. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/implement-track.md +8 -2
  147. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/migrate.md +5 -2
  148. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/mobile.md +4 -1
  149. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/onboard.md +5 -4
  150. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/orchestrate.md +9 -4
  151. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/plan.md +17 -7
  152. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/refactor.md +4 -1
  153. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/release.md +4 -1
  154. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/review.md +1 -1
  155. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/security.md +1 -1
  156. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/spec.md +81 -0
  157. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/test.md +1 -1
  158. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/vercel.md +1 -1
  159. package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/orchestrator.md +6 -5
  160. package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/project-planner.md +4 -3
  161. package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/researcher.md +8 -4
  162. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-accessibility.prompt.md +9 -3
  163. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-architecture.prompt.md +18 -0
  164. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-backend.prompt.md +9 -3
  165. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-create.prompt.md +9 -3
  166. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-database.prompt.md +9 -3
  167. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-debug.prompt.md +9 -3
  168. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-devops.prompt.md +9 -3
  169. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-implement-track.prompt.md +9 -3
  170. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-migrate.prompt.md +9 -3
  171. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-mobile.prompt.md +9 -3
  172. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-onboard.prompt.md +9 -3
  173. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-orchestrate.prompt.md +9 -3
  174. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-plan.prompt.md +9 -3
  175. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-refactor.prompt.md +9 -3
  176. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-release.prompt.md +9 -3
  177. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-review.prompt.md +9 -3
  178. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-security.prompt.md +9 -3
  179. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-spec.prompt.md +18 -0
  180. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-test.prompt.md +9 -3
  181. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-vercel.prompt.md +9 -3
  182. package/workflows/workflows/agent-environment-setup/platforms/copilot/rules/copilot-instructions.md +15 -8
  183. package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/SKILL.md +94 -0
  184. package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/evals/assertions.md +17 -0
  185. package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/evals/evals.json +56 -0
  186. package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/examples/01-latest-docs-check.md +12 -0
  187. package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/examples/02-ecosystem-comparison.md +12 -0
  188. package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/examples/03-research-to-implementation-handoff.md +12 -0
  189. package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/references/comparison-checklist.md +57 -0
  190. package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/references/research-output.md +69 -0
  191. package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/references/source-ladder.md +81 -0
  192. package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/skills_index.json +66 -0
  193. package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/spec-driven-delivery/SKILL.md +70 -0
  194. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/architecture.md +80 -0
  195. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/backend.md +3 -0
  196. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/create.md +4 -1
  197. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/database.md +3 -0
  198. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/implement-track.md +7 -1
  199. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/migrate.md +4 -1
  200. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/mobile.md +3 -0
  201. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/onboard.md +4 -3
  202. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/orchestrate.md +8 -3
  203. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/plan.md +16 -6
  204. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/refactor.md +3 -0
  205. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/release.md +3 -0
  206. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/spec.md +79 -0
  207. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/accessibility.toml +10 -3
  208. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/architecture.toml +19 -0
  209. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/backend.toml +10 -3
  210. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/create.toml +10 -3
  211. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/database.toml +10 -3
  212. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/debug.toml +10 -3
  213. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/devops.toml +10 -3
  214. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/implement-track.toml +10 -3
  215. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/migrate.toml +10 -3
  216. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/mobile.toml +10 -3
  217. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/onboard.toml +10 -3
  218. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/orchestrate.toml +10 -3
  219. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/plan.toml +10 -3
  220. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/refactor.toml +10 -3
  221. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/release.toml +10 -3
  222. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/review.toml +10 -3
  223. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/security.toml +10 -3
  224. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/spec.toml +19 -0
  225. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/test.toml +10 -3
  226. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/vercel.toml +10 -3
  227. package/workflows/workflows/agent-environment-setup/platforms/gemini/rules/GEMINI.md +15 -8
  228. package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/SKILL.md +89 -0
  229. package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/evals/assertions.md +17 -0
  230. package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/evals/evals.json +56 -0
  231. package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/examples/01-latest-docs-check.md +12 -0
  232. package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/examples/02-ecosystem-comparison.md +12 -0
  233. package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/examples/03-research-to-implementation-handoff.md +12 -0
  234. package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/references/comparison-checklist.md +57 -0
  235. package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/references/research-output.md +69 -0
  236. package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/references/source-ladder.md +81 -0
  237. package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/spec-driven-delivery/SKILL.md +65 -0
  238. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/architecture.md +82 -0
  239. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/backend.md +3 -0
  240. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/create.md +4 -1
  241. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/database.md +3 -0
  242. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/implement-track.md +7 -1
  243. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/migrate.md +4 -1
  244. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/mobile.md +3 -0
  245. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/onboard.md +4 -3
  246. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/orchestrate.md +8 -3
  247. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/plan.md +16 -6
  248. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/refactor.md +3 -0
  249. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/release.md +3 -0
  250. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/spec.md +81 -0
  251. package/workflows/workflows/agent-environment-setup/shared/agents/backend-specialist.md +5 -5
  252. package/workflows/workflows/agent-environment-setup/shared/agents/database-architect.md +3 -3
  253. package/workflows/workflows/agent-environment-setup/shared/agents/orchestrator.md +10 -9
  254. package/workflows/workflows/agent-environment-setup/shared/agents/penetration-tester.md +3 -3
  255. package/workflows/workflows/agent-environment-setup/shared/agents/product-manager.md +6 -6
  256. package/workflows/workflows/agent-environment-setup/shared/agents/project-planner.md +10 -9
  257. package/workflows/workflows/agent-environment-setup/shared/agents/researcher.md +13 -9
  258. package/workflows/workflows/agent-environment-setup/shared/agents/security-auditor.md +2 -2
  259. package/workflows/workflows/agent-environment-setup/shared/rules/STEERING.md +57 -13
  260. package/workflows/workflows/agent-environment-setup/shared/rules/overrides/claude.md +2 -0
  261. package/workflows/workflows/agent-environment-setup/shared/rules/overrides/codex.md +3 -3
  262. package/workflows/workflows/agent-environment-setup/shared/rules/overrides/gemini.md +20 -0
  263. package/workflows/workflows/agent-environment-setup/shared/workflows/architecture.md +80 -0
  264. package/workflows/workflows/agent-environment-setup/shared/workflows/backend.md +8 -5
  265. package/workflows/workflows/agent-environment-setup/shared/workflows/create.md +5 -2
  266. package/workflows/workflows/agent-environment-setup/shared/workflows/database.md +6 -3
  267. package/workflows/workflows/agent-environment-setup/shared/workflows/implement-track.md +12 -6
  268. package/workflows/workflows/agent-environment-setup/shared/workflows/migrate.md +7 -4
  269. package/workflows/workflows/agent-environment-setup/shared/workflows/mobile.md +3 -0
  270. package/workflows/workflows/agent-environment-setup/shared/workflows/onboard.md +6 -5
  271. package/workflows/workflows/agent-environment-setup/shared/workflows/orchestrate.md +10 -5
  272. package/workflows/workflows/agent-environment-setup/shared/workflows/plan.md +18 -8
  273. package/workflows/workflows/agent-environment-setup/shared/workflows/refactor.md +5 -2
  274. package/workflows/workflows/agent-environment-setup/shared/workflows/release.md +3 -0
  275. package/workflows/workflows/agent-environment-setup/shared/workflows/security.md +2 -2
  276. package/workflows/workflows/agent-environment-setup/shared/workflows/spec.md +79 -0
@@ -20,12 +20,13 @@ 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
 
26
27
  - Primary skills: `system-design`, `api-design`
27
- - Supporting skills (optional): `database-design`, `architecture-doc`, `mcp-server-builder`, `tech-doc`, `prompt-engineering`, `skill-creator`
28
- - Start with `system-design` for system design coordination and `api-design` for integration contracts. Add supporting skills based on the coordination challenge.
28
+ - Supporting skills (optional): `database-design`, `deep-research`, `mcp-server-builder`, `tech-doc`, `prompt-engineering`, `skill-creator`
29
+ - Start with `system-design` for system design coordination and `api-design` for integration contracts. Add `deep-research` before implementation when the coordination challenge depends on fresh external facts or public comparison.
29
30
 
30
31
  ## Workflow steps
31
32
 
@@ -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,6 +65,7 @@ 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
  ```
@@ -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,21 +31,24 @@ 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
 
38
39
  - Primary skills: `system-design`, `api-design`
39
- - Supporting skills (optional): `database-design`, `architecture-doc`, `mcp-server-builder`, `tech-doc`, `prompt-engineering`, `skill-creator`
40
- - Start with `system-design` for system design and `api-design` for API contracts. Add `database-design` when data modeling is central, `architecture-doc` when external knowledge is needed.
40
+ - Supporting skills (optional): `database-design`, `deep-research`, `mcp-server-builder`, `tech-doc`, `prompt-engineering`, `skill-creator`
41
+ - Start with `system-design` for system design and `api-design` for API contracts. Add `database-design` when data modeling is central, `deep-research` when fresh external knowledge or public comparison is needed.
41
42
 
42
43
  ## Workflow steps
43
44
 
44
45
  1. Clarify scope, success criteria, and constraints.
45
- 2. Research existing patterns and dependencies.
46
+ 2. Research existing patterns and dependencies, starting in-repo and escalating to `deep-research` only when outside evidence is required.
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
 
@@ -62,7 +64,9 @@ PLAN_WORKFLOW_RESULT:
62
64
  primary_agent: project-planner
63
65
  supporting_agents: [orchestrator?, backend-specialist?, frontend-specialist?, database-architect?]
64
66
  primary_skills: [system-design, api-design]
65
- supporting_skills: [database-design?, architecture-doc?, mcp-server-builder?]
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,5 +78,11 @@ 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
  ```
@@ -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,6 +59,7 @@ 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
  ```
@@ -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,5 +63,6 @@ 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
  ```
@@ -0,0 +1,79 @@
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: `@project-planner`
26
+ - Traceability and requirements support: `@researcher`
27
+ - Cross-domain coordination: `@orchestrator`
28
+ - Documentation and structure support: `@documentation-writer`
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
+ ```
@@ -4,9 +4,16 @@ Follow the /accessibility workflow from .gemini/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.
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: `.gemini/skills/code-review/SKILL.md`, `.gemini/skills/frontend-design/SKILL.md`, `.gemini/skills/performance-testing/SKILL.md`, `.gemini/skills/react/SKILL.md`, `.gemini/skills/nextjs/SKILL.md`, `.gemini/skills/playwright-interactive/SKILL.md`, `.gemini/skills/typescript-best-practices/SKILL.md`, `.gemini/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 route to the researcher posture first.
16
+ 7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
17
 
11
18
  If command arguments are provided, treat them as additional user context.
12
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 .gemini/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: `.gemini/skills/architecture-doc/SKILL.md`, `.gemini/skills/system-design/SKILL.md`, `.gemini/skills/tech-doc/SKILL.md`, `.gemini/skills/frontend-design/SKILL.md`, `.gemini/skills/api-design/SKILL.md`, `.gemini/skills/database-design/SKILL.md`, `.gemini/skills/sadd/SKILL.md`, `.gemini/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 route to the researcher posture 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,9 +4,16 @@ Follow the /backend workflow from .gemini/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.
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: `.gemini/skills/api-design/SKILL.md`, `.gemini/skills/javascript-best-practices/SKILL.md`, `.gemini/skills/owasp-security-review/SKILL.md`, `.gemini/skills/database-design/SKILL.md`, `.gemini/skills/nestjs/SKILL.md`, `.gemini/skills/fastapi/SKILL.md`, `.gemini/skills/microservices-design/SKILL.md`, `.gemini/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 route to the researcher posture first.
16
+ 7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
17
 
11
18
  If command arguments are provided, treat them as additional user context.
12
19
  '''
@@ -4,9 +4,16 @@ Follow the /create workflow from .gemini/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.
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: `.gemini/skills/typescript-best-practices/SKILL.md`, `.gemini/skills/javascript-best-practices/SKILL.md`, `.gemini/skills/python-best-practices/SKILL.md`, `.gemini/skills/golang-best-practices/SKILL.md`, `.gemini/skills/java-best-practices/SKILL.md`, `.gemini/skills/csharp-best-practices/SKILL.md`, `.gemini/skills/kotlin-best-practices/SKILL.md`, `.gemini/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 route to the researcher posture first.
16
+ 7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
17
 
11
18
  If command arguments are provided, treat them as additional user context.
12
19
  '''
@@ -4,9 +4,16 @@ Follow the /database workflow from .gemini/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.
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: `.gemini/skills/database-design/SKILL.md`, `.gemini/skills/drizzle-orm/SKILL.md`, `.gemini/skills/typescript-best-practices/SKILL.md`, `.gemini/skills/javascript-best-practices/SKILL.md`, `.gemini/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 route to the researcher posture first.
16
+ 7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
17
 
11
18
  If command arguments are provided, treat them as additional user context.
12
19
  '''
@@ -4,9 +4,16 @@ Follow the /debug workflow from .gemini/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.
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: `.gemini/skills/systematic-debugging/SKILL.md`, `.gemini/skills/observability/SKILL.md`, `.gemini/skills/unit-testing/SKILL.md`, `.gemini/skills/typescript-best-practices/SKILL.md`, `.gemini/skills/javascript-best-practices/SKILL.md`, `.gemini/skills/python-best-practices/SKILL.md`, `.gemini/skills/golang-best-practices/SKILL.md`, `.gemini/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 route to the researcher posture first.
16
+ 7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
17
 
11
18
  If command arguments are provided, treat them as additional user context.
12
19
  '''
@@ -4,9 +4,16 @@ Follow the /devops workflow from .gemini/workflows/devops.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.
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: `ci-cd-pipeline`, `kubernetes-deploy`, `observability`, `git-workflow`, `systematic-debugging`, `typescript-best-practices`, `javascript-best-practices`, `python-best-practices`, `golang-best-practices`.
10
+ - Local skill file hints if installed: `.gemini/skills/ci-cd-pipeline/SKILL.md`, `.gemini/skills/kubernetes-deploy/SKILL.md`, `.gemini/skills/observability/SKILL.md`, `.gemini/skills/git-workflow/SKILL.md`, `.gemini/skills/systematic-debugging/SKILL.md`, `.gemini/skills/typescript-best-practices/SKILL.md`, `.gemini/skills/javascript-best-practices/SKILL.md`, `.gemini/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 route to the researcher posture first.
16
+ 7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
17
 
11
18
  If command arguments are provided, treat them as additional user context.
12
19
  '''
@@ -4,9 +4,16 @@ Follow the /implement-track workflow from .gemini/workflows/implement-track.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.
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: `system-design`, `api-design`, `database-design`, `typescript-best-practices`, `javascript-best-practices`, `python-best-practices`, `golang-best-practices`, `react`, `nextjs`.
10
+ - Local skill file hints if installed: `.gemini/skills/system-design/SKILL.md`, `.gemini/skills/api-design/SKILL.md`, `.gemini/skills/database-design/SKILL.md`, `.gemini/skills/typescript-best-practices/SKILL.md`, `.gemini/skills/javascript-best-practices/SKILL.md`, `.gemini/skills/python-best-practices/SKILL.md`, `.gemini/skills/golang-best-practices/SKILL.md`, `.gemini/skills/react/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 route to the researcher posture first.
16
+ 7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
17
 
11
18
  If command arguments are provided, treat them as additional user context.
12
19
  '''
@@ -4,9 +4,16 @@ Follow the /migrate workflow from .gemini/workflows/migrate.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.
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: `system-design`, `code-review`, `unit-testing`, `typescript-best-practices`, `javascript-best-practices`, `python-best-practices`, `golang-best-practices`.
10
+ - Local skill file hints if installed: `.gemini/skills/system-design/SKILL.md`, `.gemini/skills/code-review/SKILL.md`, `.gemini/skills/unit-testing/SKILL.md`, `.gemini/skills/typescript-best-practices/SKILL.md`, `.gemini/skills/javascript-best-practices/SKILL.md`, `.gemini/skills/python-best-practices/SKILL.md`, `.gemini/skills/golang-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 route to the researcher posture first.
16
+ 7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
17
 
11
18
  If command arguments are provided, treat them as additional user context.
12
19
  '''
@@ -4,9 +4,16 @@ Follow the /mobile workflow from .gemini/workflows/mobile.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.
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: `expo-app`, `react-native`, `stitch`, `frontend-design`, `swift-best-practices`, `kotlin-best-practices`.
10
+ - Local skill file hints if installed: `.gemini/skills/expo-app/SKILL.md`, `.gemini/skills/react-native/SKILL.md`, `.gemini/skills/stitch/SKILL.md`, `.gemini/skills/frontend-design/SKILL.md`, `.gemini/skills/swift-best-practices/SKILL.md`, `.gemini/skills/kotlin-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 route to the researcher posture first.
16
+ 7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
17
 
11
18
  If command arguments are provided, treat them as additional user context.
12
19
  '''
@@ -4,9 +4,16 @@ Follow the /onboard workflow from .gemini/workflows/onboard.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.
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: `deep-research`, `system-design`, `database-design`, `typescript-best-practices`, `javascript-best-practices`, `python-best-practices`.
10
+ - Local skill file hints if installed: `.gemini/skills/deep-research/SKILL.md`, `.gemini/skills/system-design/SKILL.md`, `.gemini/skills/database-design/SKILL.md`, `.gemini/skills/typescript-best-practices/SKILL.md`, `.gemini/skills/javascript-best-practices/SKILL.md`, `.gemini/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 route to the researcher posture first.
16
+ 7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
17
 
11
18
  If command arguments are provided, treat them as additional user context.
12
19
  '''
@@ -4,9 +4,16 @@ Follow the /orchestrate workflow from .gemini/workflows/orchestrate.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.
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: `system-design`, `api-design`, `database-design`, `deep-research`, `mcp-server-builder`, `tech-doc`, `prompt-engineering`, `skill-creator`.
10
+ - Local skill file hints if installed: `.gemini/skills/system-design/SKILL.md`, `.gemini/skills/api-design/SKILL.md`, `.gemini/skills/database-design/SKILL.md`, `.gemini/skills/deep-research/SKILL.md`, `.gemini/skills/mcp-server-builder/SKILL.md`, `.gemini/skills/tech-doc/SKILL.md`, `.gemini/skills/prompt-engineering/SKILL.md`, `.gemini/skills/skill-creator/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 route to the researcher posture first.
16
+ 7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
17
 
11
18
  If command arguments are provided, treat them as additional user context.
12
19
  '''
@@ -4,9 +4,16 @@ Follow the /plan workflow from .gemini/workflows/plan.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.
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: `system-design`, `api-design`, `database-design`, `deep-research`, `mcp-server-builder`, `tech-doc`, `prompt-engineering`, `skill-creator`.
10
+ - Local skill file hints if installed: `.gemini/skills/system-design/SKILL.md`, `.gemini/skills/api-design/SKILL.md`, `.gemini/skills/database-design/SKILL.md`, `.gemini/skills/deep-research/SKILL.md`, `.gemini/skills/mcp-server-builder/SKILL.md`, `.gemini/skills/tech-doc/SKILL.md`, `.gemini/skills/prompt-engineering/SKILL.md`, `.gemini/skills/skill-creator/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 route to the researcher posture first.
16
+ 7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
17
 
11
18
  If command arguments are provided, treat them as additional user context.
12
19
  '''
@@ -4,9 +4,16 @@ Follow the /refactor workflow from .gemini/workflows/refactor.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.
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`, `system-design`, `unit-testing`, `typescript-best-practices`, `javascript-best-practices`, `python-best-practices`, `golang-best-practices`.
10
+ - Local skill file hints if installed: `.gemini/skills/code-review/SKILL.md`, `.gemini/skills/system-design/SKILL.md`, `.gemini/skills/unit-testing/SKILL.md`, `.gemini/skills/typescript-best-practices/SKILL.md`, `.gemini/skills/javascript-best-practices/SKILL.md`, `.gemini/skills/python-best-practices/SKILL.md`, `.gemini/skills/golang-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 route to the researcher posture first.
16
+ 7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
17
 
11
18
  If command arguments are provided, treat them as additional user context.
12
19
  '''
@@ -4,9 +4,16 @@ Follow the /release workflow from .gemini/workflows/release.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.
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: `ci-cd-pipeline`, `git-workflow`, `tech-doc`, `observability`, `kubernetes-deploy`, `typescript-best-practices`, `javascript-best-practices`.
10
+ - Local skill file hints if installed: `.gemini/skills/ci-cd-pipeline/SKILL.md`, `.gemini/skills/git-workflow/SKILL.md`, `.gemini/skills/tech-doc/SKILL.md`, `.gemini/skills/observability/SKILL.md`, `.gemini/skills/kubernetes-deploy/SKILL.md`, `.gemini/skills/typescript-best-practices/SKILL.md`, `.gemini/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 route to the researcher posture first.
16
+ 7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
17
 
11
18
  If command arguments are provided, treat them as additional user context.
12
19
  '''
@@ -4,9 +4,16 @@ Follow the /review workflow from .gemini/workflows/review.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.
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`, `unit-testing`, `owasp-security-review`, `performance-testing`, `react`, `nextjs`, `typescript-best-practices`, `javascript-best-practices`, `python-best-practices`, `golang-best-practices`.
10
+ - Local skill file hints if installed: `.gemini/skills/code-review/SKILL.md`, `.gemini/skills/unit-testing/SKILL.md`, `.gemini/skills/owasp-security-review/SKILL.md`, `.gemini/skills/performance-testing/SKILL.md`, `.gemini/skills/react/SKILL.md`, `.gemini/skills/nextjs/SKILL.md`, `.gemini/skills/typescript-best-practices/SKILL.md`, `.gemini/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 route to the researcher posture first.
16
+ 7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
17
 
11
18
  If command arguments are provided, treat them as additional user context.
12
19
  '''
@@ -4,9 +4,16 @@ Follow the /security workflow from .gemini/workflows/security.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.
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: `owasp-security-review`, `code-review`, `api-design`, `typescript-best-practices`, `javascript-best-practices`, `python-best-practices`, `golang-best-practices`, `rust-best-practices`.
10
+ - Local skill file hints if installed: `.gemini/skills/owasp-security-review/SKILL.md`, `.gemini/skills/code-review/SKILL.md`, `.gemini/skills/api-design/SKILL.md`, `.gemini/skills/typescript-best-practices/SKILL.md`, `.gemini/skills/javascript-best-practices/SKILL.md`, `.gemini/skills/python-best-practices/SKILL.md`, `.gemini/skills/golang-best-practices/SKILL.md`, `.gemini/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 route to the researcher posture first.
16
+ 7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
17
 
11
18
  If command arguments are provided, treat them as additional user context.
12
19
  '''