@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.
- package/dist/cli/core.js +57 -0
- package/dist/cli/core.js.map +1 -1
- package/mcp/src/tools/skillTools.test.ts +34 -1
- package/package.json +1 -1
- package/src/cli/core.ts +66 -0
- package/workflows/skills/_schema/skill-platform-attributes.json +7 -0
- package/workflows/skills/deep-research/SKILL.md +81 -0
- package/workflows/skills/deep-research/evals/assertions.md +17 -0
- package/workflows/skills/deep-research/evals/evals.json +56 -0
- package/workflows/skills/deep-research/examples/01-latest-docs-check.md +12 -0
- package/workflows/skills/deep-research/examples/02-ecosystem-comparison.md +12 -0
- package/workflows/skills/deep-research/examples/03-research-to-implementation-handoff.md +12 -0
- package/workflows/skills/deep-research/references/comparison-checklist.md +57 -0
- package/workflows/skills/deep-research/references/research-output.md +69 -0
- package/workflows/skills/deep-research/references/source-ladder.md +81 -0
- package/workflows/skills/generated/skill-audit.json +11 -2
- package/workflows/skills/generated/skill-catalog.json +36 -4
- package/workflows/skills/skills_index.json +32 -0
- package/workflows/workflows/agent-environment-setup/generated/route-manifest.json +7 -7
- package/workflows/workflows/agent-environment-setup/manifest.json +27 -1
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/orchestrator.md +6 -5
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/project-planner.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/researcher.md +8 -4
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/accessibility.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/backend.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/create.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/database.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/debug.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/devops.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/implement-track.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/migrate.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/mobile.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/onboard.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/orchestrate.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/plan.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/refactor.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/release.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/review.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/security.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/test.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/vercel.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/rules/GEMINI.md +13 -8
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/SKILL.md +89 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/evals/assertions.md +17 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/evals/evals.json +56 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/examples/01-latest-docs-check.md +12 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/examples/02-ecosystem-comparison.md +12 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/examples/03-research-to-implementation-handoff.md +12 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/references/comparison-checklist.md +57 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/references/research-output.md +69 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/deep-research/references/source-ladder.md +81 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/onboard.md +3 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/orchestrate.md +2 -2
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/plan.md +4 -4
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/orchestrator.md +6 -5
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/project-planner.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/researcher.md +8 -4
- package/workflows/workflows/agent-environment-setup/platforms/claude/hooks/README.md +15 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/hooks/route-research-guard.mjs +39 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/hooks/settings.snippet.json +15 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/rules/CLAUDE.md +15 -8
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/SKILL.md +95 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/evals/assertions.md +17 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/evals/evals.json +56 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/examples/01-latest-docs-check.md +12 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/examples/02-ecosystem-comparison.md +12 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/examples/03-research-to-implementation-handoff.md +12 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/references/comparison-checklist.md +57 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/references/research-output.md +69 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/deep-research/references/source-ladder.md +81 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/skills_index.json +32 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/onboard.md +3 -3
- package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/orchestrate.md +2 -2
- package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/plan.md +4 -4
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/orchestrator.md +6 -5
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/project-planner.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/researcher.md +8 -4
- package/workflows/workflows/agent-environment-setup/platforms/codex/rules/AGENTS.md +13 -8
- package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/SKILL.md +89 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/evals/assertions.md +17 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/evals/evals.json +56 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/examples/01-latest-docs-check.md +12 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/examples/02-ecosystem-comparison.md +12 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/examples/03-research-to-implementation-handoff.md +12 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/references/comparison-checklist.md +57 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/references/research-output.md +69 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/skills/deep-research/references/source-ladder.md +81 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/onboard.md +3 -3
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/orchestrate.md +2 -2
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/plan.md +4 -4
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/orchestrator.md +6 -5
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/project-planner.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/researcher.md +8 -4
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-accessibility.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-backend.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-create.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-database.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-debug.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-devops.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-implement-track.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-migrate.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-mobile.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-onboard.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-orchestrate.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-plan.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-refactor.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-release.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-review.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-security.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-test.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-vercel.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/rules/copilot-instructions.md +13 -8
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/SKILL.md +94 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/evals/assertions.md +17 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/evals/evals.json +56 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/examples/01-latest-docs-check.md +12 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/examples/02-ecosystem-comparison.md +12 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/examples/03-research-to-implementation-handoff.md +12 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/references/comparison-checklist.md +57 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/references/research-output.md +69 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deep-research/references/source-ladder.md +81 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/skills_index.json +32 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/onboard.md +3 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/orchestrate.md +2 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/plan.md +4 -4
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/accessibility.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/backend.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/create.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/database.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/debug.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/devops.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/implement-track.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/migrate.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/mobile.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/onboard.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/orchestrate.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/plan.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/refactor.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/release.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/review.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/security.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/test.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/vercel.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/rules/GEMINI.md +13 -8
- package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/SKILL.md +89 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/evals/assertions.md +17 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/evals/evals.json +56 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/examples/01-latest-docs-check.md +12 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/examples/02-ecosystem-comparison.md +12 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/examples/03-research-to-implementation-handoff.md +12 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/references/comparison-checklist.md +57 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/references/research-output.md +69 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/references/source-ladder.md +81 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/onboard.md +3 -3
- package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/orchestrate.md +2 -2
- package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/plan.md +4 -4
- package/workflows/workflows/agent-environment-setup/shared/agents/orchestrator.md +2 -1
- package/workflows/workflows/agent-environment-setup/shared/agents/project-planner.md +2 -1
- package/workflows/workflows/agent-environment-setup/shared/agents/researcher.md +5 -1
- package/workflows/workflows/agent-environment-setup/shared/rules/STEERING.md +44 -13
- package/workflows/workflows/agent-environment-setup/shared/rules/overrides/claude.md +2 -0
- package/workflows/workflows/agent-environment-setup/shared/rules/overrides/gemini.md +20 -0
- package/workflows/workflows/agent-environment-setup/shared/workflows/onboard.md +1 -1
- package/workflows/workflows/agent-environment-setup/shared/workflows/orchestrate.md +1 -1
- package/workflows/workflows/agent-environment-setup/shared/workflows/plan.md +2 -2
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
# Source Ladder
|
|
2
|
+
|
|
3
|
+
## Goal
|
|
4
|
+
|
|
5
|
+
Use the smallest amount of external research that still produces a decision-ready answer. Keep the evidence traceable and ordered by trust.
|
|
6
|
+
|
|
7
|
+
## 1. Repo / Local Evidence First
|
|
8
|
+
|
|
9
|
+
Start by inspecting:
|
|
10
|
+
|
|
11
|
+
- application code and tests
|
|
12
|
+
- README files and internal docs
|
|
13
|
+
- generated workflow or skill assets
|
|
14
|
+
- lockfiles, config files, and package manifests
|
|
15
|
+
- existing integration code and migration history
|
|
16
|
+
|
|
17
|
+
If the repo already answers the question, stop there. Do not browse externally just because web research feels safer.
|
|
18
|
+
|
|
19
|
+
## 2. Primary External Sources
|
|
20
|
+
|
|
21
|
+
Use these next:
|
|
22
|
+
|
|
23
|
+
- official vendor docs
|
|
24
|
+
- upstream repositories and release notes
|
|
25
|
+
- standards bodies and reference specs
|
|
26
|
+
- maintainer-authored examples
|
|
27
|
+
|
|
28
|
+
Prefer sources that expose:
|
|
29
|
+
|
|
30
|
+
- exact feature names
|
|
31
|
+
- current version constraints
|
|
32
|
+
- config formats
|
|
33
|
+
- dates or changelog context
|
|
34
|
+
|
|
35
|
+
When the topic is time-sensitive, capture the date you verified the source and the version or doc page involved.
|
|
36
|
+
|
|
37
|
+
## 3. Secondary / Community Sources
|
|
38
|
+
|
|
39
|
+
Use these only after primary evidence:
|
|
40
|
+
|
|
41
|
+
- Reddit threads
|
|
42
|
+
- issue comments
|
|
43
|
+
- independent blog posts
|
|
44
|
+
- forum discussions
|
|
45
|
+
- third-party comparison articles
|
|
46
|
+
|
|
47
|
+
Community evidence is useful for:
|
|
48
|
+
|
|
49
|
+
- practical gotchas
|
|
50
|
+
- migration pain points
|
|
51
|
+
- missing-doc workarounds
|
|
52
|
+
- real-world adoption patterns
|
|
53
|
+
|
|
54
|
+
Community evidence is not enough on its own for authoritative claims about product behavior, supported configuration, or security guarantees.
|
|
55
|
+
|
|
56
|
+
## 4. Conflict Handling
|
|
57
|
+
|
|
58
|
+
When sources disagree:
|
|
59
|
+
|
|
60
|
+
1. Prefer repo evidence for the current codebase state.
|
|
61
|
+
2. Prefer official docs over community claims for product behavior.
|
|
62
|
+
3. Prefer newer dated material when the sources cover the same feature.
|
|
63
|
+
4. If the conflict remains unresolved, report it as a gap instead of guessing.
|
|
64
|
+
|
|
65
|
+
## 5. Evidence Labels
|
|
66
|
+
|
|
67
|
+
Use these labels in research output:
|
|
68
|
+
|
|
69
|
+
- **Verified fact** — backed by repo evidence or a primary source
|
|
70
|
+
- **Secondary evidence** — backed only by community or indirect sources
|
|
71
|
+
- **Inference** — reasoned conclusion not directly stated by a source
|
|
72
|
+
- **Gap** — could not be verified confidently
|
|
73
|
+
|
|
74
|
+
## 6. Stop Conditions
|
|
75
|
+
|
|
76
|
+
Stop researching when:
|
|
77
|
+
|
|
78
|
+
- the decision is already clear
|
|
79
|
+
- new sources only repeat the same point
|
|
80
|
+
- the remaining uncertainty is small and clearly documented
|
|
81
|
+
- the task should move into implementation or planning
|
package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/skills_index.json
CHANGED
|
@@ -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": ".github/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",
|
|
@@ -30,9 +30,9 @@ Use this when joining a new project, exploring an unfamiliar codebase, or prepar
|
|
|
30
30
|
|
|
31
31
|
## Skill Routing
|
|
32
32
|
|
|
33
|
-
- Primary skills: `
|
|
33
|
+
- Primary skills: `deep-research`, `system-design`
|
|
34
34
|
- Supporting skills (optional): `system-design`, `database-design`, `typescript-best-practices`, `javascript-best-practices`, `python-best-practices`
|
|
35
|
-
- Start with `
|
|
35
|
+
- Start with `deep-research` for systematic exploration and `system-design` for architecture mapping. Add `system-design` for undocumented systems. Prefer repo evidence first; use external sources only when setup or dependency behavior cannot be confirmed locally.
|
|
36
36
|
|
|
37
37
|
## Workflow steps
|
|
38
38
|
|
|
@@ -55,7 +55,7 @@ Use this when joining a new project, exploring an unfamiliar codebase, or prepar
|
|
|
55
55
|
ONBOARD_WORKFLOW_RESULT:
|
|
56
56
|
primary_agent: researcher
|
|
57
57
|
supporting_agents: [code-archaeologist?, backend-specialist?, frontend-specialist?]
|
|
58
|
-
primary_skills: [
|
|
58
|
+
primary_skills: [deep-research, system-design]
|
|
59
59
|
supporting_skills: [system-design?, database-design?]
|
|
60
60
|
project_overview:
|
|
61
61
|
purpose: <string>
|
package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/orchestrate.md
CHANGED
|
@@ -24,8 +24,8 @@ Use this when a task spans multiple domains (backend + frontend, security + infr
|
|
|
24
24
|
## Skill Routing
|
|
25
25
|
|
|
26
26
|
- Primary skills: `system-design`, `api-design`
|
|
27
|
-
- Supporting skills (optional): `database-design`, `
|
|
28
|
-
- Start with `system-design` for system design coordination and `api-design` for integration contracts. Add
|
|
27
|
+
- Supporting skills (optional): `database-design`, `deep-research`, `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 `deep-research` before implementation when the coordination challenge depends on fresh external facts or public comparison.
|
|
29
29
|
|
|
30
30
|
## Workflow steps
|
|
31
31
|
|
|
@@ -36,13 +36,13 @@ Use this when starting a new feature, project, or significant change that needs
|
|
|
36
36
|
## Skill Routing
|
|
37
37
|
|
|
38
38
|
- Primary skills: `system-design`, `api-design`
|
|
39
|
-
- Supporting skills (optional): `database-design`, `
|
|
40
|
-
- Start with `system-design` for system design and `api-design` for API contracts. Add `database-design` when data modeling is central, `
|
|
39
|
+
- Supporting skills (optional): `database-design`, `deep-research`, `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, `deep-research` when fresh external knowledge or public comparison is needed.
|
|
41
41
|
|
|
42
42
|
## Workflow steps
|
|
43
43
|
|
|
44
44
|
1. Clarify scope, success criteria, and constraints.
|
|
45
|
-
2. Research existing patterns and dependencies.
|
|
45
|
+
2. Research existing patterns and dependencies, starting in-repo and escalating to `deep-research` only when outside evidence is required.
|
|
46
46
|
3. Decompose into tasks with ownership and dependencies.
|
|
47
47
|
4. Define interfaces, contracts, and failure modes.
|
|
48
48
|
5. Produce acceptance criteria for each milestone.
|
|
@@ -62,7 +62,7 @@ PLAN_WORKFLOW_RESULT:
|
|
|
62
62
|
primary_agent: project-planner
|
|
63
63
|
supporting_agents: [orchestrator?, backend-specialist?, frontend-specialist?, database-architect?]
|
|
64
64
|
primary_skills: [system-design, api-design]
|
|
65
|
-
supporting_skills: [database-design?,
|
|
65
|
+
supporting_skills: [database-design?, deep-research?, mcp-server-builder?]
|
|
66
66
|
plan:
|
|
67
67
|
scope_summary: <string>
|
|
68
68
|
tasks:
|
package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/accessibility.toml
CHANGED
|
@@ -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 route to the researcher posture 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 route to the researcher posture 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 route to the researcher posture 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 route to the researcher posture 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 route to the researcher posture 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 route to the researcher posture 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
|
'''
|
package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/implement-track.toml
CHANGED
|
@@ -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 route to the researcher posture 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 route to the researcher posture 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 route to the researcher posture 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 route to the researcher posture 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
|
'''
|
package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/orchestrate.toml
CHANGED
|
@@ -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 route to the researcher posture 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 route to the researcher posture 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 route to the researcher posture 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 route to the researcher posture 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 route to the researcher posture 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 route to the researcher posture 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 route to the researcher posture 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 route to the researcher posture 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
|
'''
|
|
@@ -44,7 +44,7 @@ Execute this tree top-to-bottom. Stop at the **first match**. Never skip levels.
|
|
|
44
44
|
├─ [TRIVIAL] Single-step, obvious, reversible?
|
|
45
45
|
│ → Execute directly. No routing. Stop.
|
|
46
46
|
│
|
|
47
|
-
├─ [EXPLICIT] User named a command or
|
|
47
|
+
├─ [EXPLICIT] User named a command, specialist, or exact skill?
|
|
48
48
|
│ → Honor that route exactly. Stop.
|
|
49
49
|
│
|
|
50
50
|
├─ [SINGLE-DOMAIN] Multi-step but contained in one specialty?
|
|
@@ -64,6 +64,7 @@ Execute this tree top-to-bottom. Stop at the **first match**. Never skip levels.
|
|
|
64
64
|
**Hard rules:**
|
|
65
65
|
|
|
66
66
|
- Never pre-load skills before route resolution.
|
|
67
|
+
- If the user names an exact skill ID, run `skill_validate` on that ID before `route_resolve`.
|
|
67
68
|
- Never chain multiple skill loads per request.
|
|
68
69
|
- Treat this file as **durable project memory** — not a per-task playbook.
|
|
69
70
|
|
|
@@ -219,6 +220,7 @@ Use this matrix to match incoming tasks to the correct skill and primary posture
|
|
|
219
220
|
| docker-compose-dev | DevOps | Docker Compose local dev environments | DevOps Engineer |
|
|
220
221
|
| kubernetes-deploy | DevOps | K8s manifests, Helm charts, deployment | DevOps Engineer |
|
|
221
222
|
| observability | DevOps | Logging, metrics, tracing, alerting | DevOps Engineer |
|
|
223
|
+
| deep-research | Research | Latest docs, public comparisons, external verification | Researcher |
|
|
222
224
|
| llm-eval | AI/ML | LLM evaluation, benchmarking, evals | Researcher |
|
|
223
225
|
| rag-patterns | AI/ML | RAG architecture, embeddings, retrieval | Researcher |
|
|
224
226
|
| prompt-engineering | AI/ML | Prompt design, few-shot, chain-of-thought | Researcher |
|
|
@@ -254,12 +256,15 @@ cbx workflows doctor gemini --scope project
|
|
|
254
256
|
Keep MCP context lazy and exact. Skills are supporting context, not the route layer.
|
|
255
257
|
|
|
256
258
|
1. Never begin with `skill_search`. Inspect the repo/task locally first.
|
|
257
|
-
2.
|
|
258
|
-
3.
|
|
259
|
-
4.
|
|
260
|
-
5.
|
|
261
|
-
6.
|
|
262
|
-
7.
|
|
263
|
-
8.
|
|
259
|
+
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.
|
|
260
|
+
3. Resolve only free-text workflow/agent intent with `route_resolve` before loading non-explicit skills.
|
|
261
|
+
4. If the route is still unresolved and local grounding leaves the domain unclear, use one narrow `skill_search`.
|
|
262
|
+
5. Always run `skill_validate` on the exact selected ID before `skill_get`.
|
|
263
|
+
6. Call `skill_get` with `includeReferences:false` by default.
|
|
264
|
+
7. Load at most one sidecar markdown file at a time with `skill_get_reference`.
|
|
265
|
+
8. Do not auto-prime every specialist with a skill. Load only what the task clearly needs.
|
|
266
|
+
9. For research: repo/local evidence first, official docs next, Reddit/community only as labeled secondary evidence.
|
|
267
|
+
10. Escalate to research only when freshness matters, public comparison matters, or the user explicitly asks to research/verify.
|
|
268
|
+
11. Use upstream MCP servers such as `postman`, `stitch`, or `playwright` for real cloud/browser actions when available.
|
|
264
269
|
|
|
265
270
|
<!-- cbx:mcp:auto:end -->
|
package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/deep-research/SKILL.md
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: deep-research
|
|
3
|
+
description: Use when investigating latest vendor behavior, comparing tools or platforms, verifying claims beyond the repo, or gathering external evidence before implementation.
|
|
4
|
+
---
|
|
5
|
+
# Deep Research
|
|
6
|
+
|
|
7
|
+
## Purpose
|
|
8
|
+
|
|
9
|
+
Run a disciplined research pass before implementation when the repo alone is not enough. This skill keeps research evidence-driven: inspect the local codebase first, escalate to official docs when freshness or public comparison matters, then use labeled community evidence only when it adds practical context.
|
|
10
|
+
|
|
11
|
+
## When to Use
|
|
12
|
+
|
|
13
|
+
- Verifying latest SDK, CLI, API, or platform behavior
|
|
14
|
+
- Comparing tools, frameworks, hosted services, or implementation approaches
|
|
15
|
+
- Checking whether public docs and the local repo disagree
|
|
16
|
+
- Gathering external evidence before planning a migration or new capability
|
|
17
|
+
- Producing a structured research brief that hands off cleanly into implementation
|
|
18
|
+
|
|
19
|
+
## Instructions
|
|
20
|
+
|
|
21
|
+
1. **Define the research question before collecting sources** because vague research sprawls quickly. Restate the target topic, freshness requirement, comparison axis, and what decision the findings need to support.
|
|
22
|
+
|
|
23
|
+
2. **Inspect the repo first** because many questions are already answerable from local code, configs, tests, docs, or generated assets. Do not browse externally until the local evidence is exhausted or clearly insufficient.
|
|
24
|
+
|
|
25
|
+
3. **Decide whether external research is actually required** because not every task needs web evidence. Escalate only when freshness matters, public comparison matters, or the user explicitly asks to research or verify.
|
|
26
|
+
|
|
27
|
+
4. **Follow the source ladder strictly** because evidence quality matters. Use official docs, upstream repositories, standards, and maintainer material as primary sources before looking at blogs, issue threads, or Reddit.
|
|
28
|
+
|
|
29
|
+
5. **Capture concrete source details** because research without provenance is hard to trust. Record exact links, relevant dates, versions, and any repo files that support or contradict the external evidence.
|
|
30
|
+
|
|
31
|
+
6. **Cross-check important claims across more than one source when possible** because public docs, repos, and community advice can drift. If sources disagree, say so explicitly instead of smoothing over the conflict.
|
|
32
|
+
|
|
33
|
+
7. **Use Reddit and other community sources only as labeled secondary evidence** because they can surface practical gotchas but are not authoritative. Treat them as implementation color, not final truth.
|
|
34
|
+
|
|
35
|
+
8. **Separate verified facts from inference** because downstream planning depends on confidence. Mark what is directly supported by repo evidence or official sources versus what you infer from patterns or secondary signals.
|
|
36
|
+
|
|
37
|
+
9. **Keep the output decision-oriented** because the goal is not to dump links. Tie each finding back to the implementation, workflow, agent, or skill decision it affects.
|
|
38
|
+
|
|
39
|
+
10. **Recommend the next route explicitly** because research is usually a handoff, not the end of the task. Name the next workflow, agent, or exact skill that should continue the work.
|
|
40
|
+
|
|
41
|
+
11. **State the remaining gaps and risks** because incomplete research is still useful when the uncertainty is visible. Call out what you could not verify, what may have changed recently, and what assumptions remain.
|
|
42
|
+
|
|
43
|
+
12. **Avoid over-quoting and over-collecting** because research quality comes from synthesis, not volume. Prefer concise summaries with high-signal citations over long pasted excerpts.
|
|
44
|
+
|
|
45
|
+
13. **When the task turns into implementation, stop researching and hand off** because mixing discovery and execution usually creates drift. Deliver the research brief first, then route into the correct workflow or specialist.
|
|
46
|
+
|
|
47
|
+
## Output Format
|
|
48
|
+
|
|
49
|
+
Deliver:
|
|
50
|
+
|
|
51
|
+
1. **Research question** — topic, freshness requirement, and decision to support
|
|
52
|
+
2. **Verified facts** — repo evidence and primary-source findings
|
|
53
|
+
3. **Secondary/community evidence** — labeled lower-trust supporting signals
|
|
54
|
+
4. **Gaps / unknowns** — unresolved questions or contradictory evidence
|
|
55
|
+
5. **Recommended next route** — direct execution, workflow, agent, or exact skill to use next
|
|
56
|
+
|
|
57
|
+
## References
|
|
58
|
+
|
|
59
|
+
Load only the file needed for the current question.
|
|
60
|
+
|
|
61
|
+
| File | Load when |
|
|
62
|
+
| --- | --- |
|
|
63
|
+
| `references/source-ladder.md` | Need the repo-first and source-priority policy for official docs versus community evidence. |
|
|
64
|
+
| `references/research-output.md` | Need the structured output format, evidence labeling rules, or handoff pattern. |
|
|
65
|
+
| `references/comparison-checklist.md` | Comparing vendors, frameworks, or tools and need a concrete evaluation frame. |
|
|
66
|
+
|
|
67
|
+
## Examples
|
|
68
|
+
|
|
69
|
+
Use these when the task shape already matches.
|
|
70
|
+
|
|
71
|
+
| File | Use when |
|
|
72
|
+
| --- | --- |
|
|
73
|
+
| `examples/01-latest-docs-check.md` | Verifying a latest capability or doc claim before implementation. |
|
|
74
|
+
| `examples/02-ecosystem-comparison.md` | Comparing multiple tools or platforms with official-first sourcing. |
|
|
75
|
+
| `examples/03-research-to-implementation-handoff.md` | Turning research findings into a concrete next workflow or specialist handoff. |
|
|
76
|
+
|
|
77
|
+
## Gemini Research Flow
|
|
78
|
+
|
|
79
|
+
- Treat Gemini commands and GEMINI.md as routing aids, not primary evidence. The evidence still comes from the repo first, then official docs, then labeled community sources.
|
|
80
|
+
- Use the mirrored references to keep the research output structured: verified facts, secondary evidence, gaps, and recommended next route.
|
|
81
|
+
- When a request is implementation-heavy but freshness matters, complete the research pass first, then move into the chosen workflow.
|
|
82
|
+
|
|
83
|
+
## Gemini Platform Notes
|
|
84
|
+
|
|
85
|
+
- Use `activate_skill` to invoke skills by name from Gemini CLI or Gemini Code Assist.
|
|
86
|
+
- Skill files are stored under `.gemini/skills/` in the project root.
|
|
87
|
+
- Gemini does not support `context: fork` — all skill execution is inline.
|
|
88
|
+
- User arguments are passed as natural language in the activation prompt.
|
|
89
|
+
- Reference files are loaded relative to the skill directory under `.gemini/skills/<skill-id>/`.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Deep Research Eval Assertions
|
|
2
|
+
|
|
3
|
+
## Eval 1: Latest Capability Verification
|
|
4
|
+
|
|
5
|
+
1. **repo-first** — Starts by checking repo or local evidence before jumping to web claims.
|
|
6
|
+
2. **official-first** — Uses official docs or upstream sources as the primary evidence for the capability.
|
|
7
|
+
3. **secondary-labeled** — If community sources are mentioned, labels them as secondary evidence instead of presenting them as authoritative.
|
|
8
|
+
4. **gaps-called-out** — Identifies unresolved uncertainty or missing confirmation.
|
|
9
|
+
5. **next-route** — Ends with a concrete recommended workflow, agent, or skill to use next.
|
|
10
|
+
|
|
11
|
+
## Eval 2: Tool Comparison
|
|
12
|
+
|
|
13
|
+
1. **comparison-frame** — Defines the comparison axes instead of producing vague preferences.
|
|
14
|
+
2. **repo-impact** — Connects the comparison back to the current repo or implementation constraints.
|
|
15
|
+
3. **fact-vs-inference** — Separates verified facts from inference or interpretation.
|
|
16
|
+
4. **decision-oriented** — Produces a recommendation or explicit defer condition.
|
|
17
|
+
5. **no-research-sprawl** — Keeps the output concise and structured rather than dumping raw links.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"name": "latest-capability-verification",
|
|
4
|
+
"description": "Validate that the skill performs repo-first research, prioritizes official documentation, labels secondary evidence, and recommends a next route.",
|
|
5
|
+
"prompt": "Research whether the latest official Claude Code hook surface supports reinforcing route honoring before implementation. Start with the current repo state, then use official docs if needed. If community sources add useful practical context, include them but label them appropriately. End with the next workflow, agent, or skill we should use.",
|
|
6
|
+
"assertions": [
|
|
7
|
+
{
|
|
8
|
+
"id": "repo-first",
|
|
9
|
+
"description": "Starts with repo or local evidence before using external sources."
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"id": "official-first",
|
|
13
|
+
"description": "Treats official docs or upstream sources as the primary evidence."
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"id": "secondary-labeled",
|
|
17
|
+
"description": "Labels any Reddit or community evidence as secondary rather than authoritative."
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"id": "gaps-called-out",
|
|
21
|
+
"description": "States any unresolved gaps, conflicts, or unknowns."
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"id": "next-route",
|
|
25
|
+
"description": "Ends with a concrete recommended next route."
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "tool-comparison",
|
|
31
|
+
"description": "Validate that the skill compares options with a clear frame, ties findings back to repo impact, and produces a decision-ready output.",
|
|
32
|
+
"prompt": "Compare whether our CLI should keep enforcement in Gemini command wrappers only or also add Claude hook templates. Use the repo state first, then official docs for current platform capabilities, and include community evidence only if it adds implementation nuance. Finish with a recommendation and the next route to take.",
|
|
33
|
+
"assertions": [
|
|
34
|
+
{
|
|
35
|
+
"id": "comparison-frame",
|
|
36
|
+
"description": "Defines concrete comparison axes such as repo impact, enforcement surface, and maintenance cost."
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"id": "repo-impact",
|
|
40
|
+
"description": "Connects each option back to the current repo or bundle behavior."
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"id": "fact-vs-inference",
|
|
44
|
+
"description": "Separates verified facts from inference or interpretation."
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"id": "decision-oriented",
|
|
48
|
+
"description": "Produces a recommendation or explicit defer condition."
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"id": "no-research-sprawl",
|
|
52
|
+
"description": "Keeps the answer structured instead of turning into an unfiltered dump of sources."
|
|
53
|
+
}
|
|
54
|
+
]
|
|
55
|
+
}
|
|
56
|
+
]
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Example: Latest Docs Check
|
|
2
|
+
|
|
3
|
+
## User Request
|
|
4
|
+
|
|
5
|
+
> Research whether Claude Code hooks can reinforce route honoring before we add new workflow rules.
|
|
6
|
+
|
|
7
|
+
## Expected Shape
|
|
8
|
+
|
|
9
|
+
1. Inspect the repo's current Claude rule and hook support first.
|
|
10
|
+
2. Verify the current official Claude docs for hooks, event names, and config format.
|
|
11
|
+
3. Separate those verified facts from any community commentary about hook effectiveness.
|
|
12
|
+
4. End with the recommended next route, for example `@researcher` continuing the research or `/create` applying the validated hook template changes.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Example: Ecosystem Comparison
|
|
2
|
+
|
|
3
|
+
## User Request
|
|
4
|
+
|
|
5
|
+
> Compare whether our CLI should keep Gemini command enforcement only, or add another platform-native hook layer for Claude as well.
|
|
6
|
+
|
|
7
|
+
## Expected Shape
|
|
8
|
+
|
|
9
|
+
1. Start with repo constraints and current platform bundle behavior.
|
|
10
|
+
2. Compare the official platform capabilities using primary docs.
|
|
11
|
+
3. Add any useful community evidence as clearly labeled secondary input.
|
|
12
|
+
4. Produce a recommendation tied to the repo: which platform gets which enforcement surface, and why.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Example: Research To Implementation Handoff
|
|
2
|
+
|
|
3
|
+
## User Request
|
|
4
|
+
|
|
5
|
+
> Research the latest Codex, Claude, and Gemini MCP behavior, then tell me the next route to update our workflow rules safely.
|
|
6
|
+
|
|
7
|
+
## Expected Shape
|
|
8
|
+
|
|
9
|
+
1. Gather repo evidence first.
|
|
10
|
+
2. Verify current official docs for each platform.
|
|
11
|
+
3. Summarize verified facts, secondary evidence, and gaps.
|
|
12
|
+
4. End with a precise next route such as `/plan` for a policy change or `skill-creator` for skill/rule packaging work.
|