@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
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: spec-driven-delivery
|
|
3
|
+
description: Use when turning a non-trivial request into a Git-tracked spec pack, maintaining traceability during execution, and updating specs before code when requirements or architecture change.
|
|
4
|
+
license: MIT
|
|
5
|
+
metadata:
|
|
6
|
+
author: cubis-foundry
|
|
7
|
+
version: "1.0"
|
|
8
|
+
compatibility: Claude Code, Codex, GitHub Copilot
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# Spec-Driven Delivery
|
|
12
|
+
|
|
13
|
+
## Purpose
|
|
14
|
+
|
|
15
|
+
Create and maintain a lightweight source of truth for non-trivial work. This skill turns requirements, decisions, acceptance criteria, and architecture impact into a spec pack under the `docs/specs/<spec-id>/` workspace area, then keeps that pack aligned as implementation evolves.
|
|
16
|
+
|
|
17
|
+
## When to Use
|
|
18
|
+
|
|
19
|
+
- Planning a medium or large feature before implementation
|
|
20
|
+
- Capturing acceptance criteria, traceability, and architecture impact in Git
|
|
21
|
+
- Reusing or refreshing an existing spec pack for a follow-up change
|
|
22
|
+
- Bridging native plan-mode output into durable project documents
|
|
23
|
+
- Keeping implementation, verification, and documentation aligned across sessions
|
|
24
|
+
|
|
25
|
+
## Instructions
|
|
26
|
+
|
|
27
|
+
1. **Classify the task first** because trivial work should not pay spec overhead. Use this skill only when the task is multi-step, cross-session, cross-domain, risky, or likely to change architecture, testing strategy, or team coordination.
|
|
28
|
+
2. **Look for an existing spec pack before creating a new one** because duplicate specs create drift. Reuse the closest matching spec directory when the current request extends an active initiative.
|
|
29
|
+
3. **Create a stable `spec_id` and spec root** because the same identifier should survive planning, execution, review, and follow-up changes.
|
|
30
|
+
4. **Write the minimum viable pack** because the goal is durable coordination, not bureaucracy. Keep the brief, acceptance, tasks, traceability, and handoff documents concise and testable.
|
|
31
|
+
5. **Use `sadd` when turning requirements into assertions** because spec quality depends on extracting testable behavior instead of leaving requirements vague.
|
|
32
|
+
6. **Record architecture impact explicitly** because implementation must stay aligned with the project architecture contract and current-state tech map. Mark whether the change affects architecture style, module boundaries, dependency rules, design system, deployment shape, or testing strategy.
|
|
33
|
+
7. **Update the spec before implementation changes behavior** because traceability breaks when code changes first and docs lag behind.
|
|
34
|
+
8. **Keep the task graph execution-ready** because `/implement-track` and `/orchestrate` should be able to act on the spec without replanning. Every task should have ownership, dependencies, acceptance criteria, and a verification path.
|
|
35
|
+
9. **Route external research through `deep-research`** because repo-first planning still needs disciplined escalation when freshness or public comparison matters.
|
|
36
|
+
10. **Emit a clear next route** because spec work usually hands off into `/create`, `/implement-track`, `/orchestrate`, or `/architecture`.
|
|
37
|
+
11. **Report `doc_impact` and `traceability_status`** because feature work should surface whether the architecture contract or tech map must be refreshed at the end.
|
|
38
|
+
12. **Keep the pack alive during execution** because a stale spec is worse than none. Update acceptance, tasks, and traceability when scope or constraints change.
|
|
39
|
+
|
|
40
|
+
## Output Format
|
|
41
|
+
|
|
42
|
+
Deliver:
|
|
43
|
+
|
|
44
|
+
1. **Spec summary** — `spec_id`, `spec_root`, goal, scope, and why spec mode is warranted
|
|
45
|
+
2. **Acceptance and traceability state** — requirements, open gaps, and `traceability_status`
|
|
46
|
+
3. **Execution-ready plan** — tasks, owners, dependencies, and verification checkpoints
|
|
47
|
+
4. **Architecture and doc impact** — `architecture_impact` plus `doc_impact`
|
|
48
|
+
5. **Recommended next route** — exact workflow, agent, or skill to continue from the spec
|
|
49
|
+
|
|
50
|
+
## References
|
|
51
|
+
|
|
52
|
+
| File | Load when |
|
|
53
|
+
| --- | --- |
|
|
54
|
+
| `../sadd/SKILL.md` | Need requirement mining, GIVEN-WHEN-THEN specs, or traceability patterns. |
|
|
55
|
+
| `../architecture-doc/SKILL.md` | Need ADRs, system boundaries, or architecture-document structure. |
|
|
56
|
+
| `../deep-research/SKILL.md` | Need repo-first research escalation or evidence labeling rules. |
|
|
57
|
+
|
|
58
|
+
## Examples
|
|
59
|
+
|
|
60
|
+
| File | Use when |
|
|
61
|
+
| --- | --- |
|
|
62
|
+
| `../sadd/references/spec-mining.md` | Turning loose requirements into testable spec entries. |
|
|
63
|
+
| `../sadd/references/coverage-mapping.md` | Building a traceability matrix that links specs, tests, and code. |
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "cubis-foundry-route-manifest-v1",
|
|
3
3
|
"generatedAt": "1970-01-01T00:00:00.000Z",
|
|
4
|
-
"contentHash": "
|
|
4
|
+
"contentHash": "84d671504acfd27c",
|
|
5
5
|
"summary": {
|
|
6
|
-
"totalRoutes":
|
|
7
|
-
"workflows":
|
|
6
|
+
"totalRoutes": 42,
|
|
7
|
+
"workflows": 20,
|
|
8
8
|
"agents": 22
|
|
9
9
|
},
|
|
10
10
|
"routes": [
|
|
@@ -498,7 +498,7 @@
|
|
|
498
498
|
],
|
|
499
499
|
"supportingSkills": [
|
|
500
500
|
"database-design",
|
|
501
|
-
"
|
|
501
|
+
"deep-research",
|
|
502
502
|
"mcp-server-builder",
|
|
503
503
|
"tech-doc",
|
|
504
504
|
"prompt-engineering",
|
|
@@ -701,7 +701,7 @@
|
|
|
701
701
|
],
|
|
702
702
|
"supportingSkills": [
|
|
703
703
|
"database-design",
|
|
704
|
-
"
|
|
704
|
+
"deep-research",
|
|
705
705
|
"mcp-server-builder",
|
|
706
706
|
"tech-doc",
|
|
707
707
|
"prompt-engineering",
|
|
@@ -804,7 +804,7 @@
|
|
|
804
804
|
"primaryAgent": "researcher",
|
|
805
805
|
"supportingAgents": [],
|
|
806
806
|
"primarySkills": [
|
|
807
|
-
"
|
|
807
|
+
"deep-research",
|
|
808
808
|
"system-design"
|
|
809
809
|
],
|
|
810
810
|
"supportingSkills": [
|
|
@@ -1206,6 +1206,64 @@
|
|
|
1206
1206
|
}
|
|
1207
1207
|
}
|
|
1208
1208
|
},
|
|
1209
|
+
{
|
|
1210
|
+
"kind": "workflow",
|
|
1211
|
+
"id": "architecture",
|
|
1212
|
+
"command": "/architecture",
|
|
1213
|
+
"displayName": "architecture",
|
|
1214
|
+
"description": "Refresh the project architecture contract and current-state map in ENGINEERING_RULES.md and TECH.md with explicit structure, design-system, testing, and flow guidance.",
|
|
1215
|
+
"triggers": [
|
|
1216
|
+
"architecture",
|
|
1217
|
+
"design system",
|
|
1218
|
+
"adr",
|
|
1219
|
+
"clean architecture",
|
|
1220
|
+
"system map",
|
|
1221
|
+
"app structure",
|
|
1222
|
+
"technical governance",
|
|
1223
|
+
"flow diagram"
|
|
1224
|
+
],
|
|
1225
|
+
"primaryAgent": "project-planner",
|
|
1226
|
+
"supportingAgents": [
|
|
1227
|
+
"documentation-writer",
|
|
1228
|
+
"researcher",
|
|
1229
|
+
"backend-specialist",
|
|
1230
|
+
"frontend-specialist",
|
|
1231
|
+
"database-architect"
|
|
1232
|
+
],
|
|
1233
|
+
"primarySkills": [
|
|
1234
|
+
"architecture-doc",
|
|
1235
|
+
"system-design",
|
|
1236
|
+
"tech-doc",
|
|
1237
|
+
"frontend-design"
|
|
1238
|
+
],
|
|
1239
|
+
"supportingSkills": [
|
|
1240
|
+
"api-design",
|
|
1241
|
+
"database-design",
|
|
1242
|
+
"sadd",
|
|
1243
|
+
"deep-research"
|
|
1244
|
+
],
|
|
1245
|
+
"artifacts": {
|
|
1246
|
+
"codex": {
|
|
1247
|
+
"workflowFile": "architecture.md",
|
|
1248
|
+
"compatibilityAlias": "$workflow-architecture"
|
|
1249
|
+
},
|
|
1250
|
+
"copilot": {
|
|
1251
|
+
"workflowFile": "architecture.md",
|
|
1252
|
+
"promptFile": "workflow-architecture.prompt.md"
|
|
1253
|
+
},
|
|
1254
|
+
"antigravity": {
|
|
1255
|
+
"workflowFile": "architecture.md",
|
|
1256
|
+
"commandFile": "architecture.toml"
|
|
1257
|
+
},
|
|
1258
|
+
"claude": {
|
|
1259
|
+
"workflowFile": "architecture.md"
|
|
1260
|
+
},
|
|
1261
|
+
"gemini": {
|
|
1262
|
+
"workflowFile": "architecture.md",
|
|
1263
|
+
"commandFile": "architecture.toml"
|
|
1264
|
+
}
|
|
1265
|
+
}
|
|
1266
|
+
},
|
|
1209
1267
|
{
|
|
1210
1268
|
"kind": "workflow",
|
|
1211
1269
|
"id": "backend",
|
|
@@ -1694,7 +1752,7 @@
|
|
|
1694
1752
|
"frontend-specialist"
|
|
1695
1753
|
],
|
|
1696
1754
|
"primarySkills": [
|
|
1697
|
-
"
|
|
1755
|
+
"deep-research",
|
|
1698
1756
|
"system-design"
|
|
1699
1757
|
],
|
|
1700
1758
|
"supportingSkills": [
|
|
@@ -1756,7 +1814,7 @@
|
|
|
1756
1814
|
],
|
|
1757
1815
|
"supportingSkills": [
|
|
1758
1816
|
"database-design",
|
|
1759
|
-
"
|
|
1817
|
+
"deep-research",
|
|
1760
1818
|
"mcp-server-builder",
|
|
1761
1819
|
"tech-doc",
|
|
1762
1820
|
"prompt-engineering",
|
|
@@ -1792,7 +1850,6 @@
|
|
|
1792
1850
|
"description": "Build a decision-complete implementation plan with interfaces, failure modes, and acceptance criteria.",
|
|
1793
1851
|
"triggers": [
|
|
1794
1852
|
"plan",
|
|
1795
|
-
"spec",
|
|
1796
1853
|
"design",
|
|
1797
1854
|
"roadmap",
|
|
1798
1855
|
"acceptance",
|
|
@@ -1815,7 +1872,7 @@
|
|
|
1815
1872
|
],
|
|
1816
1873
|
"supportingSkills": [
|
|
1817
1874
|
"database-design",
|
|
1818
|
-
"
|
|
1875
|
+
"deep-research",
|
|
1819
1876
|
"mcp-server-builder",
|
|
1820
1877
|
"tech-doc",
|
|
1821
1878
|
"prompt-engineering",
|
|
@@ -2061,6 +2118,62 @@
|
|
|
2061
2118
|
}
|
|
2062
2119
|
}
|
|
2063
2120
|
},
|
|
2121
|
+
{
|
|
2122
|
+
"kind": "workflow",
|
|
2123
|
+
"id": "spec",
|
|
2124
|
+
"command": "/spec",
|
|
2125
|
+
"displayName": "spec",
|
|
2126
|
+
"description": "Create or refresh a Git-tracked spec pack for non-trivial work, including acceptance criteria, traceability, architecture impact, and next-route handoff.",
|
|
2127
|
+
"triggers": [
|
|
2128
|
+
"spec",
|
|
2129
|
+
"sdd",
|
|
2130
|
+
"source of truth",
|
|
2131
|
+
"traceability",
|
|
2132
|
+
"acceptance criteria",
|
|
2133
|
+
"openspec",
|
|
2134
|
+
"requirements",
|
|
2135
|
+
"architecture impact"
|
|
2136
|
+
],
|
|
2137
|
+
"primaryAgent": "project-planner",
|
|
2138
|
+
"supportingAgents": [
|
|
2139
|
+
"researcher",
|
|
2140
|
+
"orchestrator",
|
|
2141
|
+
"documentation-writer"
|
|
2142
|
+
],
|
|
2143
|
+
"primarySkills": [
|
|
2144
|
+
"spec-driven-delivery",
|
|
2145
|
+
"sadd"
|
|
2146
|
+
],
|
|
2147
|
+
"supportingSkills": [
|
|
2148
|
+
"system-design",
|
|
2149
|
+
"architecture-doc",
|
|
2150
|
+
"deep-research",
|
|
2151
|
+
"api-design",
|
|
2152
|
+
"database-design",
|
|
2153
|
+
"tech-doc"
|
|
2154
|
+
],
|
|
2155
|
+
"artifacts": {
|
|
2156
|
+
"codex": {
|
|
2157
|
+
"workflowFile": "spec.md",
|
|
2158
|
+
"compatibilityAlias": "$workflow-spec"
|
|
2159
|
+
},
|
|
2160
|
+
"copilot": {
|
|
2161
|
+
"workflowFile": "spec.md",
|
|
2162
|
+
"promptFile": "workflow-spec.prompt.md"
|
|
2163
|
+
},
|
|
2164
|
+
"antigravity": {
|
|
2165
|
+
"workflowFile": "spec.md",
|
|
2166
|
+
"commandFile": "spec.toml"
|
|
2167
|
+
},
|
|
2168
|
+
"claude": {
|
|
2169
|
+
"workflowFile": "spec.md"
|
|
2170
|
+
},
|
|
2171
|
+
"gemini": {
|
|
2172
|
+
"workflowFile": "spec.md",
|
|
2173
|
+
"commandFile": "spec.toml"
|
|
2174
|
+
}
|
|
2175
|
+
}
|
|
2176
|
+
},
|
|
2064
2177
|
{
|
|
2065
2178
|
"kind": "workflow",
|
|
2066
2179
|
"id": "test",
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "agent-environment-setup",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "Workflow-first AI agent environment setup for Antigravity, Codex, Copilot, Claude Code, and Gemini CLI.",
|
|
5
5
|
"platforms": {
|
|
6
6
|
"antigravity": {
|
|
7
7
|
"workflows": [
|
|
8
8
|
"accessibility.md",
|
|
9
|
+
"architecture.md",
|
|
9
10
|
"backend.md",
|
|
10
11
|
"create.md",
|
|
11
12
|
"database.md",
|
|
@@ -21,6 +22,7 @@
|
|
|
21
22
|
"release.md",
|
|
22
23
|
"review.md",
|
|
23
24
|
"security.md",
|
|
25
|
+
"spec.md",
|
|
24
26
|
"test.md",
|
|
25
27
|
"vercel.md"
|
|
26
28
|
],
|
|
@@ -55,6 +57,7 @@
|
|
|
55
57
|
"code-review",
|
|
56
58
|
"csharp-best-practices",
|
|
57
59
|
"database-design",
|
|
60
|
+
"deep-research",
|
|
58
61
|
"django-drf",
|
|
59
62
|
"docker-compose-dev",
|
|
60
63
|
"drizzle-orm",
|
|
@@ -103,6 +106,7 @@
|
|
|
103
106
|
"sanitize-pii",
|
|
104
107
|
"secret-management",
|
|
105
108
|
"skill-creator",
|
|
109
|
+
"spec-driven-delivery",
|
|
106
110
|
"spring-boot",
|
|
107
111
|
"sqlalchemy",
|
|
108
112
|
"stitch",
|
|
@@ -128,6 +132,7 @@
|
|
|
128
132
|
],
|
|
129
133
|
"commands": [
|
|
130
134
|
"accessibility.toml",
|
|
135
|
+
"architecture.toml",
|
|
131
136
|
"backend.toml",
|
|
132
137
|
"create.toml",
|
|
133
138
|
"database.toml",
|
|
@@ -143,6 +148,7 @@
|
|
|
143
148
|
"release.toml",
|
|
144
149
|
"review.toml",
|
|
145
150
|
"security.toml",
|
|
151
|
+
"spec.toml",
|
|
146
152
|
"test.toml",
|
|
147
153
|
"vercel.toml"
|
|
148
154
|
]
|
|
@@ -150,6 +156,7 @@
|
|
|
150
156
|
"codex": {
|
|
151
157
|
"workflows": [
|
|
152
158
|
"accessibility.md",
|
|
159
|
+
"architecture.md",
|
|
153
160
|
"backend.md",
|
|
154
161
|
"create.md",
|
|
155
162
|
"database.md",
|
|
@@ -165,6 +172,7 @@
|
|
|
165
172
|
"release.md",
|
|
166
173
|
"review.md",
|
|
167
174
|
"security.md",
|
|
175
|
+
"spec.md",
|
|
168
176
|
"test.md",
|
|
169
177
|
"vercel.md"
|
|
170
178
|
],
|
|
@@ -199,6 +207,7 @@
|
|
|
199
207
|
"code-review",
|
|
200
208
|
"csharp-best-practices",
|
|
201
209
|
"database-design",
|
|
210
|
+
"deep-research",
|
|
202
211
|
"django-drf",
|
|
203
212
|
"docker-compose-dev",
|
|
204
213
|
"drizzle-orm",
|
|
@@ -247,6 +256,7 @@
|
|
|
247
256
|
"sanitize-pii",
|
|
248
257
|
"secret-management",
|
|
249
258
|
"skill-creator",
|
|
259
|
+
"spec-driven-delivery",
|
|
250
260
|
"spring-boot",
|
|
251
261
|
"sqlalchemy",
|
|
252
262
|
"stitch",
|
|
@@ -274,6 +284,7 @@
|
|
|
274
284
|
"copilot": {
|
|
275
285
|
"workflows": [
|
|
276
286
|
"accessibility.md",
|
|
287
|
+
"architecture.md",
|
|
277
288
|
"backend.md",
|
|
278
289
|
"create.md",
|
|
279
290
|
"database.md",
|
|
@@ -289,6 +300,7 @@
|
|
|
289
300
|
"release.md",
|
|
290
301
|
"review.md",
|
|
291
302
|
"security.md",
|
|
303
|
+
"spec.md",
|
|
292
304
|
"test.md",
|
|
293
305
|
"vercel.md"
|
|
294
306
|
],
|
|
@@ -323,6 +335,7 @@
|
|
|
323
335
|
"code-review",
|
|
324
336
|
"csharp-best-practices",
|
|
325
337
|
"database-design",
|
|
338
|
+
"deep-research",
|
|
326
339
|
"django-drf",
|
|
327
340
|
"docker-compose-dev",
|
|
328
341
|
"drizzle-orm",
|
|
@@ -371,6 +384,7 @@
|
|
|
371
384
|
"sanitize-pii",
|
|
372
385
|
"secret-management",
|
|
373
386
|
"skill-creator",
|
|
387
|
+
"spec-driven-delivery",
|
|
374
388
|
"spring-boot",
|
|
375
389
|
"sqlalchemy",
|
|
376
390
|
"stitch",
|
|
@@ -396,6 +410,7 @@
|
|
|
396
410
|
],
|
|
397
411
|
"prompts": [
|
|
398
412
|
"workflow-accessibility.prompt.md",
|
|
413
|
+
"workflow-architecture.prompt.md",
|
|
399
414
|
"workflow-backend.prompt.md",
|
|
400
415
|
"workflow-create.prompt.md",
|
|
401
416
|
"workflow-database.prompt.md",
|
|
@@ -411,6 +426,7 @@
|
|
|
411
426
|
"workflow-release.prompt.md",
|
|
412
427
|
"workflow-review.prompt.md",
|
|
413
428
|
"workflow-security.prompt.md",
|
|
429
|
+
"workflow-spec.prompt.md",
|
|
414
430
|
"workflow-test.prompt.md",
|
|
415
431
|
"workflow-vercel.prompt.md"
|
|
416
432
|
]
|
|
@@ -418,6 +434,7 @@
|
|
|
418
434
|
"claude": {
|
|
419
435
|
"workflows": [
|
|
420
436
|
"accessibility.md",
|
|
437
|
+
"architecture.md",
|
|
421
438
|
"backend.md",
|
|
422
439
|
"create.md",
|
|
423
440
|
"database.md",
|
|
@@ -433,6 +450,7 @@
|
|
|
433
450
|
"release.md",
|
|
434
451
|
"review.md",
|
|
435
452
|
"security.md",
|
|
453
|
+
"spec.md",
|
|
436
454
|
"test.md",
|
|
437
455
|
"vercel.md"
|
|
438
456
|
],
|
|
@@ -467,6 +485,7 @@
|
|
|
467
485
|
"code-review",
|
|
468
486
|
"csharp-best-practices",
|
|
469
487
|
"database-design",
|
|
488
|
+
"deep-research",
|
|
470
489
|
"django-drf",
|
|
471
490
|
"docker-compose-dev",
|
|
472
491
|
"drizzle-orm",
|
|
@@ -515,6 +534,7 @@
|
|
|
515
534
|
"sanitize-pii",
|
|
516
535
|
"secret-management",
|
|
517
536
|
"skill-creator",
|
|
537
|
+
"spec-driven-delivery",
|
|
518
538
|
"spring-boot",
|
|
519
539
|
"sqlalchemy",
|
|
520
540
|
"stitch",
|
|
@@ -536,12 +556,34 @@
|
|
|
536
556
|
"type": "conductor-reference",
|
|
537
557
|
"optional": true,
|
|
538
558
|
"description": "If Conductor artifacts exist, workflows can reference them as supporting context."
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
"type": "template",
|
|
562
|
+
"event": "UserPromptSubmit",
|
|
563
|
+
"file": "README.md",
|
|
564
|
+
"optional": true,
|
|
565
|
+
"description": "Usage guide for the Claude route/research hook templates."
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"type": "template",
|
|
569
|
+
"event": "UserPromptSubmit",
|
|
570
|
+
"file": "settings.snippet.json",
|
|
571
|
+
"optional": true,
|
|
572
|
+
"description": "Settings snippet that wires the route/research reminder hook into Claude Code."
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
"type": "template",
|
|
576
|
+
"event": "UserPromptSubmit",
|
|
577
|
+
"file": "route-research-guard.mjs",
|
|
578
|
+
"optional": true,
|
|
579
|
+
"description": "Hook script template that reinforces explicit-route honoring and research escalation."
|
|
539
580
|
}
|
|
540
581
|
]
|
|
541
582
|
},
|
|
542
583
|
"gemini": {
|
|
543
584
|
"workflows": [
|
|
544
585
|
"accessibility.md",
|
|
586
|
+
"architecture.md",
|
|
545
587
|
"backend.md",
|
|
546
588
|
"create.md",
|
|
547
589
|
"database.md",
|
|
@@ -557,6 +599,7 @@
|
|
|
557
599
|
"release.md",
|
|
558
600
|
"review.md",
|
|
559
601
|
"security.md",
|
|
602
|
+
"spec.md",
|
|
560
603
|
"test.md",
|
|
561
604
|
"vercel.md"
|
|
562
605
|
],
|
|
@@ -568,6 +611,7 @@
|
|
|
568
611
|
"code-review",
|
|
569
612
|
"csharp-best-practices",
|
|
570
613
|
"database-design",
|
|
614
|
+
"deep-research",
|
|
571
615
|
"django-drf",
|
|
572
616
|
"docker-compose-dev",
|
|
573
617
|
"drizzle-orm",
|
|
@@ -616,6 +660,7 @@
|
|
|
616
660
|
"sanitize-pii",
|
|
617
661
|
"secret-management",
|
|
618
662
|
"skill-creator",
|
|
663
|
+
"spec-driven-delivery",
|
|
619
664
|
"spring-boot",
|
|
620
665
|
"sqlalchemy",
|
|
621
666
|
"stitch",
|
|
@@ -641,6 +686,7 @@
|
|
|
641
686
|
],
|
|
642
687
|
"commands": [
|
|
643
688
|
"accessibility.toml",
|
|
689
|
+
"architecture.toml",
|
|
644
690
|
"backend.toml",
|
|
645
691
|
"create.toml",
|
|
646
692
|
"database.toml",
|
|
@@ -656,6 +702,7 @@
|
|
|
656
702
|
"release.toml",
|
|
657
703
|
"review.toml",
|
|
658
704
|
"security.toml",
|
|
705
|
+
"spec.toml",
|
|
659
706
|
"test.toml",
|
|
660
707
|
"vercel.toml"
|
|
661
708
|
]
|
package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/orchestrator.md
CHANGED
|
@@ -5,7 +5,7 @@ tools: Read, Grep, Glob, Bash, Write, Edit
|
|
|
5
5
|
model: inherit
|
|
6
6
|
maxTurns: 30
|
|
7
7
|
memory: project
|
|
8
|
-
skills: system-design, api-design, database-design,
|
|
8
|
+
skills: system-design, api-design, database-design, deep-research, mcp-server-builder, tech-doc, prompt-engineering, skill-creator, typescript-best-practices, javascript-best-practices, python-best-practices
|
|
9
9
|
handoffs:
|
|
10
10
|
- agent: "validator"
|
|
11
11
|
title: "Validate Results"
|
|
@@ -31,8 +31,8 @@ Your only permitted actions:
|
|
|
31
31
|
|
|
32
32
|
## Skill Loading Contract
|
|
33
33
|
|
|
34
|
-
- Do not call `skill_search` for `system-design`, `api-design`, `database-design`, `
|
|
35
|
-
- Use `system-design` when the coordination problem is really a design tradeoff problem, `api-design` when integration contracts are the coordination bottleneck, `database-design` when the shared dependency is a data-model or migration concern, `
|
|
34
|
+
- Do not call `skill_search` for `system-design`, `api-design`, `database-design`, `deep-research`, `mcp-server-builder`, `tech-doc`, `prompt-engineering`, or `skill-creator` when the task is clearly multi-stream coordination, planning, architecture design, contract design, research, or skill package work.
|
|
35
|
+
- Use `system-design` when the coordination problem is really a design tradeoff problem, `api-design` when integration contracts are the coordination bottleneck, `database-design` when the shared dependency is a data-model or migration concern, `deep-research` when the coordination risk is stale or conflicting external information, `mcp-server-builder` for MCP-specific streams, `tech-doc` for OpenAI-doc verification streams, `prompt-engineering` for instruction-quality streams, and `skill-creator` when the coordinated changes are in skills, mirrors, routing, or packaging.
|
|
36
36
|
- Prefer platform-native delegation features when available, but keep the orchestration contract stable even when execution stays in a single track.
|
|
37
37
|
- Use `skill_validate` before `skill_get`, and use `skill_get_reference` only for the specific sidecar file needed by the current coordination step.
|
|
38
38
|
|
|
@@ -45,7 +45,7 @@ Load on demand. Do not preload all references.
|
|
|
45
45
|
| `system-design` | Coordination depends on resolving system design or interface tradeoffs first. |
|
|
46
46
|
| `api-design` | The critical shared dependency is an API contract or integration boundary. |
|
|
47
47
|
| `database-design` | The coordination risk centers on schema, migration, data ownership, or engine choice. |
|
|
48
|
-
| `
|
|
48
|
+
| `deep-research` | External sources, latest information, or public-repo comparisons are blocking confident execution. |
|
|
49
49
|
| `mcp-server-builder` | One stream is MCP server design, tool shape, or transport selection. |
|
|
50
50
|
| `tech-doc` | One stream needs current OpenAI docs or version-specific behavior verification. |
|
|
51
51
|
| `prompt-engineering` | One stream is repairing prompts, agent rules, or instruction quality. |
|
|
@@ -158,7 +158,8 @@ ANTI-LAZINESS:
|
|
|
158
158
|
5. **Iterate, don't accept mediocrity** — if output is incomplete or wrong, re-delegate with feedback.
|
|
159
159
|
6. **Track progress visibly** — maintain a task list showing status of each work item.
|
|
160
160
|
7. **Fail fast on blockers** — if a dependency is missing or a task is stuck after 3 iterations, escalate.
|
|
161
|
-
8. **
|
|
161
|
+
8. **Route research explicitly** — when freshness or public comparison matters, delegate to `@researcher` or load `deep-research` before implementation.
|
|
162
|
+
9. **Synthesize at the end** — combine outputs with concrete actions, risks, and verification evidence.
|
|
162
163
|
|
|
163
164
|
## Anti-Patterns to Prevent
|
|
164
165
|
|
package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/project-planner.md
CHANGED
|
@@ -5,7 +5,7 @@ tools: Read, Grep, Glob, Bash, Edit, Write
|
|
|
5
5
|
model: inherit
|
|
6
6
|
maxTurns: 30
|
|
7
7
|
memory: project
|
|
8
|
-
skills: system-design, api-design, database-design,
|
|
8
|
+
skills: system-design, api-design, database-design, deep-research, mcp-server-builder, tech-doc, prompt-engineering, skill-creator, typescript-best-practices, javascript-best-practices, python-best-practices
|
|
9
9
|
handoffs:
|
|
10
10
|
- agent: "orchestrator"
|
|
11
11
|
title: "Start Implementation"
|
|
@@ -24,7 +24,7 @@ Decompose complex requests into implementable plans with clear ownership, depend
|
|
|
24
24
|
- Load `system-design` for system design tradeoffs in the plan.
|
|
25
25
|
- Load `api-design` when the plan involves API contract decisions.
|
|
26
26
|
- Load `database-design` when the plan involves data modeling or migration.
|
|
27
|
-
- Load `
|
|
27
|
+
- Load `deep-research` when planning requires fresh external information, public comparison, or evidence beyond the repo.
|
|
28
28
|
- Use `skill_validate` before `skill_get`, and use `skill_get_reference` only for the specific sidecar file needed.
|
|
29
29
|
|
|
30
30
|
## Skill References
|
|
@@ -34,7 +34,7 @@ Decompose complex requests into implementable plans with clear ownership, depend
|
|
|
34
34
|
| `system-design` | Plan involves system design tradeoffs or component boundaries. |
|
|
35
35
|
| `api-design` | Plan involves API contract decisions or integration points. |
|
|
36
36
|
| `database-design` | Plan involves data modeling, schema design, or migration strategy. |
|
|
37
|
-
| `
|
|
37
|
+
| `deep-research` | Planning requires external research or approach comparison. |
|
|
38
38
|
| `mcp-server-builder` | Plan involves MCP server or tool implementation. |
|
|
39
39
|
| `skill-creator` | Plan involves skill package creation or modification. |
|
|
40
40
|
|
|
@@ -45,6 +45,7 @@ Decompose complex requests into implementable plans with clear ownership, depend
|
|
|
45
45
|
- Every task needs an owner (agent), acceptance criteria, and verification approach.
|
|
46
46
|
- Plan for rollback — every change should be reversible.
|
|
47
47
|
- Front-load risk — tackle the hardest technical uncertainty first.
|
|
48
|
+
- When outside evidence is needed, send research through `deep-research` first instead of mixing web browsing into every implementation stream.
|
|
48
49
|
|
|
49
50
|
## Planning Methodology
|
|
50
51
|
|
package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/researcher.md
CHANGED
|
@@ -18,7 +18,7 @@ tools: Read, Grep, Glob, Bash
|
|
|
18
18
|
model: inherit
|
|
19
19
|
maxTurns: 30
|
|
20
20
|
memory: project
|
|
21
|
-
skills:
|
|
21
|
+
skills: deep-research, system-design, database-design, tech-doc, prompt-engineering
|
|
22
22
|
handoffs:
|
|
23
23
|
- agent: "project-planner"
|
|
24
24
|
title: "Plan Implementation"
|
|
@@ -30,8 +30,8 @@ Investigate thoroughly, synthesize findings, and deliver structured knowledge be
|
|
|
30
30
|
|
|
31
31
|
## Skill Loading Contract
|
|
32
32
|
|
|
33
|
-
- Do not call `skill_search` for `
|
|
34
|
-
- Load `
|
|
33
|
+
- Do not call `skill_search` for `deep-research`, `system-design`, `database-design`, `tech-doc`, or `prompt-engineering` when the task is clearly research work.
|
|
34
|
+
- Load `deep-research` first for all research tasks — it defines the source ladder, evidence labeling, and research output contract.
|
|
35
35
|
- Add `system-design` when research involves system design patterns or tradeoffs.
|
|
36
36
|
- Add `database-design` when research involves data storage options or migration approaches.
|
|
37
37
|
- Add `tech-doc` when research involves OpenAI API or model behavior verification.
|
|
@@ -42,7 +42,7 @@ Investigate thoroughly, synthesize findings, and deliver structured knowledge be
|
|
|
42
42
|
|
|
43
43
|
| File | Load when |
|
|
44
44
|
| ----------------------- | --------------------------------------------------------------------- |
|
|
45
|
-
| `
|
|
45
|
+
| `deep-research` | All research tasks — defines the core research methodology. |
|
|
46
46
|
| `system-design` | Research involves system design patterns or architectural tradeoffs. |
|
|
47
47
|
| `database-design` | Research involves data storage, database comparison, or migration. |
|
|
48
48
|
| `tech-doc` | Research involves OpenAI API, model behavior, or version differences. |
|
|
@@ -51,6 +51,9 @@ Investigate thoroughly, synthesize findings, and deliver structured knowledge be
|
|
|
51
51
|
## Operating Stance
|
|
52
52
|
|
|
53
53
|
- Breadth first, then depth — survey the landscape before drilling into specifics.
|
|
54
|
+
- Repo first, then web — inspect local code, configs, and docs before using external sources.
|
|
55
|
+
- Official docs first — use vendor or maintainer documentation as primary evidence.
|
|
56
|
+
- Community evidence is secondary — Reddit, blog posts, and forum threads can inform implementation, but label them as lower-trust support.
|
|
54
57
|
- Cite sources — every finding should be traceable to evidence.
|
|
55
58
|
- Distinguish fact from inference — clearly label assumptions.
|
|
56
59
|
- Produce actionable findings — research without recommendations is incomplete.
|
|
@@ -72,5 +75,6 @@ Investigate thoroughly, synthesize findings, and deliver structured knowledge be
|
|
|
72
75
|
- Clear distinction between verified facts and educated guesses.
|
|
73
76
|
- Actionable recommendations with tradeoff analysis.
|
|
74
77
|
- Remaining knowledge gaps identified.
|
|
78
|
+
- Output order: verified facts, secondary/community evidence, gaps, recommended next route.
|
|
75
79
|
|
|
76
80
|
> **Antigravity note:** Use Agent Manager for parallel agent coordination. Agent files are stored under `.agent/agents/`.
|
|
@@ -4,9 +4,16 @@ Follow the /accessibility workflow from .agent/workflows/accessibility.md.
|
|
|
4
4
|
|
|
5
5
|
Execution contract:
|
|
6
6
|
1. Treat route selection as already resolved by this command; do not begin with skill discovery.
|
|
7
|
-
2.
|
|
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`, `frontend-design`, `performance-testing`, `react`, `nextjs`, `playwright-interactive`, `typescript-best-practices`, `javascript-best-practices`.
|
|
10
|
+
- Local skill file hints if installed: `.agent/skills/code-review/SKILL.md`, `.agent/skills/frontend-design/SKILL.md`, `.agent/skills/performance-testing/SKILL.md`, `.agent/skills/react/SKILL.md`, `.agent/skills/nextjs/SKILL.md`, `.agent/skills/playwright-interactive/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/architecture.toml
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
description = "Refresh the project architecture contract and current-state map in ENGINEERING_RULES.md and TECH.md with explicit structure, design-system, testing, and flow guidance."
|
|
2
|
+
prompt = '''
|
|
3
|
+
Follow the /architecture workflow from .agent/workflows/architecture.md.
|
|
4
|
+
|
|
5
|
+
Execution contract:
|
|
6
|
+
1. Treat route selection as already resolved by this command; do not begin with skill discovery.
|
|
7
|
+
2. Read `ENGINEERING_RULES.md` first and `TECH.md` next when they exist before non-trivial execution.
|
|
8
|
+
Attached skills:
|
|
9
|
+
- Load these exact skill IDs first: `architecture-doc`, `system-design`, `tech-doc`, `frontend-design`, `api-design`, `database-design`, `sadd`, `deep-research`.
|
|
10
|
+
- Local skill file hints if installed: `.agent/skills/architecture-doc/SKILL.md`, `.agent/skills/system-design/SKILL.md`, `.agent/skills/tech-doc/SKILL.md`, `.agent/skills/frontend-design/SKILL.md`, `.agent/skills/api-design/SKILL.md`, `.agent/skills/database-design/SKILL.md`, `.agent/skills/sadd/SKILL.md`, `.agent/skills/deep-research/SKILL.md`.
|
|
11
|
+
- Treat the skill bundle as already resolved for this workflow. Do not start with route discovery.
|
|
12
|
+
3. Confirm the request fits the workflow's "When to use" section.
|
|
13
|
+
4. Execute according to "Workflow steps" and apply "Context notes".
|
|
14
|
+
5. Complete "Verification" checks and report concrete evidence.
|
|
15
|
+
6. If freshness, public comparison, or explicit research needs appear, pause implementation and load `deep-research` or 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
|
+
'''
|