@cubis/foundry 0.3.76 → 0.3.77

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 (165) hide show
  1. package/dist/cli/core.js +57 -0
  2. package/dist/cli/core.js.map +1 -1
  3. package/mcp/src/tools/skillTools.test.ts +34 -1
  4. package/package.json +1 -1
  5. package/src/cli/core.ts +66 -0
  6. package/workflows/skills/_schema/skill-platform-attributes.json +7 -0
  7. package/workflows/skills/deep-research/SKILL.md +81 -0
  8. package/workflows/skills/deep-research/evals/assertions.md +17 -0
  9. package/workflows/skills/deep-research/evals/evals.json +56 -0
  10. package/workflows/skills/deep-research/examples/01-latest-docs-check.md +12 -0
  11. package/workflows/skills/deep-research/examples/02-ecosystem-comparison.md +12 -0
  12. package/workflows/skills/deep-research/examples/03-research-to-implementation-handoff.md +12 -0
  13. package/workflows/skills/deep-research/references/comparison-checklist.md +57 -0
  14. package/workflows/skills/deep-research/references/research-output.md +69 -0
  15. package/workflows/skills/deep-research/references/source-ladder.md +81 -0
  16. package/workflows/skills/generated/skill-audit.json +11 -2
  17. package/workflows/skills/generated/skill-catalog.json +36 -4
  18. package/workflows/skills/skills_index.json +32 -0
  19. package/workflows/workflows/agent-environment-setup/generated/route-manifest.json +7 -7
  20. package/workflows/workflows/agent-environment-setup/manifest.json +27 -1
  21. package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/orchestrator.md +6 -5
  22. package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/project-planner.md +4 -3
  23. package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/researcher.md +8 -4
  24. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/accessibility.toml +2 -0
  25. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/backend.toml +2 -0
  26. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/create.toml +2 -0
  27. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/database.toml +2 -0
  28. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/debug.toml +2 -0
  29. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/devops.toml +2 -0
  30. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/implement-track.toml +2 -0
  31. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/migrate.toml +2 -0
  32. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/mobile.toml +2 -0
  33. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/onboard.toml +2 -0
  34. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/orchestrate.toml +2 -0
  35. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/plan.toml +2 -0
  36. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/refactor.toml +2 -0
  37. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/release.toml +2 -0
  38. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/review.toml +2 -0
  39. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/security.toml +2 -0
  40. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/test.toml +2 -0
  41. package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/vercel.toml +2 -0
  42. package/workflows/workflows/agent-environment-setup/platforms/antigravity/rules/GEMINI.md +13 -8
  43. package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/SKILL.md +89 -0
  44. package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/evals/assertions.md +17 -0
  45. package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/evals/evals.json +56 -0
  46. package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/examples/01-latest-docs-check.md +12 -0
  47. package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/examples/02-ecosystem-comparison.md +12 -0
  48. package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/examples/03-research-to-implementation-handoff.md +12 -0
  49. package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/references/comparison-checklist.md +57 -0
  50. package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/references/research-output.md +69 -0
  51. package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/references/source-ladder.md +81 -0
  52. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/onboard.md +3 -3
  53. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/orchestrate.md +2 -2
  54. package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/plan.md +4 -4
  55. package/workflows/workflows/agent-environment-setup/platforms/claude/agents/orchestrator.md +6 -5
  56. package/workflows/workflows/agent-environment-setup/platforms/claude/agents/project-planner.md +4 -3
  57. package/workflows/workflows/agent-environment-setup/platforms/claude/agents/researcher.md +8 -4
  58. package/workflows/workflows/agent-environment-setup/platforms/claude/hooks/README.md +15 -0
  59. package/workflows/workflows/agent-environment-setup/platforms/claude/hooks/route-research-guard.mjs +39 -0
  60. package/workflows/workflows/agent-environment-setup/platforms/claude/hooks/settings.snippet.json +15 -0
  61. package/workflows/workflows/agent-environment-setup/platforms/claude/rules/CLAUDE.md +15 -8
  62. package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/SKILL.md +95 -0
  63. package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/evals/assertions.md +17 -0
  64. package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/evals/evals.json +56 -0
  65. package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/examples/01-latest-docs-check.md +12 -0
  66. package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/examples/02-ecosystem-comparison.md +12 -0
  67. package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/examples/03-research-to-implementation-handoff.md +12 -0
  68. package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/references/comparison-checklist.md +57 -0
  69. package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/references/research-output.md +69 -0
  70. package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/references/source-ladder.md +81 -0
  71. package/workflows/workflows/agent-environment-setup/platforms/claude/skills/skills_index.json +32 -0
  72. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/onboard.md +3 -3
  73. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/orchestrate.md +2 -2
  74. package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/plan.md +4 -4
  75. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/orchestrator.md +6 -5
  76. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/project-planner.md +4 -3
  77. package/workflows/workflows/agent-environment-setup/platforms/codex/agents/researcher.md +8 -4
  78. package/workflows/workflows/agent-environment-setup/platforms/codex/rules/AGENTS.md +13 -8
  79. package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/SKILL.md +89 -0
  80. package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/evals/assertions.md +17 -0
  81. package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/evals/evals.json +56 -0
  82. package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/examples/01-latest-docs-check.md +12 -0
  83. package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/examples/02-ecosystem-comparison.md +12 -0
  84. package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/examples/03-research-to-implementation-handoff.md +12 -0
  85. package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/references/comparison-checklist.md +57 -0
  86. package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/references/research-output.md +69 -0
  87. package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/references/source-ladder.md +81 -0
  88. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/onboard.md +3 -3
  89. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/orchestrate.md +2 -2
  90. package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/plan.md +4 -4
  91. package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/orchestrator.md +6 -5
  92. package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/project-planner.md +4 -3
  93. package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/researcher.md +8 -4
  94. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-accessibility.prompt.md +2 -1
  95. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-backend.prompt.md +2 -1
  96. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-create.prompt.md +2 -1
  97. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-database.prompt.md +2 -1
  98. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-debug.prompt.md +2 -1
  99. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-devops.prompt.md +2 -1
  100. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-implement-track.prompt.md +2 -1
  101. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-migrate.prompt.md +2 -1
  102. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-mobile.prompt.md +2 -1
  103. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-onboard.prompt.md +2 -1
  104. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-orchestrate.prompt.md +2 -1
  105. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-plan.prompt.md +2 -1
  106. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-refactor.prompt.md +2 -1
  107. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-release.prompt.md +2 -1
  108. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-review.prompt.md +2 -1
  109. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-security.prompt.md +2 -1
  110. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-test.prompt.md +2 -1
  111. package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-vercel.prompt.md +2 -1
  112. package/workflows/workflows/agent-environment-setup/platforms/copilot/rules/copilot-instructions.md +13 -8
  113. package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/SKILL.md +94 -0
  114. package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/evals/assertions.md +17 -0
  115. package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/evals/evals.json +56 -0
  116. package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/examples/01-latest-docs-check.md +12 -0
  117. package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/examples/02-ecosystem-comparison.md +12 -0
  118. package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/examples/03-research-to-implementation-handoff.md +12 -0
  119. package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/references/comparison-checklist.md +57 -0
  120. package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/references/research-output.md +69 -0
  121. package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/references/source-ladder.md +81 -0
  122. package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/skills_index.json +32 -0
  123. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/onboard.md +3 -3
  124. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/orchestrate.md +2 -2
  125. package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/plan.md +4 -4
  126. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/accessibility.toml +2 -0
  127. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/backend.toml +2 -0
  128. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/create.toml +2 -0
  129. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/database.toml +2 -0
  130. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/debug.toml +2 -0
  131. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/devops.toml +2 -0
  132. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/implement-track.toml +2 -0
  133. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/migrate.toml +2 -0
  134. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/mobile.toml +2 -0
  135. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/onboard.toml +2 -0
  136. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/orchestrate.toml +2 -0
  137. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/plan.toml +2 -0
  138. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/refactor.toml +2 -0
  139. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/release.toml +2 -0
  140. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/review.toml +2 -0
  141. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/security.toml +2 -0
  142. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/test.toml +2 -0
  143. package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/vercel.toml +2 -0
  144. package/workflows/workflows/agent-environment-setup/platforms/gemini/rules/GEMINI.md +13 -8
  145. package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/SKILL.md +89 -0
  146. package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/evals/assertions.md +17 -0
  147. package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/evals/evals.json +56 -0
  148. package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/examples/01-latest-docs-check.md +12 -0
  149. package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/examples/02-ecosystem-comparison.md +12 -0
  150. package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/examples/03-research-to-implementation-handoff.md +12 -0
  151. package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/references/comparison-checklist.md +57 -0
  152. package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/references/research-output.md +69 -0
  153. package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/references/source-ladder.md +81 -0
  154. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/onboard.md +3 -3
  155. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/orchestrate.md +2 -2
  156. package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/plan.md +4 -4
  157. package/workflows/workflows/agent-environment-setup/shared/agents/orchestrator.md +2 -1
  158. package/workflows/workflows/agent-environment-setup/shared/agents/project-planner.md +2 -1
  159. package/workflows/workflows/agent-environment-setup/shared/agents/researcher.md +5 -1
  160. package/workflows/workflows/agent-environment-setup/shared/rules/STEERING.md +44 -13
  161. package/workflows/workflows/agent-environment-setup/shared/rules/overrides/claude.md +2 -0
  162. package/workflows/workflows/agent-environment-setup/shared/rules/overrides/gemini.md +20 -0
  163. package/workflows/workflows/agent-environment-setup/shared/workflows/onboard.md +1 -1
  164. package/workflows/workflows/agent-environment-setup/shared/workflows/orchestrate.md +1 -1
  165. package/workflows/workflows/agent-environment-setup/shared/workflows/plan.md +2 -2
