@cubis/foundry 0.3.76 → 0.3.78
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/build/commands.js +19 -0
- package/dist/cli/build/commands.js.map +1 -0
- package/dist/cli/commands/register.js +4 -0
- package/dist/cli/commands/register.js.map +1 -1
- package/dist/cli/core.js +844 -25
- package/dist/cli/core.js.map +1 -1
- package/mcp/src/tools/skillTools.test.ts +34 -1
- package/package.json +4 -3
- package/src/cli/build/commands.ts +39 -0
- package/src/cli/commands/register.ts +6 -0
- package/src/cli/core.ts +1026 -28
- 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 +20 -2
- package/workflows/skills/generated/skill-catalog.json +70 -4
- package/workflows/skills/skills_index.json +66 -0
- package/workflows/skills/spec-driven-delivery/SKILL.md +63 -0
- package/workflows/workflows/agent-environment-setup/generated/route-manifest.json +123 -10
- package/workflows/workflows/agent-environment-setup/manifest.json +48 -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 +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/architecture.toml +19 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/backend.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/create.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/database.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/debug.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/devops.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/implement-track.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/migrate.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/mobile.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/onboard.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/orchestrate.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/plan.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/refactor.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/release.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/review.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/security.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/spec.toml +19 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/test.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/vercel.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/rules/GEMINI.md +15 -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/skills/spec-driven-delivery/SKILL.md +65 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/architecture.md +82 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/backend.md +3 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/create.md +4 -1
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/database.md +3 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/implement-track.md +7 -1
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/migrate.md +4 -1
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/mobile.md +3 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/onboard.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/orchestrate.md +8 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/plan.md +16 -6
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/refactor.md +3 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/release.md +3 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/spec.md +81 -0
- 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 +17 -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 +66 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/spec-driven-delivery/SKILL.md +66 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/architecture.md +80 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/backend.md +3 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/create.md +4 -1
- package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/database.md +3 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/implement-track.md +7 -1
- package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/migrate.md +4 -1
- package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/mobile.md +3 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/onboard.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/orchestrate.md +8 -3
- package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/plan.md +16 -6
- package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/refactor.md +3 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/release.md +3 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/spec.md +79 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/backend-specialist.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/code-archaeologist.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/database-architect.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/debugger.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/devops-engineer.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/documentation-writer.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/frontend-specialist.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/game-developer.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/mobile-developer.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/orchestrator.md +7 -6
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/penetration-tester.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/performance-optimizer.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/product-manager.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/project-planner.md +5 -4
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/qa-automation-engineer.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/researcher.md +9 -5
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/security-auditor.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/seo-specialist.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/sre-engineer.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/test-engineer.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/validator.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/vercel-expert.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/rules/AGENTS.md +15 -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/skills/spec-driven-delivery/SKILL.md +65 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/accessibility.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/architecture.md +82 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/backend.md +4 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/create.md +5 -2
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/database.md +4 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/debug.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/devops.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/implement-track.md +8 -2
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/migrate.md +5 -2
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/mobile.md +4 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/onboard.md +5 -4
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/orchestrate.md +9 -4
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/plan.md +17 -7
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/refactor.md +4 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/release.md +4 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/review.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/security.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/spec.md +81 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/test.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/vercel.md +1 -1
- 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 +9 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-architecture.prompt.md +18 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-backend.prompt.md +9 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-create.prompt.md +9 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-database.prompt.md +9 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-debug.prompt.md +9 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-devops.prompt.md +9 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-implement-track.prompt.md +9 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-migrate.prompt.md +9 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-mobile.prompt.md +9 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-onboard.prompt.md +9 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-orchestrate.prompt.md +9 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-plan.prompt.md +9 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-refactor.prompt.md +9 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-release.prompt.md +9 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-review.prompt.md +9 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-security.prompt.md +9 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-spec.prompt.md +18 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-test.prompt.md +9 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-vercel.prompt.md +9 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/rules/copilot-instructions.md +15 -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 +66 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/spec-driven-delivery/SKILL.md +70 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/architecture.md +80 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/backend.md +3 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/create.md +4 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/database.md +3 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/implement-track.md +7 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/migrate.md +4 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/mobile.md +3 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/onboard.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/orchestrate.md +8 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/plan.md +16 -6
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/refactor.md +3 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/release.md +3 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/spec.md +79 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/accessibility.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/architecture.toml +19 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/backend.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/create.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/database.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/debug.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/devops.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/implement-track.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/migrate.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/mobile.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/onboard.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/orchestrate.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/plan.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/refactor.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/release.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/review.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/security.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/spec.toml +19 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/test.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/vercel.toml +10 -3
- package/workflows/workflows/agent-environment-setup/platforms/gemini/rules/GEMINI.md +15 -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/skills/spec-driven-delivery/SKILL.md +65 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/architecture.md +82 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/backend.md +3 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/create.md +4 -1
- package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/database.md +3 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/implement-track.md +7 -1
- package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/migrate.md +4 -1
- package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/mobile.md +3 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/onboard.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/orchestrate.md +8 -3
- package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/plan.md +16 -6
- package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/refactor.md +3 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/release.md +3 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/spec.md +81 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/backend-specialist.md +5 -5
- package/workflows/workflows/agent-environment-setup/shared/agents/database-architect.md +3 -3
- package/workflows/workflows/agent-environment-setup/shared/agents/orchestrator.md +10 -9
- package/workflows/workflows/agent-environment-setup/shared/agents/penetration-tester.md +3 -3
- package/workflows/workflows/agent-environment-setup/shared/agents/product-manager.md +6 -6
- package/workflows/workflows/agent-environment-setup/shared/agents/project-planner.md +10 -9
- package/workflows/workflows/agent-environment-setup/shared/agents/researcher.md +13 -9
- package/workflows/workflows/agent-environment-setup/shared/agents/security-auditor.md +2 -2
- package/workflows/workflows/agent-environment-setup/shared/rules/STEERING.md +57 -13
- package/workflows/workflows/agent-environment-setup/shared/rules/overrides/claude.md +2 -0
- package/workflows/workflows/agent-environment-setup/shared/rules/overrides/codex.md +3 -3
- package/workflows/workflows/agent-environment-setup/shared/rules/overrides/gemini.md +20 -0
- package/workflows/workflows/agent-environment-setup/shared/workflows/architecture.md +80 -0
- package/workflows/workflows/agent-environment-setup/shared/workflows/backend.md +8 -5
- package/workflows/workflows/agent-environment-setup/shared/workflows/create.md +5 -2
- package/workflows/workflows/agent-environment-setup/shared/workflows/database.md +6 -3
- package/workflows/workflows/agent-environment-setup/shared/workflows/implement-track.md +12 -6
- package/workflows/workflows/agent-environment-setup/shared/workflows/migrate.md +7 -4
- package/workflows/workflows/agent-environment-setup/shared/workflows/mobile.md +3 -0
- package/workflows/workflows/agent-environment-setup/shared/workflows/onboard.md +6 -5
- package/workflows/workflows/agent-environment-setup/shared/workflows/orchestrate.md +10 -5
- package/workflows/workflows/agent-environment-setup/shared/workflows/plan.md +18 -8
- package/workflows/workflows/agent-environment-setup/shared/workflows/refactor.md +5 -2
- package/workflows/workflows/agent-environment-setup/shared/workflows/release.md +3 -0
- package/workflows/workflows/agent-environment-setup/shared/workflows/security.md +2 -2
- package/workflows/workflows/agent-environment-setup/shared/workflows/spec.md +79 -0
package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/backend.toml
CHANGED
|
@@ -4,9 +4,16 @@ Follow the /backend workflow from .agent/workflows/backend.md.
|
|
|
4
4
|
|
|
5
5
|
Execution contract:
|
|
6
6
|
1. Treat route selection as already resolved by this command; do not begin with skill discovery.
|
|
7
|
-
2.
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
|
|
8
|
+
Attached skills:
|
|
9
|
+
- Load these exact skill IDs first: `api-design`, `javascript-best-practices`, `owasp-security-review`, `database-design`, `nestjs`, `fastapi`, `microservices-design`, `drizzle-orm`, `stripe-integration`, `ci-cd-pipeline`, `frontend-design`, `typescript-best-practices`, `python-best-practices`, `golang-best-practices`.
|
|
10
|
+
- Local skill file hints if installed: `.agent/skills/api-design/SKILL.md`, `.agent/skills/javascript-best-practices/SKILL.md`, `.agent/skills/owasp-security-review/SKILL.md`, `.agent/skills/database-design/SKILL.md`, `.agent/skills/nestjs/SKILL.md`, `.agent/skills/fastapi/SKILL.md`, `.agent/skills/microservices-design/SKILL.md`, `.agent/skills/drizzle-orm/SKILL.md`.
|
|
11
|
+
- Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
|
|
12
|
+
3. Confirm the request fits the workflow's "When to use" section.
|
|
13
|
+
4. Execute according to "Workflow steps" and apply "Context notes".
|
|
14
|
+
5. Complete "Verification" checks and report concrete evidence.
|
|
15
|
+
6. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
|
|
16
|
+
7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
|
|
10
17
|
|
|
11
18
|
If command arguments are provided, treat them as additional user context.
|
|
12
19
|
'''
|
package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/create.toml
CHANGED
|
@@ -4,9 +4,16 @@ Follow the /create workflow from .agent/workflows/create.md.
|
|
|
4
4
|
|
|
5
5
|
Execution contract:
|
|
6
6
|
1. Treat route selection as already resolved by this command; do not begin with skill discovery.
|
|
7
|
-
2.
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
|
|
8
|
+
Attached skills:
|
|
9
|
+
- Load these exact skill IDs first: `typescript-best-practices`, `javascript-best-practices`, `python-best-practices`, `golang-best-practices`, `java-best-practices`, `csharp-best-practices`, `kotlin-best-practices`, `rust-best-practices`, `php-best-practices`, `expo-app`, `swift-best-practices`, `api-design`, `nestjs`, `fastapi`, `drizzle-orm`, `database-design`, `mcp-server-builder`, `stitch`, `react`, `nextjs`, `frontend-design`, `performance-testing`, `skill-creator`, `stripe-integration`, `ci-cd-pipeline`.
|
|
10
|
+
- Local skill file hints if installed: `.agent/skills/typescript-best-practices/SKILL.md`, `.agent/skills/javascript-best-practices/SKILL.md`, `.agent/skills/python-best-practices/SKILL.md`, `.agent/skills/golang-best-practices/SKILL.md`, `.agent/skills/java-best-practices/SKILL.md`, `.agent/skills/csharp-best-practices/SKILL.md`, `.agent/skills/kotlin-best-practices/SKILL.md`, `.agent/skills/rust-best-practices/SKILL.md`.
|
|
11
|
+
- Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
|
|
12
|
+
3. Confirm the request fits the workflow's "When to use" section.
|
|
13
|
+
4. Execute according to "Workflow steps" and apply "Context notes".
|
|
14
|
+
5. Complete "Verification" checks and report concrete evidence.
|
|
15
|
+
6. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
|
|
16
|
+
7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
|
|
10
17
|
|
|
11
18
|
If command arguments are provided, treat them as additional user context.
|
|
12
19
|
'''
|
package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/database.toml
CHANGED
|
@@ -4,9 +4,16 @@ Follow the /database workflow from .agent/workflows/database.md.
|
|
|
4
4
|
|
|
5
5
|
Execution contract:
|
|
6
6
|
1. Treat route selection as already resolved by this command; do not begin with skill discovery.
|
|
7
|
-
2.
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
|
|
8
|
+
Attached skills:
|
|
9
|
+
- Load these exact skill IDs first: `database-design`, `drizzle-orm`, `typescript-best-practices`, `javascript-best-practices`, `python-best-practices`.
|
|
10
|
+
- Local skill file hints if installed: `.agent/skills/database-design/SKILL.md`, `.agent/skills/drizzle-orm/SKILL.md`, `.agent/skills/typescript-best-practices/SKILL.md`, `.agent/skills/javascript-best-practices/SKILL.md`, `.agent/skills/python-best-practices/SKILL.md`.
|
|
11
|
+
- Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
|
|
12
|
+
3. Confirm the request fits the workflow's "When to use" section.
|
|
13
|
+
4. Execute according to "Workflow steps" and apply "Context notes".
|
|
14
|
+
5. Complete "Verification" checks and report concrete evidence.
|
|
15
|
+
6. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
|
|
16
|
+
7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
|
|
10
17
|
|
|
11
18
|
If command arguments are provided, treat them as additional user context.
|
|
12
19
|
'''
|
package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/debug.toml
CHANGED
|
@@ -4,9 +4,16 @@ Follow the /debug workflow from .agent/workflows/debug.md.
|
|
|
4
4
|
|
|
5
5
|
Execution contract:
|
|
6
6
|
1. Treat route selection as already resolved by this command; do not begin with skill discovery.
|
|
7
|
-
2.
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
|
|
8
|
+
Attached skills:
|
|
9
|
+
- Load these exact skill IDs first: `systematic-debugging`, `observability`, `unit-testing`, `typescript-best-practices`, `javascript-best-practices`, `python-best-practices`, `golang-best-practices`, `java-best-practices`, `csharp-best-practices`, `kotlin-best-practices`, `rust-best-practices`, `integration-testing`, `playwright-interactive`, `skill-creator`.
|
|
10
|
+
- Local skill file hints if installed: `.agent/skills/systematic-debugging/SKILL.md`, `.agent/skills/observability/SKILL.md`, `.agent/skills/unit-testing/SKILL.md`, `.agent/skills/typescript-best-practices/SKILL.md`, `.agent/skills/javascript-best-practices/SKILL.md`, `.agent/skills/python-best-practices/SKILL.md`, `.agent/skills/golang-best-practices/SKILL.md`, `.agent/skills/java-best-practices/SKILL.md`.
|
|
11
|
+
- Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
|
|
12
|
+
3. Confirm the request fits the workflow's "When to use" section.
|
|
13
|
+
4. Execute according to "Workflow steps" and apply "Context notes".
|
|
14
|
+
5. Complete "Verification" checks and report concrete evidence.
|
|
15
|
+
6. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
|
|
16
|
+
7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
|
|
10
17
|
|
|
11
18
|
If command arguments are provided, treat them as additional user context.
|
|
12
19
|
'''
|
package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/devops.toml
CHANGED
|
@@ -4,9 +4,16 @@ Follow the /devops workflow from .agent/workflows/devops.md.
|
|
|
4
4
|
|
|
5
5
|
Execution contract:
|
|
6
6
|
1. Treat route selection as already resolved by this command; do not begin with skill discovery.
|
|
7
|
-
2.
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
|
|
8
|
+
Attached skills:
|
|
9
|
+
- Load these exact skill IDs first: `ci-cd-pipeline`, `kubernetes-deploy`, `observability`, `git-workflow`, `systematic-debugging`, `typescript-best-practices`, `javascript-best-practices`, `python-best-practices`, `golang-best-practices`.
|
|
10
|
+
- Local skill file hints if installed: `.agent/skills/ci-cd-pipeline/SKILL.md`, `.agent/skills/kubernetes-deploy/SKILL.md`, `.agent/skills/observability/SKILL.md`, `.agent/skills/git-workflow/SKILL.md`, `.agent/skills/systematic-debugging/SKILL.md`, `.agent/skills/typescript-best-practices/SKILL.md`, `.agent/skills/javascript-best-practices/SKILL.md`, `.agent/skills/python-best-practices/SKILL.md`.
|
|
11
|
+
- Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
|
|
12
|
+
3. Confirm the request fits the workflow's "When to use" section.
|
|
13
|
+
4. Execute according to "Workflow steps" and apply "Context notes".
|
|
14
|
+
5. Complete "Verification" checks and report concrete evidence.
|
|
15
|
+
6. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
|
|
16
|
+
7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
|
|
10
17
|
|
|
11
18
|
If command arguments are provided, treat them as additional user context.
|
|
12
19
|
'''
|
|
@@ -4,9 +4,16 @@ Follow the /implement-track workflow from .agent/workflows/implement-track.md.
|
|
|
4
4
|
|
|
5
5
|
Execution contract:
|
|
6
6
|
1. Treat route selection as already resolved by this command; do not begin with skill discovery.
|
|
7
|
-
2.
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
|
|
8
|
+
Attached skills:
|
|
9
|
+
- Load these exact skill IDs first: `system-design`, `api-design`, `database-design`, `typescript-best-practices`, `javascript-best-practices`, `python-best-practices`, `golang-best-practices`, `react`, `nextjs`.
|
|
10
|
+
- Local skill file hints if installed: `.agent/skills/system-design/SKILL.md`, `.agent/skills/api-design/SKILL.md`, `.agent/skills/database-design/SKILL.md`, `.agent/skills/typescript-best-practices/SKILL.md`, `.agent/skills/javascript-best-practices/SKILL.md`, `.agent/skills/python-best-practices/SKILL.md`, `.agent/skills/golang-best-practices/SKILL.md`, `.agent/skills/react/SKILL.md`.
|
|
11
|
+
- Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
|
|
12
|
+
3. Confirm the request fits the workflow's "When to use" section.
|
|
13
|
+
4. Execute according to "Workflow steps" and apply "Context notes".
|
|
14
|
+
5. Complete "Verification" checks and report concrete evidence.
|
|
15
|
+
6. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
|
|
16
|
+
7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
|
|
10
17
|
|
|
11
18
|
If command arguments are provided, treat them as additional user context.
|
|
12
19
|
'''
|
package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/migrate.toml
CHANGED
|
@@ -4,9 +4,16 @@ Follow the /migrate workflow from .agent/workflows/migrate.md.
|
|
|
4
4
|
|
|
5
5
|
Execution contract:
|
|
6
6
|
1. Treat route selection as already resolved by this command; do not begin with skill discovery.
|
|
7
|
-
2.
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
|
|
8
|
+
Attached skills:
|
|
9
|
+
- Load these exact skill IDs first: `system-design`, `code-review`, `unit-testing`, `typescript-best-practices`, `javascript-best-practices`, `python-best-practices`, `golang-best-practices`.
|
|
10
|
+
- Local skill file hints if installed: `.agent/skills/system-design/SKILL.md`, `.agent/skills/code-review/SKILL.md`, `.agent/skills/unit-testing/SKILL.md`, `.agent/skills/typescript-best-practices/SKILL.md`, `.agent/skills/javascript-best-practices/SKILL.md`, `.agent/skills/python-best-practices/SKILL.md`, `.agent/skills/golang-best-practices/SKILL.md`.
|
|
11
|
+
- Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
|
|
12
|
+
3. Confirm the request fits the workflow's "When to use" section.
|
|
13
|
+
4. Execute according to "Workflow steps" and apply "Context notes".
|
|
14
|
+
5. Complete "Verification" checks and report concrete evidence.
|
|
15
|
+
6. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
|
|
16
|
+
7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
|
|
10
17
|
|
|
11
18
|
If command arguments are provided, treat them as additional user context.
|
|
12
19
|
'''
|
package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/mobile.toml
CHANGED
|
@@ -4,9 +4,16 @@ Follow the /mobile workflow from .agent/workflows/mobile.md.
|
|
|
4
4
|
|
|
5
5
|
Execution contract:
|
|
6
6
|
1. Treat route selection as already resolved by this command; do not begin with skill discovery.
|
|
7
|
-
2.
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
|
|
8
|
+
Attached skills:
|
|
9
|
+
- Load these exact skill IDs first: `expo-app`, `react-native`, `stitch`, `frontend-design`, `swift-best-practices`, `kotlin-best-practices`.
|
|
10
|
+
- Local skill file hints if installed: `.agent/skills/expo-app/SKILL.md`, `.agent/skills/react-native/SKILL.md`, `.agent/skills/stitch/SKILL.md`, `.agent/skills/frontend-design/SKILL.md`, `.agent/skills/swift-best-practices/SKILL.md`, `.agent/skills/kotlin-best-practices/SKILL.md`.
|
|
11
|
+
- Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
|
|
12
|
+
3. Confirm the request fits the workflow's "When to use" section.
|
|
13
|
+
4. Execute according to "Workflow steps" and apply "Context notes".
|
|
14
|
+
5. Complete "Verification" checks and report concrete evidence.
|
|
15
|
+
6. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
|
|
16
|
+
7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
|
|
10
17
|
|
|
11
18
|
If command arguments are provided, treat them as additional user context.
|
|
12
19
|
'''
|
package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/onboard.toml
CHANGED
|
@@ -4,9 +4,16 @@ Follow the /onboard workflow from .agent/workflows/onboard.md.
|
|
|
4
4
|
|
|
5
5
|
Execution contract:
|
|
6
6
|
1. Treat route selection as already resolved by this command; do not begin with skill discovery.
|
|
7
|
-
2.
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
|
|
8
|
+
Attached skills:
|
|
9
|
+
- Load these exact skill IDs first: `deep-research`, `system-design`, `database-design`, `typescript-best-practices`, `javascript-best-practices`, `python-best-practices`.
|
|
10
|
+
- Local skill file hints if installed: `.agent/skills/deep-research/SKILL.md`, `.agent/skills/system-design/SKILL.md`, `.agent/skills/database-design/SKILL.md`, `.agent/skills/typescript-best-practices/SKILL.md`, `.agent/skills/javascript-best-practices/SKILL.md`, `.agent/skills/python-best-practices/SKILL.md`.
|
|
11
|
+
- Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
|
|
12
|
+
3. Confirm the request fits the workflow's "When to use" section.
|
|
13
|
+
4. Execute according to "Workflow steps" and apply "Context notes".
|
|
14
|
+
5. Complete "Verification" checks and report concrete evidence.
|
|
15
|
+
6. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
|
|
16
|
+
7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
|
|
10
17
|
|
|
11
18
|
If command arguments are provided, treat them as additional user context.
|
|
12
19
|
'''
|
package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/orchestrate.toml
CHANGED
|
@@ -4,9 +4,16 @@ Follow the /orchestrate workflow from .agent/workflows/orchestrate.md.
|
|
|
4
4
|
|
|
5
5
|
Execution contract:
|
|
6
6
|
1. Treat route selection as already resolved by this command; do not begin with skill discovery.
|
|
7
|
-
2.
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
|
|
8
|
+
Attached skills:
|
|
9
|
+
- Load these exact skill IDs first: `system-design`, `api-design`, `database-design`, `deep-research`, `mcp-server-builder`, `tech-doc`, `prompt-engineering`, `skill-creator`.
|
|
10
|
+
- Local skill file hints if installed: `.agent/skills/system-design/SKILL.md`, `.agent/skills/api-design/SKILL.md`, `.agent/skills/database-design/SKILL.md`, `.agent/skills/deep-research/SKILL.md`, `.agent/skills/mcp-server-builder/SKILL.md`, `.agent/skills/tech-doc/SKILL.md`, `.agent/skills/prompt-engineering/SKILL.md`, `.agent/skills/skill-creator/SKILL.md`.
|
|
11
|
+
- Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
|
|
12
|
+
3. Confirm the request fits the workflow's "When to use" section.
|
|
13
|
+
4. Execute according to "Workflow steps" and apply "Context notes".
|
|
14
|
+
5. Complete "Verification" checks and report concrete evidence.
|
|
15
|
+
6. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
|
|
16
|
+
7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
|
|
10
17
|
|
|
11
18
|
If command arguments are provided, treat them as additional user context.
|
|
12
19
|
'''
|
package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/plan.toml
CHANGED
|
@@ -4,9 +4,16 @@ Follow the /plan workflow from .agent/workflows/plan.md.
|
|
|
4
4
|
|
|
5
5
|
Execution contract:
|
|
6
6
|
1. Treat route selection as already resolved by this command; do not begin with skill discovery.
|
|
7
|
-
2.
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
|
|
8
|
+
Attached skills:
|
|
9
|
+
- Load these exact skill IDs first: `system-design`, `api-design`, `database-design`, `deep-research`, `mcp-server-builder`, `tech-doc`, `prompt-engineering`, `skill-creator`.
|
|
10
|
+
- Local skill file hints if installed: `.agent/skills/system-design/SKILL.md`, `.agent/skills/api-design/SKILL.md`, `.agent/skills/database-design/SKILL.md`, `.agent/skills/deep-research/SKILL.md`, `.agent/skills/mcp-server-builder/SKILL.md`, `.agent/skills/tech-doc/SKILL.md`, `.agent/skills/prompt-engineering/SKILL.md`, `.agent/skills/skill-creator/SKILL.md`.
|
|
11
|
+
- Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
|
|
12
|
+
3. Confirm the request fits the workflow's "When to use" section.
|
|
13
|
+
4. Execute according to "Workflow steps" and apply "Context notes".
|
|
14
|
+
5. Complete "Verification" checks and report concrete evidence.
|
|
15
|
+
6. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
|
|
16
|
+
7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
|
|
10
17
|
|
|
11
18
|
If command arguments are provided, treat them as additional user context.
|
|
12
19
|
'''
|
package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/refactor.toml
CHANGED
|
@@ -4,9 +4,16 @@ Follow the /refactor workflow from .agent/workflows/refactor.md.
|
|
|
4
4
|
|
|
5
5
|
Execution contract:
|
|
6
6
|
1. Treat route selection as already resolved by this command; do not begin with skill discovery.
|
|
7
|
-
2.
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
|
|
8
|
+
Attached skills:
|
|
9
|
+
- Load these exact skill IDs first: `code-review`, `system-design`, `unit-testing`, `typescript-best-practices`, `javascript-best-practices`, `python-best-practices`, `golang-best-practices`.
|
|
10
|
+
- Local skill file hints if installed: `.agent/skills/code-review/SKILL.md`, `.agent/skills/system-design/SKILL.md`, `.agent/skills/unit-testing/SKILL.md`, `.agent/skills/typescript-best-practices/SKILL.md`, `.agent/skills/javascript-best-practices/SKILL.md`, `.agent/skills/python-best-practices/SKILL.md`, `.agent/skills/golang-best-practices/SKILL.md`.
|
|
11
|
+
- Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
|
|
12
|
+
3. Confirm the request fits the workflow's "When to use" section.
|
|
13
|
+
4. Execute according to "Workflow steps" and apply "Context notes".
|
|
14
|
+
5. Complete "Verification" checks and report concrete evidence.
|
|
15
|
+
6. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
|
|
16
|
+
7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
|
|
10
17
|
|
|
11
18
|
If command arguments are provided, treat them as additional user context.
|
|
12
19
|
'''
|
package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/release.toml
CHANGED
|
@@ -4,9 +4,16 @@ Follow the /release workflow from .agent/workflows/release.md.
|
|
|
4
4
|
|
|
5
5
|
Execution contract:
|
|
6
6
|
1. Treat route selection as already resolved by this command; do not begin with skill discovery.
|
|
7
|
-
2.
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
|
|
8
|
+
Attached skills:
|
|
9
|
+
- Load these exact skill IDs first: `ci-cd-pipeline`, `git-workflow`, `tech-doc`, `observability`, `kubernetes-deploy`, `typescript-best-practices`, `javascript-best-practices`.
|
|
10
|
+
- Local skill file hints if installed: `.agent/skills/ci-cd-pipeline/SKILL.md`, `.agent/skills/git-workflow/SKILL.md`, `.agent/skills/tech-doc/SKILL.md`, `.agent/skills/observability/SKILL.md`, `.agent/skills/kubernetes-deploy/SKILL.md`, `.agent/skills/typescript-best-practices/SKILL.md`, `.agent/skills/javascript-best-practices/SKILL.md`.
|
|
11
|
+
- Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
|
|
12
|
+
3. Confirm the request fits the workflow's "When to use" section.
|
|
13
|
+
4. Execute according to "Workflow steps" and apply "Context notes".
|
|
14
|
+
5. Complete "Verification" checks and report concrete evidence.
|
|
15
|
+
6. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
|
|
16
|
+
7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
|
|
10
17
|
|
|
11
18
|
If command arguments are provided, treat them as additional user context.
|
|
12
19
|
'''
|
package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/review.toml
CHANGED
|
@@ -4,9 +4,16 @@ Follow the /review workflow from .agent/workflows/review.md.
|
|
|
4
4
|
|
|
5
5
|
Execution contract:
|
|
6
6
|
1. Treat route selection as already resolved by this command; do not begin with skill discovery.
|
|
7
|
-
2.
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
|
|
8
|
+
Attached skills:
|
|
9
|
+
- Load these exact skill IDs first: `code-review`, `unit-testing`, `owasp-security-review`, `performance-testing`, `react`, `nextjs`, `typescript-best-practices`, `javascript-best-practices`, `python-best-practices`, `golang-best-practices`.
|
|
10
|
+
- Local skill file hints if installed: `.agent/skills/code-review/SKILL.md`, `.agent/skills/unit-testing/SKILL.md`, `.agent/skills/owasp-security-review/SKILL.md`, `.agent/skills/performance-testing/SKILL.md`, `.agent/skills/react/SKILL.md`, `.agent/skills/nextjs/SKILL.md`, `.agent/skills/typescript-best-practices/SKILL.md`, `.agent/skills/javascript-best-practices/SKILL.md`.
|
|
11
|
+
- Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
|
|
12
|
+
3. Confirm the request fits the workflow's "When to use" section.
|
|
13
|
+
4. Execute according to "Workflow steps" and apply "Context notes".
|
|
14
|
+
5. Complete "Verification" checks and report concrete evidence.
|
|
15
|
+
6. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
|
|
16
|
+
7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
|
|
10
17
|
|
|
11
18
|
If command arguments are provided, treat them as additional user context.
|
|
12
19
|
'''
|
package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/security.toml
CHANGED
|
@@ -4,9 +4,16 @@ Follow the /security workflow from .agent/workflows/security.md.
|
|
|
4
4
|
|
|
5
5
|
Execution contract:
|
|
6
6
|
1. Treat route selection as already resolved by this command; do not begin with skill discovery.
|
|
7
|
-
2.
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
|
|
8
|
+
Attached skills:
|
|
9
|
+
- Load these exact skill IDs first: `owasp-security-review`, `code-review`, `api-design`, `typescript-best-practices`, `javascript-best-practices`, `python-best-practices`, `golang-best-practices`, `rust-best-practices`.
|
|
10
|
+
- Local skill file hints if installed: `.agent/skills/owasp-security-review/SKILL.md`, `.agent/skills/code-review/SKILL.md`, `.agent/skills/api-design/SKILL.md`, `.agent/skills/typescript-best-practices/SKILL.md`, `.agent/skills/javascript-best-practices/SKILL.md`, `.agent/skills/python-best-practices/SKILL.md`, `.agent/skills/golang-best-practices/SKILL.md`, `.agent/skills/rust-best-practices/SKILL.md`.
|
|
11
|
+
- Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
|
|
12
|
+
3. Confirm the request fits the workflow's "When to use" section.
|
|
13
|
+
4. Execute according to "Workflow steps" and apply "Context notes".
|
|
14
|
+
5. Complete "Verification" checks and report concrete evidence.
|
|
15
|
+
6. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
|
|
16
|
+
7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
|
|
10
17
|
|
|
11
18
|
If command arguments are provided, treat them as additional user context.
|
|
12
19
|
'''
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
description = "Create or refresh a Git-tracked spec pack for non-trivial work, including acceptance criteria, traceability, architecture impact, and next-route handoff."
|
|
2
|
+
prompt = '''
|
|
3
|
+
Follow the /spec workflow from .agent/workflows/spec.md.
|
|
4
|
+
|
|
5
|
+
Execution contract:
|
|
6
|
+
1. Treat route selection as already resolved by this command; do not begin with skill discovery.
|
|
7
|
+
2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
|
|
8
|
+
Attached skills:
|
|
9
|
+
- Load these exact skill IDs first: `spec-driven-delivery`, `sadd`, `system-design`, `architecture-doc`, `deep-research`, `api-design`, `database-design`, `tech-doc`.
|
|
10
|
+
- Local skill file hints if installed: `.agent/skills/spec-driven-delivery/SKILL.md`, `.agent/skills/sadd/SKILL.md`, `.agent/skills/system-design/SKILL.md`, `.agent/skills/architecture-doc/SKILL.md`, `.agent/skills/deep-research/SKILL.md`, `.agent/skills/api-design/SKILL.md`, `.agent/skills/database-design/SKILL.md`, `.agent/skills/tech-doc/SKILL.md`.
|
|
11
|
+
- Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
|
|
12
|
+
3. Confirm the request fits the workflow's "When to use" section.
|
|
13
|
+
4. Execute according to "Workflow steps" and apply "Context notes".
|
|
14
|
+
5. Complete "Verification" checks and report concrete evidence.
|
|
15
|
+
6. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
|
|
16
|
+
7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
|
|
17
|
+
|
|
18
|
+
If command arguments are provided, treat them as additional user context.
|
|
19
|
+
'''
|
package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/test.toml
CHANGED
|
@@ -4,9 +4,16 @@ Follow the /test workflow from .agent/workflows/test.md.
|
|
|
4
4
|
|
|
5
5
|
Execution contract:
|
|
6
6
|
1. Treat route selection as already resolved by this command; do not begin with skill discovery.
|
|
7
|
-
2.
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
|
|
8
|
+
Attached skills:
|
|
9
|
+
- Load these exact skill IDs first: `unit-testing`, `integration-testing`, `playwright-interactive`, `observability`, `systematic-debugging`, `code-review`, `typescript-best-practices`, `javascript-best-practices`, `python-best-practices`, `golang-best-practices`, `java-best-practices`.
|
|
10
|
+
- Local skill file hints if installed: `.agent/skills/unit-testing/SKILL.md`, `.agent/skills/integration-testing/SKILL.md`, `.agent/skills/playwright-interactive/SKILL.md`, `.agent/skills/observability/SKILL.md`, `.agent/skills/systematic-debugging/SKILL.md`, `.agent/skills/code-review/SKILL.md`, `.agent/skills/typescript-best-practices/SKILL.md`, `.agent/skills/javascript-best-practices/SKILL.md`.
|
|
11
|
+
- Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
|
|
12
|
+
3. Confirm the request fits the workflow's "When to use" section.
|
|
13
|
+
4. Execute according to "Workflow steps" and apply "Context notes".
|
|
14
|
+
5. Complete "Verification" checks and report concrete evidence.
|
|
15
|
+
6. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
|
|
16
|
+
7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
|
|
10
17
|
|
|
11
18
|
If command arguments are provided, treat them as additional user context.
|
|
12
19
|
'''
|
package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/vercel.toml
CHANGED
|
@@ -4,9 +4,16 @@ Follow the /vercel workflow from .agent/workflows/vercel.md.
|
|
|
4
4
|
|
|
5
5
|
Execution contract:
|
|
6
6
|
1. Treat route selection as already resolved by this command; do not begin with skill discovery.
|
|
7
|
-
2.
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
|
|
8
|
+
Attached skills:
|
|
9
|
+
- Load these exact skill IDs first: `nextjs`, `ci-cd-pipeline`, `performance-testing`, `react`, `frontend-design`, `javascript-best-practices`, `typescript-best-practices`.
|
|
10
|
+
- Local skill file hints if installed: `.agent/skills/nextjs/SKILL.md`, `.agent/skills/ci-cd-pipeline/SKILL.md`, `.agent/skills/performance-testing/SKILL.md`, `.agent/skills/react/SKILL.md`, `.agent/skills/frontend-design/SKILL.md`, `.agent/skills/javascript-best-practices/SKILL.md`, `.agent/skills/typescript-best-practices/SKILL.md`.
|
|
11
|
+
- Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
|
|
12
|
+
3. Confirm the request fits the workflow's "When to use" section.
|
|
13
|
+
4. Execute according to "Workflow steps" and apply "Context notes".
|
|
14
|
+
5. Complete "Verification" checks and report concrete evidence.
|
|
15
|
+
6. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or hand off to `@researcher` first.
|
|
16
|
+
7. For outside evidence: repo first, official docs next, Reddit/community only as labeled secondary evidence.
|
|
10
17
|
|
|
11
18
|
If command arguments are provided, treat them as additional user context.
|
|
12
19
|
'''
|
|
@@ -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
|
|
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,17 @@ 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.
|
|
411
|
-
3.
|
|
412
|
-
4.
|
|
413
|
-
5.
|
|
414
|
-
6.
|
|
415
|
-
7.
|
|
416
|
-
8.
|
|
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. For non-trivial work, read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist.
|
|
422
|
+
12. If those docs declare architecture or design-system rules, follow them unless the current spec or task explicitly changes them.
|
|
423
|
+
13. Use upstream MCP servers such as `postman`, `stitch`, or `playwright` for real cloud/browser actions when available.
|
|
417
424
|
|
|
418
425
|
<!-- cbx:mcp:auto:end -->
|
|
@@ -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
|
+
## Antigravity Research Flow
|
|
78
|
+
|
|
79
|
+
- Keep research repo-first even when Agent Manager is available. Do not fan out web browsing before you understand the local system.
|
|
80
|
+
- Official docs and upstream sources stay primary. Reddit and other community posts can inform practical tradeoffs, but label them as secondary evidence.
|
|
81
|
+
- Use Agent Manager only when the research can be cleanly split into independent tracks, then synthesize one final evidence-backed recommendation.
|
|
82
|
+
|
|
83
|
+
## Antigravity Platform Notes
|
|
84
|
+
|
|
85
|
+
- Use Agent Manager for parallel agent coordination and task delegation.
|
|
86
|
+
- Skill and agent files are stored under `.agent/skills/` and `.agent/agents/` respectively.
|
|
87
|
+
- TOML command files in `.agent/commands/` provide slash-command entry points for workflows.
|
|
88
|
+
- Replace direct `@agent-name` delegation with Agent Manager dispatch calls.
|
|
89
|
+
- Reference files are loaded relative to the skill directory under `.agent/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.
|