@cubis/foundry 0.3.75 → 0.3.77
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +98 -76
- package/dist/cli/commands/register.js +1 -1
- package/dist/cli/commands/register.js.map +1 -1
- package/dist/cli/core.js +405 -216
- package/dist/cli/core.js.map +1 -1
- package/dist/cli/init/execute.js +5 -7
- package/dist/cli/init/execute.js.map +1 -1
- package/dist/cli/workflows/commands.js +2 -2
- package/dist/cli/workflows/commands.js.map +1 -1
- package/mcp/src/tools/skillTools.test.ts +34 -1
- package/package.json +4 -3
- package/src/cli/commands/register.ts +1 -1
- package/src/cli/core.ts +495 -267
- package/src/cli/init/execute.ts +5 -9
- package/src/cli/workflows/commands.ts +2 -2
- package/workflows/skills/_schema/skill-platform-attributes.json +14 -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 +62 -4
- package/workflows/skills/skills_index.json +58 -0
- package/workflows/skills/stitch/SKILL.md +79 -0
- package/workflows/skills/stitch/evals/assertions.md +45 -0
- package/workflows/skills/stitch/evals/evals.json +68 -0
- package/workflows/skills/stitch/examples/01-new-screen.md +13 -0
- package/workflows/skills/stitch/examples/02-update-existing-screen.md +13 -0
- package/workflows/skills/stitch/examples/03-mobile-handoff.md +13 -0
- package/workflows/skills/stitch/examples/04-prompt-enhancement.md +21 -0
- package/workflows/skills/stitch/examples/05-design-sync-loop.md +16 -0
- package/workflows/skills/stitch/references/implementation-patterns.md +20 -0
- package/workflows/skills/stitch/references/platform-setup.md +46 -0
- package/workflows/skills/stitch/references/update-diff-workflow.md +23 -0
- package/workflows/workflows/agent-environment-setup/generated/route-manifest.json +21 -13
- package/workflows/workflows/agent-environment-setup/manifest.json +32 -1
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/frontend-specialist.md +10 -2
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/mobile-developer.md +6 -2
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/orchestrator.md +6 -5
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/project-planner.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/researcher.md +8 -4
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/accessibility.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/backend.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/create.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/database.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/debug.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/devops.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/implement-track.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/migrate.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/mobile.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/onboard.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/orchestrate.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/plan.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/refactor.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/release.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/review.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/security.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/test.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/vercel.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/rules/GEMINI.md +14 -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/stitch/SKILL.md +87 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/stitch/evals/assertions.md +45 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/stitch/evals/evals.json +68 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/stitch/examples/01-new-screen.md +13 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/stitch/examples/02-update-existing-screen.md +13 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/stitch/examples/03-mobile-handoff.md +13 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/stitch/examples/04-prompt-enhancement.md +21 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/stitch/examples/05-design-sync-loop.md +16 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/stitch/references/implementation-patterns.md +20 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/stitch/references/platform-setup.md +46 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/skills/stitch/references/update-diff-workflow.md +23 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/create.md +3 -2
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/mobile.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/onboard.md +3 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/orchestrate.md +2 -2
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/plan.md +4 -4
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/frontend-specialist.md +10 -2
- package/workflows/workflows/agent-environment-setup/platforms/claude/agents/mobile-developer.md +6 -2
- 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 +16 -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 +58 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/stitch/SKILL.md +93 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/stitch/evals/assertions.md +45 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/stitch/evals/evals.json +68 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/stitch/examples/01-new-screen.md +13 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/stitch/examples/02-update-existing-screen.md +13 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/stitch/examples/03-mobile-handoff.md +13 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/stitch/examples/04-prompt-enhancement.md +21 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/stitch/examples/05-design-sync-loop.md +16 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/stitch/references/implementation-patterns.md +20 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/stitch/references/platform-setup.md +46 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/skills/stitch/references/update-diff-workflow.md +23 -0
- package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/create.md +3 -2
- package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/mobile.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/onboard.md +3 -3
- package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/orchestrate.md +2 -2
- package/workflows/workflows/agent-environment-setup/platforms/claude/workflows/plan.md +4 -4
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/frontend-specialist.md +10 -2
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/mobile-developer.md +6 -2
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/orchestrator.md +6 -5
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/project-planner.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/researcher.md +8 -4
- package/workflows/workflows/agent-environment-setup/platforms/codex/rules/AGENTS.md +14 -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/stitch/SKILL.md +87 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/skills/stitch/evals/assertions.md +45 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/skills/stitch/evals/evals.json +68 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/skills/stitch/examples/01-new-screen.md +13 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/skills/stitch/examples/02-update-existing-screen.md +13 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/skills/stitch/examples/03-mobile-handoff.md +13 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/skills/stitch/examples/04-prompt-enhancement.md +21 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/skills/stitch/examples/05-design-sync-loop.md +16 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/skills/stitch/references/implementation-patterns.md +20 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/skills/stitch/references/platform-setup.md +46 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/skills/stitch/references/update-diff-workflow.md +23 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/create.md +3 -2
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/mobile.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/onboard.md +3 -3
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/orchestrate.md +2 -2
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/plan.md +4 -4
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/frontend-specialist.md +6 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/mobile-developer.md +6 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/orchestrator.md +6 -5
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/project-planner.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/researcher.md +8 -4
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-accessibility.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-backend.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-create.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-database.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-debug.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-devops.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-implement-track.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-migrate.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-mobile.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-onboard.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-orchestrate.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-plan.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-refactor.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-release.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-review.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-security.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-test.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-vercel.prompt.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/rules/copilot-instructions.md +14 -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 +58 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/stitch/SKILL.md +92 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/stitch/evals/assertions.md +45 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/stitch/evals/evals.json +68 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/stitch/examples/01-new-screen.md +13 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/stitch/examples/02-update-existing-screen.md +13 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/stitch/examples/03-mobile-handoff.md +13 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/stitch/examples/04-prompt-enhancement.md +21 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/stitch/examples/05-design-sync-loop.md +16 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/stitch/references/implementation-patterns.md +20 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/stitch/references/platform-setup.md +46 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/stitch/references/update-diff-workflow.md +23 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/create.md +3 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/mobile.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/onboard.md +3 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/orchestrate.md +2 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/plan.md +4 -4
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/accessibility.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/backend.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/create.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/database.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/debug.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/devops.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/implement-track.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/migrate.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/mobile.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/onboard.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/orchestrate.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/plan.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/refactor.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/release.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/review.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/security.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/test.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/commands/vercel.toml +2 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/rules/GEMINI.md +14 -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/stitch/SKILL.md +87 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/stitch/evals/assertions.md +45 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/stitch/evals/evals.json +68 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/stitch/examples/01-new-screen.md +13 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/stitch/examples/02-update-existing-screen.md +13 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/stitch/examples/03-mobile-handoff.md +13 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/stitch/examples/04-prompt-enhancement.md +21 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/stitch/examples/05-design-sync-loop.md +16 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/stitch/references/implementation-patterns.md +20 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/stitch/references/platform-setup.md +46 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/skills/stitch/references/update-diff-workflow.md +23 -0
- package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/create.md +3 -2
- package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/mobile.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/onboard.md +3 -3
- package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/orchestrate.md +2 -2
- package/workflows/workflows/agent-environment-setup/platforms/gemini/workflows/plan.md +4 -4
- package/workflows/workflows/agent-environment-setup/shared/agents/frontend-specialist.md +10 -2
- package/workflows/workflows/agent-environment-setup/shared/agents/mobile-developer.md +6 -2
- package/workflows/workflows/agent-environment-setup/shared/agents/orchestrator.md +2 -1
- package/workflows/workflows/agent-environment-setup/shared/agents/project-planner.md +2 -1
- package/workflows/workflows/agent-environment-setup/shared/agents/researcher.md +5 -1
- package/workflows/workflows/agent-environment-setup/shared/rules/STEERING.md +44 -13
- package/workflows/workflows/agent-environment-setup/shared/rules/overrides/claude.md +2 -0
- package/workflows/workflows/agent-environment-setup/shared/rules/overrides/gemini.md +20 -0
- package/workflows/workflows/agent-environment-setup/shared/workflows/create.md +3 -2
- package/workflows/workflows/agent-environment-setup/shared/workflows/mobile.md +4 -3
- package/workflows/workflows/agent-environment-setup/shared/workflows/onboard.md +1 -1
- package/workflows/workflows/agent-environment-setup/shared/workflows/orchestrate.md +1 -1
- package/workflows/workflows/agent-environment-setup/shared/workflows/plan.md +2 -2
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Example: Mobile Handoff
|
|
2
|
+
|
|
3
|
+
Prompt shape:
|
|
4
|
+
|
|
5
|
+
> Use Stitch to implement the "Trip Details" screen in React Native. Match the design intent, but keep it idiomatic to the existing mobile app.
|
|
6
|
+
|
|
7
|
+
Expected workflow:
|
|
8
|
+
|
|
9
|
+
1. Verify Stitch availability and fetch the target artifact.
|
|
10
|
+
2. Map the layout into the app's mobile navigation and component structure.
|
|
11
|
+
3. Reuse tokens, spacing, and shared mobile primitives.
|
|
12
|
+
4. Preserve safe areas, touch targets, text scaling, and loading/error states.
|
|
13
|
+
5. Document any differences between the Stitch source and the mobile implementation.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Example: Prompt Enhancement Before Implementation
|
|
2
|
+
|
|
3
|
+
Prompt shape:
|
|
4
|
+
|
|
5
|
+
> Use Stitch to make the dashboard better and more polished.
|
|
6
|
+
|
|
7
|
+
Improved internal brief before touching code:
|
|
8
|
+
|
|
9
|
+
1. Target surface: existing dashboard landing page.
|
|
10
|
+
2. Framework: preserve the repo's current web stack and component primitives.
|
|
11
|
+
3. Scope: refresh layout structure, spacing, hierarchy, and states from the latest Stitch artifact.
|
|
12
|
+
4. Reuse constraints: keep existing navigation, data plumbing, and validated business logic.
|
|
13
|
+
5. Quality bar: preserve accessibility, responsive behavior, and token usage.
|
|
14
|
+
|
|
15
|
+
Expected workflow:
|
|
16
|
+
|
|
17
|
+
1. Rewrite the vague request into a concrete implementation brief like the one above.
|
|
18
|
+
2. Verify Stitch availability with `stitch_get_status`, `mcp_gateway_status`, and `stitch_list_enabled_tools`.
|
|
19
|
+
3. Fetch the matching Stitch artifact instead of guessing which screen the user meant.
|
|
20
|
+
4. Patch the local dashboard with minimal diffs.
|
|
21
|
+
5. Summarize the exact changes and any unavoidable drift from Stitch.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Example: Iterative Design Sync Loop
|
|
2
|
+
|
|
3
|
+
Prompt shape:
|
|
4
|
+
|
|
5
|
+
> Re-sync the account settings screen from Stitch, patch only the UI diff, and leave the saved form logic intact.
|
|
6
|
+
|
|
7
|
+
Expected workflow:
|
|
8
|
+
|
|
9
|
+
1. Verify the Foundry gateway and Stitch tool availability first.
|
|
10
|
+
2. Identify the existing local settings screen and use it as the current diff baseline.
|
|
11
|
+
3. Fetch the latest Stitch artifact for the matching settings screen.
|
|
12
|
+
4. Compare local UI structure, spacing, copy, states, and assets against the refreshed Stitch artifact.
|
|
13
|
+
5. Apply the smallest patch that restores visual parity while preserving the repo's routing, validation, and submission logic.
|
|
14
|
+
6. Report what changed in this pass and what the next Stitch refresh should check if the screen evolves again.
|
|
15
|
+
|
|
16
|
+
This pattern is intentionally iterative: treat each Stitch refresh as a controlled sync pass, not a full rewrite.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Stitch Implementation Patterns
|
|
2
|
+
|
|
3
|
+
## Web stacks
|
|
4
|
+
|
|
5
|
+
- Translate layout intent first: shell, sections, cards, navigation, and hierarchy.
|
|
6
|
+
- Reuse the repo's token layer, typography scale, spacing system, and component primitives.
|
|
7
|
+
- Prefer existing app-shell conventions, routing boundaries, and data-loading patterns over literal generated structure.
|
|
8
|
+
- Preserve semantic HTML and keyboard/focus behavior.
|
|
9
|
+
|
|
10
|
+
## Mobile stacks
|
|
11
|
+
|
|
12
|
+
- Preserve layout rhythm, states, and information hierarchy rather than copying web-specific markup.
|
|
13
|
+
- Map Stitch components into platform-native primitives such as React Native components, Flutter widgets, or SwiftUI views.
|
|
14
|
+
- Respect platform navigation, safe areas, typography scaling, and gesture behavior.
|
|
15
|
+
|
|
16
|
+
## Design system mapping
|
|
17
|
+
|
|
18
|
+
- Convert raw visual values into the project's design tokens.
|
|
19
|
+
- Reuse shared primitives before introducing new component variants.
|
|
20
|
+
- If a missing primitive blocks fidelity, add the smallest reusable abstraction instead of a screen-local workaround.
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# Stitch Platform Setup
|
|
2
|
+
|
|
3
|
+
## Verification order
|
|
4
|
+
|
|
5
|
+
1. Run `stitch_get_status` to confirm the active profile, URL, env-var alias, and scope.
|
|
6
|
+
2. Run `mcp_gateway_status` to confirm the Cubis Foundry gateway sees Stitch as available.
|
|
7
|
+
3. Run `stitch_list_enabled_tools` to confirm the enabled upstream Stitch tools.
|
|
8
|
+
|
|
9
|
+
If any of those fail, stop treating Stitch as authoritative input.
|
|
10
|
+
|
|
11
|
+
## Credential expectations
|
|
12
|
+
|
|
13
|
+
- Stitch credentials are machine-scoped and should come from `~/.cbx/credentials.env` or an already-exported environment variable.
|
|
14
|
+
- Project files and generated MCP config should never contain raw API keys.
|
|
15
|
+
- The gateway path is the default client-facing path. The local client should connect to `cubis-foundry`, then use the Stitch passthrough tools exposed through that server.
|
|
16
|
+
|
|
17
|
+
## Client-specific verification
|
|
18
|
+
|
|
19
|
+
Use the platform runtime surface that actually owns the `cubis-foundry` registration:
|
|
20
|
+
|
|
21
|
+
- Codex:
|
|
22
|
+
- project: `.vscode/mcp.json`
|
|
23
|
+
- global: `~/.codex/config.toml`
|
|
24
|
+
- Claude Code:
|
|
25
|
+
- project: `.mcp.json`
|
|
26
|
+
- global: `~/.claude/mcp.json`
|
|
27
|
+
- GitHub Copilot:
|
|
28
|
+
- project: `.vscode/mcp.json`
|
|
29
|
+
- global: `~/.copilot/mcp-config.json`
|
|
30
|
+
- Gemini CLI:
|
|
31
|
+
- project: `.gemini/settings.json`
|
|
32
|
+
- global: `~/.gemini/settings.json`
|
|
33
|
+
- Antigravity:
|
|
34
|
+
- project: `.gemini/settings.json`
|
|
35
|
+
- global: `~/.gemini/settings.json`
|
|
36
|
+
|
|
37
|
+
For every platform, the expected secure model is the same:
|
|
38
|
+
|
|
39
|
+
- client config points at `cubis-foundry`
|
|
40
|
+
- `cbx_config.json` stores the Stitch env-var alias only
|
|
41
|
+
- `~/.cbx/credentials.env` or the live shell environment stores the actual key
|
|
42
|
+
|
|
43
|
+
## Secure fallback behavior
|
|
44
|
+
|
|
45
|
+
- If Stitch is configured but unavailable, continue only with a repo-grounded fallback and call out that the implementation is not verified against live Stitch artifacts.
|
|
46
|
+
- If a task explicitly requires live Stitch parity, stop and report the configuration/runtime issue instead of guessing.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Stitch Update and Diff Workflow
|
|
2
|
+
|
|
3
|
+
## Recommended sequence
|
|
4
|
+
|
|
5
|
+
1. Fetch the latest Stitch artifact for the target screen.
|
|
6
|
+
2. Identify the current local implementation files before editing anything.
|
|
7
|
+
3. Compare structure, copy, spacing, tokens, states, assets, and responsive behavior.
|
|
8
|
+
4. Patch only the deltas that come from Stitch.
|
|
9
|
+
5. Re-check accessibility and regression risk after the patch.
|
|
10
|
+
|
|
11
|
+
## Minimal-diff rules
|
|
12
|
+
|
|
13
|
+
- Keep existing data flow, component ownership, and test seams unless Stitch requires a structural change.
|
|
14
|
+
- Avoid replacing an entire screen when a smaller patch will preserve local stability.
|
|
15
|
+
- Preserve local fixes that are unrelated to the new Stitch diff.
|
|
16
|
+
|
|
17
|
+
## Report drift explicitly
|
|
18
|
+
|
|
19
|
+
If you keep a local deviation from Stitch, document:
|
|
20
|
+
|
|
21
|
+
- what differs
|
|
22
|
+
- why the local version stays different
|
|
23
|
+
- whether the difference is architectural, product-driven, or temporary
|
package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/create.md
CHANGED
|
@@ -26,8 +26,9 @@ Use this for net-new implementation after design is stable.
|
|
|
26
26
|
## Skill Routing
|
|
27
27
|
|
|
28
28
|
- Primary skills: `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`, `php-best-practices`, `rust-best-practices`, `rust-best-practices`, `expo-app`, `swift-best-practices`
|
|
29
|
-
- Supporting skills (optional): `api-design`, `api-design`, `javascript-best-practices`, `nestjs`, `fastapi`, `api-design`, `drizzle-orm`, `database-design`, `mcp-server-builder`, `react`, `react`, `nextjs`, `frontend-design`, `frontend-design`, `frontend-design`, `performance-testing`, `skill-creator`, `stripe-integration`, `ci-cd-pipeline`, `frontend-design`
|
|
29
|
+
- Supporting skills (optional): `api-design`, `api-design`, `javascript-best-practices`, `nestjs`, `fastapi`, `api-design`, `drizzle-orm`, `database-design`, `mcp-server-builder`, `stitch`, `react`, `react`, `nextjs`, `frontend-design`, `frontend-design`, `frontend-design`, `performance-testing`, `skill-creator`, `stripe-integration`, `ci-cd-pipeline`, `frontend-design`
|
|
30
30
|
- Pick one primary language skill from repo signals or touched files. Add the narrowest specialist only when the feature is clearly backend or frontend framework-specific.
|
|
31
|
+
- If the request references Stitch screens, artifacts, design-to-code, or UI sync, add `stitch` first and route the implementation through the frontend or mobile specialist based on the destination surface.
|
|
31
32
|
|
|
32
33
|
## Workflow steps
|
|
33
34
|
|
|
@@ -49,7 +50,7 @@ CREATE_WORKFLOW_RESULT:
|
|
|
49
50
|
primary_agent: orchestrator
|
|
50
51
|
supporting_agents: [backend-specialist?, frontend-specialist?, mobile-developer?, test-engineer?]
|
|
51
52
|
primary_skills: [<dominant-language-skill>]
|
|
52
|
-
supporting_skills: [<framework-specific-skills-used>]
|
|
53
|
+
supporting_skills: [stitch?, <framework-specific-skills-used>]
|
|
53
54
|
implemented_scope:
|
|
54
55
|
summary: <string>
|
|
55
56
|
changed_artifacts: [<path-or-artifact>]
|
package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/mobile.md
CHANGED
|
@@ -8,7 +8,7 @@ triggers: ["mobile", "flutter", "ios", "android", "navigation"]
|
|
|
8
8
|
|
|
9
9
|
## When to use
|
|
10
10
|
|
|
11
|
-
Use this for mobile app development, Flutter architecture, native integrations, or platform-specific behavior.
|
|
11
|
+
Use this for mobile app development, Flutter architecture, Stitch-driven mobile screen handoff, native integrations, or platform-specific behavior.
|
|
12
12
|
|
|
13
13
|
## Routing
|
|
14
14
|
|
|
@@ -24,8 +24,9 @@ Use this for mobile app development, Flutter architecture, native integrations,
|
|
|
24
24
|
## Skill Routing
|
|
25
25
|
|
|
26
26
|
- Primary skills: `expo-app`, `react-native`
|
|
27
|
-
- Supporting skills (optional): `frontend-design`, `expo-app`, `expo-app`, `expo-app`, `expo-app`, `expo-app`, `expo-app`, `expo-app`, `expo-app`, `expo-app`, `swift-best-practices`, `kotlin-best-practices`
|
|
27
|
+
- Supporting skills (optional): `stitch`, `frontend-design`, `expo-app`, `expo-app`, `expo-app`, `expo-app`, `expo-app`, `expo-app`, `expo-app`, `expo-app`, `expo-app`, `swift-best-practices`, `kotlin-best-practices`
|
|
28
28
|
- Start with `expo-app` for feature implementation and `react-native` for UX patterns. Add framework-specific Flutter skill when applicable. Add `frontend-design` for multi-language support.
|
|
29
|
+
- When the request starts from Stitch artifacts or a design sync, load `stitch` first and then pair it with `react-native` plus the narrowest mobile implementation skill for the target stack.
|
|
29
30
|
|
|
30
31
|
## Workflow steps
|
|
31
32
|
|
|
@@ -50,7 +51,7 @@ MOBILE_WORKFLOW_RESULT:
|
|
|
50
51
|
primary_agent: mobile-developer
|
|
51
52
|
supporting_agents: [frontend-specialist?, test-engineer?]
|
|
52
53
|
primary_skills: [expo-app, react-native]
|
|
53
|
-
supporting_skills: [frontend-design?, expo-app?, expo-app?, <flutter-specific>?]
|
|
54
|
+
supporting_skills: [stitch?, frontend-design?, expo-app?, expo-app?, <flutter-specific>?]
|
|
54
55
|
implementation:
|
|
55
56
|
platforms: [ios, android]
|
|
56
57
|
architecture_decisions: [<string>]
|
package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/onboard.md
CHANGED
|
@@ -30,9 +30,9 @@ Use this when joining a new project, exploring an unfamiliar codebase, or prepar
|
|
|
30
30
|
|
|
31
31
|
## Skill Routing
|
|
32
32
|
|
|
33
|
-
- Primary skills: `
|
|
33
|
+
- Primary skills: `deep-research`, `system-design`
|
|
34
34
|
- Supporting skills (optional): `system-design`, `database-design`, `typescript-best-practices`, `javascript-best-practices`, `python-best-practices`
|
|
35
|
-
- Start with `
|
|
35
|
+
- Start with `deep-research` for systematic exploration and `system-design` for architecture mapping. Add `system-design` for undocumented systems. Prefer repo evidence first; use external sources only when setup or dependency behavior cannot be confirmed locally.
|
|
36
36
|
|
|
37
37
|
## Workflow steps
|
|
38
38
|
|
|
@@ -55,7 +55,7 @@ Use this when joining a new project, exploring an unfamiliar codebase, or prepar
|
|
|
55
55
|
ONBOARD_WORKFLOW_RESULT:
|
|
56
56
|
primary_agent: researcher
|
|
57
57
|
supporting_agents: [code-archaeologist?, backend-specialist?, frontend-specialist?]
|
|
58
|
-
primary_skills: [
|
|
58
|
+
primary_skills: [deep-research, system-design]
|
|
59
59
|
supporting_skills: [system-design?, database-design?]
|
|
60
60
|
project_overview:
|
|
61
61
|
purpose: <string>
|
package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/orchestrate.md
CHANGED
|
@@ -24,8 +24,8 @@ Use this when a task spans multiple domains (backend + frontend, security + infr
|
|
|
24
24
|
## Skill Routing
|
|
25
25
|
|
|
26
26
|
- Primary skills: `system-design`, `api-design`
|
|
27
|
-
- Supporting skills (optional): `database-design`, `
|
|
28
|
-
- Start with `system-design` for system design coordination and `api-design` for integration contracts. Add
|
|
27
|
+
- Supporting skills (optional): `database-design`, `deep-research`, `mcp-server-builder`, `tech-doc`, `prompt-engineering`, `skill-creator`
|
|
28
|
+
- Start with `system-design` for system design coordination and `api-design` for integration contracts. Add `deep-research` before implementation when the coordination challenge depends on fresh external facts or public comparison.
|
|
29
29
|
|
|
30
30
|
## Workflow steps
|
|
31
31
|
|
|
@@ -36,13 +36,13 @@ Use this when starting a new feature, project, or significant change that needs
|
|
|
36
36
|
## Skill Routing
|
|
37
37
|
|
|
38
38
|
- Primary skills: `system-design`, `api-design`
|
|
39
|
-
- Supporting skills (optional): `database-design`, `
|
|
40
|
-
- Start with `system-design` for system design and `api-design` for API contracts. Add `database-design` when data modeling is central, `
|
|
39
|
+
- Supporting skills (optional): `database-design`, `deep-research`, `mcp-server-builder`, `tech-doc`, `prompt-engineering`, `skill-creator`
|
|
40
|
+
- Start with `system-design` for system design and `api-design` for API contracts. Add `database-design` when data modeling is central, `deep-research` when fresh external knowledge or public comparison is needed.
|
|
41
41
|
|
|
42
42
|
## Workflow steps
|
|
43
43
|
|
|
44
44
|
1. Clarify scope, success criteria, and constraints.
|
|
45
|
-
2. Research existing patterns and dependencies.
|
|
45
|
+
2. Research existing patterns and dependencies, starting in-repo and escalating to `deep-research` only when outside evidence is required.
|
|
46
46
|
3. Decompose into tasks with ownership and dependencies.
|
|
47
47
|
4. Define interfaces, contracts, and failure modes.
|
|
48
48
|
5. Produce acceptance criteria for each milestone.
|
|
@@ -62,7 +62,7 @@ PLAN_WORKFLOW_RESULT:
|
|
|
62
62
|
primary_agent: project-planner
|
|
63
63
|
supporting_agents: [orchestrator?, backend-specialist?, frontend-specialist?, database-architect?]
|
|
64
64
|
primary_skills: [system-design, api-design]
|
|
65
|
-
supporting_skills: [database-design?,
|
|
65
|
+
supporting_skills: [database-design?, deep-research?, mcp-server-builder?]
|
|
66
66
|
plan:
|
|
67
67
|
scope_summary: <string>
|
|
68
68
|
tasks:
|
package/workflows/workflows/agent-environment-setup/platforms/claude/agents/frontend-specialist.md
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: frontend-specialist
|
|
3
|
-
description: Senior frontend specialist for React, Next.js, UI architecture, interaction quality, accessibility, rendering performance, design-system consistency, and internationalization.
|
|
3
|
+
description: Senior frontend specialist for React, Next.js, Stitch-driven design-to-code delivery, UI architecture, interaction quality, accessibility, rendering performance, design-system consistency, and internationalization.
|
|
4
4
|
triggers:
|
|
5
5
|
[
|
|
6
6
|
"component",
|
|
7
7
|
"react",
|
|
8
8
|
"next",
|
|
9
|
+
"stitch",
|
|
10
|
+
"design-to-code",
|
|
11
|
+
"screen-to-code",
|
|
12
|
+
"ui diff",
|
|
9
13
|
"ui",
|
|
10
14
|
"ux",
|
|
11
15
|
"css",
|
|
@@ -18,7 +22,7 @@ triggers:
|
|
|
18
22
|
tools: Read, Grep, Glob, Bash, Edit, Write
|
|
19
23
|
model: inherit
|
|
20
24
|
maxTurns: 25
|
|
21
|
-
skills: react, nextjs, frontend-design, performance-testing, code-review, observability, typescript-best-practices, javascript-best-practices
|
|
25
|
+
skills: stitch, react, nextjs, frontend-design, performance-testing, code-review, observability, typescript-best-practices, javascript-best-practices
|
|
22
26
|
handoffs:
|
|
23
27
|
- agent: "test-engineer"
|
|
24
28
|
title: "Test UI Components"
|
|
@@ -34,6 +38,7 @@ Build and review frontend systems that stay maintainable under real product pres
|
|
|
34
38
|
|
|
35
39
|
- Do not call `skill_search` for any skill in the pre-declared list when the task clearly falls into that domain.
|
|
36
40
|
- Load one primary skill first:
|
|
41
|
+
- `stitch` for Stitch artifacts, design-to-code diffs, screen sync work, and implementation grounded in real Stitch output
|
|
37
42
|
- `react` for component boundaries, state, and runtime behavior
|
|
38
43
|
- `react` for React performance optimization, patterns, and anti-patterns
|
|
39
44
|
- `nextjs` for App Router, server/client boundaries, caching, and route behavior
|
|
@@ -45,6 +50,7 @@ Build and review frontend systems that stay maintainable under real product pres
|
|
|
45
50
|
- `frontend-design` for RTL support, locale switching, pluralization, and date/number formatting
|
|
46
51
|
- `observability` for error boundary design, user-facing error states, and frontend observability
|
|
47
52
|
- Add one supporting skill only when the task genuinely crosses concerns.
|
|
53
|
+
- If the request explicitly references Stitch screens, artifacts, UI diffs, or design sync, load `stitch` first and then add the narrowest implementation skill for the actual stack.
|
|
48
54
|
- Use `skill_validate` before `skill_get`, and use `skill_get_reference` only for the specific sidecar file needed by the current step.
|
|
49
55
|
|
|
50
56
|
## Skill References
|
|
@@ -53,6 +59,7 @@ Load on demand. Do not preload all references.
|
|
|
53
59
|
|
|
54
60
|
| File | Load when |
|
|
55
61
|
| ------------------------ | --------------------------------------------------------------------------------------------- |
|
|
62
|
+
| `stitch` | The task starts from Stitch artifacts, design-to-code requests, screen sync, or UI diffs. |
|
|
56
63
|
| `react` | React runtime behavior, component boundaries, hooks, or client-state design are primary. |
|
|
57
64
|
| `react` | React performance optimization, memoization patterns, or React anti-patterns are the focus. |
|
|
58
65
|
| `nextjs` | Next.js route behavior, server/client boundaries, caching, or deployment posture are primary. |
|
|
@@ -67,6 +74,7 @@ Load on demand. Do not preload all references.
|
|
|
67
74
|
## Operating Stance
|
|
68
75
|
|
|
69
76
|
- Prefer clear state ownership and small client boundaries.
|
|
77
|
+
- When Stitch is the source of truth, fetch and map the real artifact before editing local UI.
|
|
70
78
|
- Treat accessibility and loading or error states as product correctness, not polish.
|
|
71
79
|
- Measure performance before optimizing.
|
|
72
80
|
- Keep one-off product logic out of shared primitives.
|
package/workflows/workflows/agent-environment-setup/platforms/claude/agents/mobile-developer.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: mobile-developer
|
|
3
|
-
description: Expert in Flutter delivery and mobile product design for cross-platform apps. Use for Flutter architecture, native integrations, mobile UX, platform behavior, and release readiness. Triggers on mobile, flutter, ios, android, app store, play store, touch UX.
|
|
3
|
+
description: Expert in Flutter delivery and mobile product design for cross-platform apps. Use for Flutter architecture, Stitch-driven mobile handoff, native integrations, mobile UX, platform behavior, and release readiness. Triggers on mobile, flutter, ios, android, app store, play store, touch UX.
|
|
4
4
|
tools: Read, Grep, Glob, Bash, Edit, Write
|
|
5
5
|
model: inherit
|
|
6
6
|
maxTurns: 25
|
|
7
|
-
skills: react-native, frontend-design, expo-app, swift-best-practices, kotlin-best-practices, react, systematic-debugging, integration-testing, typescript-best-practices, javascript-best-practices
|
|
7
|
+
skills: stitch, react-native, frontend-design, expo-app, swift-best-practices, kotlin-best-practices, react, systematic-debugging, integration-testing, typescript-best-practices, javascript-best-practices
|
|
8
8
|
handoffs:
|
|
9
9
|
- agent: "test-engineer"
|
|
10
10
|
title: "Test Mobile"
|
|
@@ -20,6 +20,7 @@ Build and ship cross-platform mobile apps that feel native and perform reliably.
|
|
|
20
20
|
|
|
21
21
|
- Do not call `skill_search` for any skill in the pre-declared list when the task clearly falls into those domains.
|
|
22
22
|
- Load one primary skill first:
|
|
23
|
+
- `stitch` for Stitch-driven mobile screen handoff, design sync, and artifact-grounded UI updates
|
|
23
24
|
- `react-native` for touch psychology, platform-native patterns, iOS/Android design guidelines
|
|
24
25
|
- `expo-app` for feature implementation in Flutter
|
|
25
26
|
- `expo-app` for state management with Riverpod
|
|
@@ -31,12 +32,14 @@ Build and ship cross-platform mobile apps that feel native and perform reliably.
|
|
|
31
32
|
- `expo-app` for complex state flows
|
|
32
33
|
- `expo-app` for repository pattern and data layer
|
|
33
34
|
- `frontend-design` for internationalization, RTL support, and locale handling
|
|
35
|
+
- If the request starts from Stitch artifacts or a design sync, load `stitch` first and then pair it with the narrowest mobile implementation skill for the target stack.
|
|
34
36
|
- Use `skill_validate` before `skill_get`, and use `skill_get_reference` only for the specific sidecar file needed.
|
|
35
37
|
|
|
36
38
|
## Skill References
|
|
37
39
|
|
|
38
40
|
| File | Load when |
|
|
39
41
|
| ----------------------- | -------------------------------------------------------------------- |
|
|
42
|
+
| `stitch` | The task starts from Stitch artifacts, design sync, or screen-to-code handoff. |
|
|
40
43
|
| `react-native` | Touch UX, platform conventions, iOS/Android design guidelines. |
|
|
41
44
|
| `expo-app` | Implementing features, widgets, or screens in Flutter. |
|
|
42
45
|
| `expo-app` | State management architecture with Riverpod. |
|
|
@@ -52,6 +55,7 @@ Build and ship cross-platform mobile apps that feel native and perform reliably.
|
|
|
52
55
|
## Operating Stance
|
|
53
56
|
|
|
54
57
|
- Respect platform conventions — iOS and Android users expect different behaviors.
|
|
58
|
+
- When work starts from Stitch, translate the artifact into native/mobile patterns instead of copying raw layout output.
|
|
55
59
|
- Treat touch targets and gesture feedback as correctness, not polish.
|
|
56
60
|
- Test on real devices for performance-sensitive features.
|
|
57
61
|
- Design for offline-first when the app may lose connectivity.
|
|
@@ -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/claude/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
|
|
|
@@ -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,3 +75,4 @@ 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.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Claude Route/Research Hook Templates
|
|
2
|
+
|
|
3
|
+
These files are generated by Cubis Foundry as optional Claude Code hook templates.
|
|
4
|
+
|
|
5
|
+
Use them when you want Claude to reinforce two behaviors on `UserPromptSubmit`:
|
|
6
|
+
|
|
7
|
+
- honor explicit `/workflow`, `@agent`, or exact skill selections before rerouting
|
|
8
|
+
- escalate to repo-first, official-first research when freshness or public comparison matters
|
|
9
|
+
|
|
10
|
+
Files:
|
|
11
|
+
|
|
12
|
+
- `settings.snippet.json` — example hook configuration to copy into `.claude/settings.json` or `.claude/settings.local.json`
|
|
13
|
+
- `route-research-guard.mjs` — hook script that reads the submitted prompt and emits a targeted `systemMessage` reminder
|
|
14
|
+
|
|
15
|
+
The template is intentionally non-destructive. It does not block prompts by default; it adds context for Claude before prompt processing.
|
package/workflows/workflows/agent-environment-setup/platforms/claude/hooks/route-research-guard.mjs
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
const buffers = [];
|
|
4
|
+
for await (const chunk of process.stdin) buffers.push(chunk);
|
|
5
|
+
const raw = Buffer.concat(buffers).toString("utf8");
|
|
6
|
+
let prompt = "";
|
|
7
|
+
try {
|
|
8
|
+
const parsed = JSON.parse(raw || "{}");
|
|
9
|
+
prompt = String(parsed.prompt || parsed.userPrompt || parsed.message || "");
|
|
10
|
+
} catch {
|
|
11
|
+
prompt = "";
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const normalized = prompt.toLowerCase();
|
|
15
|
+
const reminders = [];
|
|
16
|
+
|
|
17
|
+
if (/(^|\s)(\/[-a-z0-9]+|@[a-z0-9_-]+)/i.test(prompt)) {
|
|
18
|
+
reminders.push(
|
|
19
|
+
"Explicit route detected. Honor the named workflow or agent directly unless it is invalid."
|
|
20
|
+
);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
if (/(^|[^a-z0-9-])(deep-research|stitch|skill-creator|frontend-design|api-design|database-design)([^a-z0-9-]|$)/i.test(normalized)) {
|
|
24
|
+
reminders.push(
|
|
25
|
+
"Named skill detected. Run skill_validate on the exact skill ID first and skip route_resolve when it validates."
|
|
26
|
+
);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
if (/(research|latest|compare|comparison|verify|official docs|reddit|community)/i.test(normalized)) {
|
|
30
|
+
reminders.push(
|
|
31
|
+
"Research trigger detected. Inspect the repo first, use official docs as primary evidence, and treat Reddit/community sources as labeled secondary evidence."
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
const payload = reminders.length > 0
|
|
36
|
+
? { continue: true, systemMessage: reminders.join(" ") }
|
|
37
|
+
: { continue: true };
|
|
38
|
+
|
|
39
|
+
process.stdout.write(JSON.stringify(payload));
|
|
@@ -27,6 +27,7 @@ If any check fails, restart your reasoning.
|
|
|
27
27
|
| Workflows | `.claude/workflows` |
|
|
28
28
|
| Agents | `.claude/agents` |
|
|
29
29
|
| Skills | `.claude/skills` |
|
|
30
|
+
| Hook templates | `.claude/hooks` |
|
|
30
31
|
| Scoped rules | `.claude/rules/*.md` |
|
|
31
32
|
| Project rules | `CLAUDE.md` |
|
|
32
33
|
| Global rules | `~/.claude/CLAUDE.md` |
|
|
@@ -43,7 +44,7 @@ Execute this tree top-to-bottom. Stop at the **first match**. Never skip levels.
|
|
|
43
44
|
├─ [TRIVIAL] Single-step, obvious, reversible?
|
|
44
45
|
│ → Execute directly. No routing. Stop.
|
|
45
46
|
│
|
|
46
|
-
├─ [EXPLICIT] User named a workflow, command, or
|
|
47
|
+
├─ [EXPLICIT] User named a workflow, command, @agent, or exact skill?
|
|
47
48
|
│ → Honor that route exactly. Stop.
|
|
48
49
|
│
|
|
49
50
|
├─ [SINGLE-DOMAIN] Multi-step but contained in one specialty?
|
|
@@ -63,6 +64,7 @@ Execute this tree top-to-bottom. Stop at the **first match**. Never skip levels.
|
|
|
63
64
|
**Hard rules:**
|
|
64
65
|
|
|
65
66
|
- Never pre-load skills before route resolution.
|
|
67
|
+
- If the user names an exact skill ID, run `skill_validate` on that ID before `route_resolve`.
|
|
66
68
|
- Never delegate to a subagent when direct execution suffices.
|
|
67
69
|
- Never chain more than one `skill_search` per request.
|
|
68
70
|
- Treat this file as **durable project memory** — not a per-task playbook.
|
|
@@ -284,6 +286,7 @@ ORCHESTRATE(task):
|
|
|
284
286
|
- Path-scoped rules: `.claude/rules/*.md` with `paths:` frontmatter for targeted guidance.
|
|
285
287
|
- Global rules (`~/.claude/CLAUDE.md`) apply to all projects — keep them broad.
|
|
286
288
|
- Skills with `context: fork` run as isolated subagents. `$ARGUMENTS` enables dynamic parameterization.
|
|
289
|
+
- Optional hook templates in `.claude/hooks/` can reinforce explicit-route honoring and research escalation at `UserPromptSubmit`.
|
|
287
290
|
|
|
288
291
|
---
|
|
289
292
|
|
|
@@ -344,6 +347,7 @@ Use this matrix to match incoming tasks to the correct skill and primary agent.
|
|
|
344
347
|
| sqlalchemy | Framework | SQLAlchemy ORM, sessions, alembic | @database-architect |
|
|
345
348
|
| drizzle-orm | Framework | Drizzle ORM, schema, migrations | @database-architect |
|
|
346
349
|
| frontend-design | Design | UI/UX, component architecture | @frontend-specialist |
|
|
350
|
+
| stitch | Design | Stitch screens, design-to-code, UI diffing | @frontend-specialist |
|
|
347
351
|
| system-design | Design | Distributed systems, scalability | @backend-specialist |
|
|
348
352
|
| microservices-design | Design | Service decomposition, communication | @backend-specialist |
|
|
349
353
|
| api-design | Design | REST/GraphQL API design, versioning | @backend-specialist |
|
|
@@ -366,6 +370,7 @@ Use this matrix to match incoming tasks to the correct skill and primary agent.
|
|
|
366
370
|
| docker-compose-dev | DevOps | Docker Compose local dev environments | @devops-engineer |
|
|
367
371
|
| kubernetes-deploy | DevOps | K8s manifests, Helm charts, deployment | @devops-engineer |
|
|
368
372
|
| observability | DevOps | Logging, metrics, tracing, alerting | @devops-engineer |
|
|
373
|
+
| deep-research | Research | Latest docs, public comparisons, external verification | @researcher |
|
|
369
374
|
| llm-eval | AI/ML | LLM evaluation, benchmarking, evals | @researcher |
|
|
370
375
|
| rag-patterns | AI/ML | RAG architecture, embeddings, retrieval | @researcher |
|
|
371
376
|
| prompt-engineering | AI/ML | Prompt design, few-shot, chain-of-thought | @researcher |
|
|
@@ -413,12 +418,15 @@ Selection policy:
|
|
|
413
418
|
Keep MCP context lazy and exact. Skills are supporting context, not the route layer.
|
|
414
419
|
|
|
415
420
|
1. Never begin with `skill_search`. Inspect the repo/task locally first.
|
|
416
|
-
2.
|
|
417
|
-
3.
|
|
418
|
-
4.
|
|
419
|
-
5.
|
|
420
|
-
6.
|
|
421
|
-
7.
|
|
422
|
-
8.
|
|
421
|
+
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.
|
|
422
|
+
3. Resolve only free-text workflow/agent intent with `route_resolve` before loading non-explicit skills.
|
|
423
|
+
4. If the route is still unresolved and local grounding leaves the domain unclear, use one narrow `skill_search`.
|
|
424
|
+
5. Always run `skill_validate` on the exact selected ID before `skill_get`.
|
|
425
|
+
6. Call `skill_get` with `includeReferences:false` by default.
|
|
426
|
+
7. Load at most one sidecar markdown file at a time with `skill_get_reference`.
|
|
427
|
+
8. Do not auto-prime every specialist with a skill. Load only what the task clearly needs.
|
|
428
|
+
9. For research: repo/local evidence first, official docs next, Reddit/community only as labeled secondary evidence.
|
|
429
|
+
10. Escalate to research only when freshness matters, public comparison matters, or the user explicitly asks to research/verify.
|
|
430
|
+
11. Use upstream MCP servers such as `postman`, `stitch`, or `playwright` for real cloud/browser actions when available.
|
|
423
431
|
|
|
424
432
|
<!-- cbx:mcp:auto:end -->
|