@@ -2,10 +2,10 @@
2
2
  "$schema": "cubis-foundry-skill-catalog-v1",
3
3
  "generatedAt": "1970-01-01T00:00:00.000Z",
4
4
  "summary": {
5
- "totalEntries": 68,
6
- "totalSkills": 68,
5
+ "totalEntries": 69,
6
+ "totalSkills": 69,
7
7
  "totalSubskills": 0,
8
- "canonicalSkills": 68,
8
+ "canonicalSkills": 69,
9
9
  "compatibilityAliases": 0,
10
10
  "layers": [
11
11
  "core-operating",
@@ -220,6 +220,38 @@
220
220
  "databases"
221
221
  ]
222
222
  },
223
+ {
224
+ "id": "deep-research",
225
+ "package_id": "deep-research",
226
+ "catalog_id": "deep-research",
227
+ "kind": "skill",
228
+ "path": "workflows/skills/deep-research/SKILL.md",
229
+ "name": "deep-research",
230
+ "description": "Use when investigating latest vendor behavior, comparing tools or platforms, verifying claims beyond the repo, or gathering external evidence before implementation.",
231
+ "canonical": true,
232
+ "canonical_id": "deep-research",
233
+ "deprecated": false,
234
+ "replaced_by": null,
235
+ "aliases": [],
236
+ "category": "core-operating",
237
+ "layer": "core-operating",
238
+ "maturity": "incubating",
239
+ "tier": "experimental",
240
+ "tags": [
241
+ "core-operating",
242
+ "deep",
243
+ "deep research",
244
+ "deep-research",
245
+ "research"
246
+ ],
247
+ "triggers": [
248
+ "deep-research",
249
+ "deep research",
250
+ "deep",
251
+ "research",
252
+ "core-operating"
253
+ ]
254
+ },
223
255
  {
224
256
  "id": "django-drf",
225
257
  "package_id": "django-drf",
@@ -2141,5 +2173,5 @@
2141
2173
  ]
2142
2174
  }
2143
2175
  ],
2144
- "contentHash": "e308bfb0084478a8"
2176
+ "contentHash": "b27e549d17f95efb"
2145
2177
  }
@@ -193,6 +193,38 @@
193
193
  "databases"
194
194
  ]
195
195
  },
196
+ {
197
+ "id": "deep-research",
198
+ "package_id": "deep-research",
199
+ "catalog_id": "deep-research",
200
+ "kind": "skill",
201
+ "name": "deep-research",
202
+ "canonical": true,
203
+ "canonical_id": "deep-research",
204
+ "deprecated": false,
205
+ "replaced_by": null,
206
+ "aliases": [],
207
+ "category": "core-operating",
208
+ "layer": "core-operating",
209
+ "maturity": "incubating",
210
+ "tier": "experimental",
211
+ "tags": [
212
+ "core-operating",
213
+ "deep",
214
+ "deep research",
215
+ "deep-research",
216
+ "research"
217
+ ],
218
+ "path": ".agents/skills/deep-research/SKILL.md",
219
+ "description": "Use when investigating latest vendor behavior, comparing tools or platforms, verifying claims beyond the repo, or gathering external evidence before implementation.",
220
+ "triggers": [
221
+ "deep-research",
222
+ "deep research",
223
+ "deep",
224
+ "research",
225
+ "core-operating"
226
+ ]
227
+ },
196
228
  {
197
229
  "id": "django-drf",
198
230
  "package_id": "django-drf",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "cubis-foundry-route-manifest-v1",
3
3
  "generatedAt": "1970-01-01T00:00:00.000Z",
4
- "contentHash": "9aedd9bfd58f1f59",
4
+ "contentHash": "47cf8920e99d0258",
5
5
  "summary": {
6
6
  "totalRoutes": 40,
7
7
  "workflows": 18,
@@ -498,7 +498,7 @@
498
498
  ],
499
499
  "supportingSkills": [
500
500
  "database-design",
501
- "architecture-doc",
501
+ "deep-research",
502
502
  "mcp-server-builder",
503
503
  "tech-doc",
504
504
  "prompt-engineering",
@@ -701,7 +701,7 @@
701
701
  ],
702
702
  "supportingSkills": [
703
703
  "database-design",
704
- "architecture-doc",
704
+ "deep-research",
705
705
  "mcp-server-builder",
706
706
  "tech-doc",
707
707
  "prompt-engineering",
@@ -804,7 +804,7 @@
804
804
  "primaryAgent": "researcher",
805
805
  "supportingAgents": [],
806
806
  "primarySkills": [
807
- "architecture-doc",
807
+ "deep-research",
808
808
  "system-design"
809
809
  ],
810
810
  "supportingSkills": [
@@ -1694,7 +1694,7 @@
1694
1694
  "frontend-specialist"
1695
1695
  ],
1696
1696
  "primarySkills": [
1697
- "architecture-doc",
1697
+ "deep-research",
1698
1698
  "system-design"
1699
1699
  ],
1700
1700
  "supportingSkills": [
@@ -1756,7 +1756,7 @@
1756
1756
  ],
1757
1757
  "supportingSkills": [
1758
1758
  "database-design",
1759
- "architecture-doc",
1759
+ "deep-research",
1760
1760
  "mcp-server-builder",
1761
1761
  "tech-doc",
1762
1762
  "prompt-engineering",
@@ -1815,7 +1815,7 @@
1815
1815
  ],
1816
1816
  "supportingSkills": [
1817
1817
  "database-design",
1818
- "architecture-doc",
1818
+ "deep-research",
1819
1819
  "mcp-server-builder",
1820
1820
  "tech-doc",
1821
1821
  "prompt-engineering",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "id": "agent-environment-setup",
3
- "version": "1.4.0",
3
+ "version": "1.5.0",
4
4
  "description": "Workflow-first AI agent environment setup for Antigravity, Codex, Copilot, Claude Code, and Gemini CLI.",
5
5
  "platforms": {
6
6
  "antigravity": {
@@ -55,6 +55,7 @@
55
55
  "code-review",
56
56
  "csharp-best-practices",
57
57
  "database-design",
58
+ "deep-research",
58
59
  "django-drf",
59
60
  "docker-compose-dev",
60
61
  "drizzle-orm",
@@ -199,6 +200,7 @@
199
200
  "code-review",
200
201
  "csharp-best-practices",
201
202
  "database-design",
203
+ "deep-research",
202
204
  "django-drf",
203
205
  "docker-compose-dev",
204
206
  "drizzle-orm",
@@ -323,6 +325,7 @@
323
325
  "code-review",
324
326
  "csharp-best-practices",
325
327
  "database-design",
328
+ "deep-research",
326
329
  "django-drf",
327
330
  "docker-compose-dev",
328
331
  "drizzle-orm",
@@ -467,6 +470,7 @@
467
470
  "code-review",
468
471
  "csharp-best-practices",
469
472
  "database-design",
473
+ "deep-research",
470
474
  "django-drf",
471
475
  "docker-compose-dev",
472
476
  "drizzle-orm",
@@ -536,6 +540,27 @@
536
540
  "type": "conductor-reference",
537
541
  "optional": true,
538
542
  "description": "If Conductor artifacts exist, workflows can reference them as supporting context."
543
+ },
544
+ {
545
+ "type": "template",
546
+ "event": "UserPromptSubmit",
547
+ "file": "README.md",
548
+ "optional": true,
549
+ "description": "Usage guide for the Claude route/research hook templates."
550
+ },
551
+ {
552
+ "type": "template",
553
+ "event": "UserPromptSubmit",
554
+ "file": "settings.snippet.json",
555
+ "optional": true,
556
+ "description": "Settings snippet that wires the route/research reminder hook into Claude Code."
557
+ },
558
+ {
559
+ "type": "template",
560
+ "event": "UserPromptSubmit",
561
+ "file": "route-research-guard.mjs",
562
+ "optional": true,
563
+ "description": "Hook script template that reinforces explicit-route honoring and research escalation."
539
564
  }
540
565
  ]
541
566
  },
@@ -568,6 +593,7 @@
568
593
  "code-review",
569
594
  "csharp-best-practices",
570
595
  "database-design",
596
+ "deep-research",
571
597
  "django-drf",
572
598
  "docker-compose-dev",
573
599
  "drizzle-orm",
@@ -5,7 +5,7 @@ tools: Read, Grep, Glob, Bash, Write, Edit
5
5
  model: inherit
6
6
  maxTurns: 30
7
7
  memory: project
8
- skills: system-design, api-design, database-design, architecture-doc, mcp-server-builder, tech-doc, prompt-engineering, skill-creator, typescript-best-practices, javascript-best-practices, python-best-practices
8
+ skills: system-design, api-design, database-design, deep-research, mcp-server-builder, tech-doc, prompt-engineering, skill-creator, typescript-best-practices, javascript-best-practices, python-best-practices
9
9
  handoffs:
10
10
  - agent: "validator"
11
11
  title: "Validate Results"
@@ -31,8 +31,8 @@ Your only permitted actions:
31
31
 
32
32
  ## Skill Loading Contract
33
33
 
34
- - Do not call `skill_search` for `system-design`, `api-design`, `database-design`, `architecture-doc`, `mcp-server-builder`, `tech-doc`, `prompt-engineering`, or `skill-creator` when the task is clearly multi-stream coordination, planning, architecture design, contract design, research, or skill package work.
35
- - Use `system-design` when the coordination problem is really a design tradeoff problem, `api-design` when integration contracts are the coordination bottleneck, `database-design` when the shared dependency is a data-model or migration concern, `architecture-doc` when the coordination risk is stale or conflicting external information, `mcp-server-builder` for MCP-specific streams, `tech-doc` for OpenAI-doc verification streams, `prompt-engineering` for instruction-quality streams, and `skill-creator` when the coordinated changes are in skills, mirrors, routing, or packaging.
34
+ - Do not call `skill_search` for `system-design`, `api-design`, `database-design`, `deep-research`, `mcp-server-builder`, `tech-doc`, `prompt-engineering`, or `skill-creator` when the task is clearly multi-stream coordination, planning, architecture design, contract design, research, or skill package work.
35
+ - Use `system-design` when the coordination problem is really a design tradeoff problem, `api-design` when integration contracts are the coordination bottleneck, `database-design` when the shared dependency is a data-model or migration concern, `deep-research` when the coordination risk is stale or conflicting external information, `mcp-server-builder` for MCP-specific streams, `tech-doc` for OpenAI-doc verification streams, `prompt-engineering` for instruction-quality streams, and `skill-creator` when the coordinated changes are in skills, mirrors, routing, or packaging.
36
36
  - Prefer platform-native delegation features when available, but keep the orchestration contract stable even when execution stays in a single track.
37
37
  - Use `skill_validate` before `skill_get`, and use `skill_get_reference` only for the specific sidecar file needed by the current coordination step.
38
38
 
@@ -45,7 +45,7 @@ Load on demand. Do not preload all references.
45
45
  | `system-design` | Coordination depends on resolving system design or interface tradeoffs first. |
46
46
  | `api-design` | The critical shared dependency is an API contract or integration boundary. |
47
47
  | `database-design` | The coordination risk centers on schema, migration, data ownership, or engine choice. |
48
- | `architecture-doc` | External sources, latest information, or public-repo comparisons are blocking confident execution. |
48
+ | `deep-research` | External sources, latest information, or public-repo comparisons are blocking confident execution. |
49
49
  | `mcp-server-builder` | One stream is MCP server design, tool shape, or transport selection. |
50
50
  | `tech-doc` | One stream needs current OpenAI docs or version-specific behavior verification. |
51
51
  | `prompt-engineering` | One stream is repairing prompts, agent rules, or instruction quality. |
@@ -158,7 +158,8 @@ ANTI-LAZINESS:
158
158
  5. **Iterate, don't accept mediocrity** — if output is incomplete or wrong, re-delegate with feedback.
159
159
  6. **Track progress visibly** — maintain a task list showing status of each work item.
160
160
  7. **Fail fast on blockers** — if a dependency is missing or a task is stuck after 3 iterations, escalate.
161
- 8. **Synthesize at the end** — combine outputs with concrete actions, risks, and verification evidence.
161
+ 8. **Route research explicitly** — when freshness or public comparison matters, delegate to `@researcher` or load `deep-research` before implementation.
162
+ 9. **Synthesize at the end** — combine outputs with concrete actions, risks, and verification evidence.
162
163
 
163
164
  ## Anti-Patterns to Prevent
164
165
 
@@ -5,7 +5,7 @@ tools: Read, Grep, Glob, Bash, Edit, Write
5
5
  model: inherit
6
6
  maxTurns: 30
7
7
  memory: project
8
- skills: system-design, api-design, database-design, architecture-doc, mcp-server-builder, tech-doc, prompt-engineering, skill-creator, typescript-best-practices, javascript-best-practices, python-best-practices
8
+ skills: system-design, api-design, database-design, deep-research, mcp-server-builder, tech-doc, prompt-engineering, skill-creator, typescript-best-practices, javascript-best-practices, python-best-practices
9
9
  handoffs:
10
10
  - agent: "orchestrator"
11
11
  title: "Start Implementation"
@@ -24,7 +24,7 @@ Decompose complex requests into implementable plans with clear ownership, depend
24
24
  - Load `system-design` for system design tradeoffs in the plan.
25
25
  - Load `api-design` when the plan involves API contract decisions.
26
26
  - Load `database-design` when the plan involves data modeling or migration.
27
- - Load `architecture-doc` when planning requires external information or comparison.
27
+ - Load `deep-research` when planning requires fresh external information, public comparison, or evidence beyond the repo.
28
28
  - Use `skill_validate` before `skill_get`, and use `skill_get_reference` only for the specific sidecar file needed.
29
29
 
30
30
  ## Skill References
@@ -34,7 +34,7 @@ Decompose complex requests into implementable plans with clear ownership, depend
34
34
  | `system-design` | Plan involves system design tradeoffs or component boundaries. |
35
35
  | `api-design` | Plan involves API contract decisions or integration points. |
36
36
  | `database-design` | Plan involves data modeling, schema design, or migration strategy. |
37
- | `architecture-doc` | Planning requires external research or approach comparison. |
37
+ | `deep-research` | Planning requires external research or approach comparison. |
38
38
  | `mcp-server-builder` | Plan involves MCP server or tool implementation. |
39
39
  | `skill-creator` | Plan involves skill package creation or modification. |
40
40
 
@@ -45,6 +45,7 @@ Decompose complex requests into implementable plans with clear ownership, depend
45
45
  - Every task needs an owner (agent), acceptance criteria, and verification approach.
46
46
  - Plan for rollback — every change should be reversible.
47
47
  - Front-load risk — tackle the hardest technical uncertainty first.
48
+ - When outside evidence is needed, send research through `deep-research` first instead of mixing web browsing into every implementation stream.
48
49
 
49
50
  ## Planning Methodology
50
51
 
@@ -18,7 +18,7 @@ tools: Read, Grep, Glob, Bash
18
18
  model: inherit
19
19
  maxTurns: 30
20
20
  memory: project
21
- skills: architecture-doc, system-design, database-design, tech-doc, prompt-engineering
21
+ skills: deep-research, system-design, database-design, tech-doc, prompt-engineering
22
22
  handoffs:
23
23
  - agent: "project-planner"
24
24
  title: "Plan Implementation"
@@ -30,8 +30,8 @@ Investigate thoroughly, synthesize findings, and deliver structured knowledge be
30
30
 
31
31
  ## Skill Loading Contract
32
32
 
33
- - Do not call `skill_search` for `architecture-doc`, `system-design`, `database-design`, `tech-doc`, or `prompt-engineering` when the task is clearly research work.
34
- - Load `architecture-doc` first for all research tasks — it defines the research methodology.
33
+ - Do not call `skill_search` for `deep-research`, `system-design`, `database-design`, `tech-doc`, or `prompt-engineering` when the task is clearly research work.
34
+ - Load `deep-research` first for all research tasks — it defines the source ladder, evidence labeling, and research output contract.
35
35
  - Add `system-design` when research involves system design patterns or tradeoffs.
36
36
  - Add `database-design` when research involves data storage options or migration approaches.
37
37
  - Add `tech-doc` when research involves OpenAI API or model behavior verification.
@@ -42,7 +42,7 @@ Investigate thoroughly, synthesize findings, and deliver structured knowledge be
42
42
 
43
43
  | File | Load when |
44
44
  | ----------------------- | --------------------------------------------------------------------- |
45
- | `architecture-doc` | All research tasks — defines the core research methodology. |
45
+ | `deep-research` | All research tasks — defines the core research methodology. |
46
46
  | `system-design` | Research involves system design patterns or architectural tradeoffs. |
47
47
  | `database-design` | Research involves data storage, database comparison, or migration. |
48
48
  | `tech-doc` | Research involves OpenAI API, model behavior, or version differences. |
@@ -51,6 +51,9 @@ Investigate thoroughly, synthesize findings, and deliver structured knowledge be
51
51
  ## Operating Stance
52
52
 
53
53
  - Breadth first, then depth — survey the landscape before drilling into specifics.
54
+ - Repo first, then web — inspect local code, configs, and docs before using external sources.
55
+ - Official docs first — use vendor or maintainer documentation as primary evidence.
56
+ - Community evidence is secondary — Reddit, blog posts, and forum threads can inform implementation, but label them as lower-trust support.
54
57
  - Cite sources — every finding should be traceable to evidence.
55
58
  - Distinguish fact from inference — clearly label assumptions.
56
59
  - Produce actionable findings — research without recommendations is incomplete.
@@ -72,5 +75,6 @@ Investigate thoroughly, synthesize findings, and deliver structured knowledge be
72
75
  - Clear distinction between verified facts and educated guesses.
73
76
  - Actionable recommendations with tradeoff analysis.
74
77
  - Remaining knowledge gaps identified.
78
+ - Output order: verified facts, secondary/community evidence, gaps, recommended next route.
75
79
 
76
80
  > **Antigravity note:** Use Agent Manager for parallel agent coordination. Agent files are stored under `.agent/agents/`.
@@ -7,6 +7,8 @@ Execution contract:
7
7
  2. Confirm the request fits the workflow's "When to use" section.
8
8
  3. Execute according to "Workflow steps" and apply "Context notes".
9
9
  4. Complete "Verification" checks and report concrete evidence.
10
+ 5. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
11
+ 6. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
12
 
11
13
  If command arguments are provided, treat them as additional user context.
12
14
  '''
@@ -7,6 +7,8 @@ Execution contract:
7
7
  2. Confirm the request fits the workflow's "When to use" section.
8
8
  3. Execute according to "Workflow steps" and apply "Context notes".
9
9
  4. Complete "Verification" checks and report concrete evidence.
10
+ 5. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
11
+ 6. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
12
 
11
13
  If command arguments are provided, treat them as additional user context.
12
14
  '''
@@ -7,6 +7,8 @@ Execution contract:
7
7
  2. Confirm the request fits the workflow's "When to use" section.
8
8
  3. Execute according to "Workflow steps" and apply "Context notes".
9
9
  4. Complete "Verification" checks and report concrete evidence.
10
+ 5. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
11
+ 6. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
12
 
11
13
  If command arguments are provided, treat them as additional user context.
12
14
  '''
@@ -7,6 +7,8 @@ Execution contract:
7
7
  2. Confirm the request fits the workflow's "When to use" section.
8
8
  3. Execute according to "Workflow steps" and apply "Context notes".
9
9
  4. Complete "Verification" checks and report concrete evidence.
10
+ 5. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
11
+ 6. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
12
 
11
13
  If command arguments are provided, treat them as additional user context.
12
14
  '''
@@ -7,6 +7,8 @@ Execution contract:
7
7
  2. Confirm the request fits the workflow's "When to use" section.
8
8
  3. Execute according to "Workflow steps" and apply "Context notes".
9
9
  4. Complete "Verification" checks and report concrete evidence.
10
+ 5. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
11
+ 6. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
12
 
11
13
  If command arguments are provided, treat them as additional user context.
12
14
  '''
@@ -7,6 +7,8 @@ Execution contract:
7
7
  2. Confirm the request fits the workflow's "When to use" section.
8
8
  3. Execute according to "Workflow steps" and apply "Context notes".
9
9
  4. Complete "Verification" checks and report concrete evidence.
10
+ 5. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
11
+ 6. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
12
 
11
13
  If command arguments are provided, treat them as additional user context.
12
14
  '''
@@ -7,6 +7,8 @@ Execution contract:
7
7
  2. Confirm the request fits the workflow's "When to use" section.
8
8
  3. Execute according to "Workflow steps" and apply "Context notes".
9
9
  4. Complete "Verification" checks and report concrete evidence.
10
+ 5. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
11
+ 6. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
12
 
11
13
  If command arguments are provided, treat them as additional user context.
12
14
  '''
@@ -7,6 +7,8 @@ Execution contract:
7
7
  2. Confirm the request fits the workflow's "When to use" section.
8
8
  3. Execute according to "Workflow steps" and apply "Context notes".
9
9
  4. Complete "Verification" checks and report concrete evidence.
10
+ 5. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
11
+ 6. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
12
 
11
13
  If command arguments are provided, treat them as additional user context.
12
14
  '''
@@ -7,6 +7,8 @@ Execution contract:
7
7
  2. Confirm the request fits the workflow's "When to use" section.
8
8
  3. Execute according to "Workflow steps" and apply "Context notes".
9
9
  4. Complete "Verification" checks and report concrete evidence.
10
+ 5. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
11
+ 6. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
12
 
11
13
  If command arguments are provided, treat them as additional user context.
12
14
  '''
@@ -7,6 +7,8 @@ Execution contract:
7
7
  2. Confirm the request fits the workflow's "When to use" section.
8
8
  3. Execute according to "Workflow steps" and apply "Context notes".
9
9
  4. Complete "Verification" checks and report concrete evidence.
10
+ 5. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
11
+ 6. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
12
 
11
13
  If command arguments are provided, treat them as additional user context.
12
14
  '''
@@ -7,6 +7,8 @@ Execution contract:
7
7
  2. Confirm the request fits the workflow's "When to use" section.
8
8
  3. Execute according to "Workflow steps" and apply "Context notes".
9
9
  4. Complete "Verification" checks and report concrete evidence.
10
+ 5. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
11
+ 6. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
12
 
11
13
  If command arguments are provided, treat them as additional user context.
12
14
  '''
@@ -7,6 +7,8 @@ Execution contract:
7
7
  2. Confirm the request fits the workflow's "When to use" section.
8
8
  3. Execute according to "Workflow steps" and apply "Context notes".
9
9
  4. Complete "Verification" checks and report concrete evidence.
10
+ 5. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
11
+ 6. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
12
 
11
13
  If command arguments are provided, treat them as additional user context.
12
14
  '''
@@ -7,6 +7,8 @@ Execution contract:
7
7
  2. Confirm the request fits the workflow's "When to use" section.
8
8
  3. Execute according to "Workflow steps" and apply "Context notes".
9
9
  4. Complete "Verification" checks and report concrete evidence.
10
+ 5. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
11
+ 6. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
12
 
11
13
  If command arguments are provided, treat them as additional user context.
12
14
  '''
@@ -7,6 +7,8 @@ Execution contract:
7
7
  2. Confirm the request fits the workflow's "When to use" section.
8
8
  3. Execute according to "Workflow steps" and apply "Context notes".
9
9
  4. Complete "Verification" checks and report concrete evidence.
10
+ 5. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
11
+ 6. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
12
 
11
13
  If command arguments are provided, treat them as additional user context.
12
14
  '''
@@ -7,6 +7,8 @@ Execution contract:
7
7
  2. Confirm the request fits the workflow's "When to use" section.
8
8
  3. Execute according to "Workflow steps" and apply "Context notes".
9
9
  4. Complete "Verification" checks and report concrete evidence.
10
+ 5. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
11
+ 6. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
12
 
11
13
  If command arguments are provided, treat them as additional user context.
12
14
  '''
@@ -7,6 +7,8 @@ Execution contract:
7
7
  2. Confirm the request fits the workflow's "When to use" section.
8
8
  3. Execute according to "Workflow steps" and apply "Context notes".
9
9
  4. Complete "Verification" checks and report concrete evidence.
10
+ 5. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
11
+ 6. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
12
 
11
13
  If command arguments are provided, treat them as additional user context.
12
14
  '''
@@ -7,6 +7,8 @@ Execution contract:
7
7
  2. Confirm the request fits the workflow's "When to use" section.
8
8
  3. Execute according to "Workflow steps" and apply "Context notes".
9
9
  4. Complete "Verification" checks and report concrete evidence.
10
+ 5. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
11
+ 6. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
12
 
11
13
  If command arguments are provided, treat them as additional user context.
12
14
  '''
@@ -7,6 +7,8 @@ Execution contract:
7
7
  2. Confirm the request fits the workflow's "When to use" section.
8
8
  3. Execute according to "Workflow steps" and apply "Context notes".
9
9
  4. Complete "Verification" checks and report concrete evidence.
10
+ 5. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
11
+ 6. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
10
12
 
11
13
  If command arguments are provided, treat them as additional user context.
12
14
  '''
@@ -46,7 +46,7 @@ Execute this tree top-to-bottom. Stop at the **first match**. Never skip levels.
46
46
  ├─ [TRIVIAL] Single-step, obvious, reversible?
47
47
  │ → Execute directly. No routing. Stop.
48
48
 
49
- ├─ [EXPLICIT] User named a Gemini command, workflow, or @agent?
49
+ ├─ [EXPLICIT] User named a Gemini command, workflow, @agent, or exact skill?
50
50
  │ → Honor that route exactly. Stop.
51
51
 
52
52
  ├─ [SINGLE-DOMAIN] Multi-step but contained in one specialty?
@@ -66,6 +66,7 @@ Execute this tree top-to-bottom. Stop at the **first match**. Never skip levels.
66
66
  **Hard rules:**
67
67
 
68
68
  - Never pre-load skills before route resolution.
69
+ - If the user names an exact skill ID, run `skill_validate` on that ID before `route_resolve`.
69
70
  - Never invoke an agent when direct execution suffices.
70
71
  - Never chain more than one `skill_search` per request.
71
72
  - Treat this file as **durable project memory** — not a per-task playbook.
@@ -360,6 +361,7 @@ Use this matrix to match incoming tasks to the correct skill and primary agent.
360
361
  | docker-compose-dev | DevOps | Docker Compose local dev environments | @devops-engineer |
361
362
  | kubernetes-deploy | DevOps | K8s manifests, Helm charts, deployment | @devops-engineer |
362
363
  | observability | DevOps | Logging, metrics, tracing, alerting | @devops-engineer |
364
+ | deep-research | Research | Latest docs, public comparisons, external verification | @researcher |
363
365
  | llm-eval | AI/ML | LLM evaluation, benchmarking, evals | @researcher |
364
366
  | rag-patterns | AI/ML | RAG architecture, embeddings, retrieval | @researcher |
365
367
  | prompt-engineering | AI/ML | Prompt design, few-shot, chain-of-thought | @researcher |
@@ -407,12 +409,15 @@ Selection policy:
407
409
  Keep MCP context lazy and exact. Skills are supporting context, not the route layer.
408
410
 
409
411
  1. Never begin with `skill_search`. Inspect the repo/task locally first.
410
- 2. Resolve workflows, agents, or free-text route intent with `route_resolve` before loading any skills.
411
- 3. If the route is still unresolved and local grounding leaves the domain unclear, use one narrow `skill_search`.
412
- 4. Always run `skill_validate` on the exact selected ID before `skill_get`.
413
- 5. Call `skill_get` with `includeReferences:false` by default.
414
- 6. Load at most one sidecar markdown file at a time with `skill_get_reference`.
415
- 7. Do not auto-prime every specialist with a skill. Load only what the task clearly needs.
416
- 8. Use upstream MCP servers such as `postman`, `stitch`, or `playwright` for real cloud/browser actions when available.
412
+ 2. If the user already named `/workflow`, `@agent`, or an exact skill ID, honor it directly. For exact skills, run `skill_validate` first and skip `route_resolve` when valid.
413
+ 3. Resolve only free-text workflow/agent intent with `route_resolve` before loading non-explicit skills.
414
+ 4. If the route is still unresolved and local grounding leaves the domain unclear, use one narrow `skill_search`.
415
+ 5. Always run `skill_validate` on the exact selected ID before `skill_get`.
416
+ 6. Call `skill_get` with `includeReferences:false` by default.
417
+ 7. Load at most one sidecar markdown file at a time with `skill_get_reference`.
418
+ 8. Do not auto-prime every specialist with a skill. Load only what the task clearly needs.
419
+ 9. For research: repo/local evidence first, official docs next, Reddit/community only as labeled secondary evidence.
420
+ 10. Escalate to research only when freshness matters, public comparison matters, or the user explicitly asks to research/verify.
421
+ 11. Use upstream MCP servers such as `postman`, `stitch`, or `playwright` for real cloud/browser actions when available.
417
422
 
418
423
  <!-- cbx:mcp:auto:end -->