@cubis/foundry 0.3.62 → 0.3.64
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/constants.js +1 -1
- package/dist/cli/core.js +157 -67
- package/dist/cli/core.js.map +1 -1
- package/mcp/README.md +80 -4
- package/mcp/dist/index.js +730 -89
- package/mcp/src/index.ts +4 -0
- package/mcp/src/routes/loadGeneratedRouteManifest.ts +45 -0
- package/mcp/src/routes/types.ts +41 -0
- package/mcp/src/server.ts +4 -0
- package/mcp/src/tools/index.ts +21 -0
- package/mcp/src/tools/registry.test.ts +41 -6
- package/mcp/src/tools/registry.ts +61 -1
- package/mcp/src/tools/routeResolve.ts +417 -0
- package/mcp/src/tools/skillGet.ts +1 -1
- package/mcp/src/tools/skillGetReference.ts +76 -0
- package/mcp/src/tools/skillSearch.ts +94 -22
- package/mcp/src/tools/skillTools.test.ts +706 -2
- package/mcp/src/tools/skillValidate.ts +101 -0
- package/mcp/src/vault/manifest.test.ts +101 -0
- package/mcp/src/vault/manifest.ts +110 -0
- package/package.json +5 -4
- package/src/cli/constants.ts +1 -1
- package/src/cli/core.ts +175 -82
- package/workflows/skills/accessibility/SKILL.md +6 -4
- package/workflows/skills/api-designer/SKILL.md +12 -10
- package/workflows/skills/api-patterns/SKILL.md +10 -11
- package/workflows/skills/app-builder/SKILL.md +5 -5
- package/workflows/skills/architecture-designer/SKILL.md +0 -6
- package/workflows/skills/behavioral-modes/SKILL.md +1 -1
- package/workflows/skills/brainstorming/SKILL.md +2 -2
- package/workflows/skills/cli-developer/SKILL.md +5 -5
- package/workflows/skills/code-documenter/SKILL.md +0 -4
- package/workflows/skills/code-reviewer/SKILL.md +0 -6
- package/workflows/skills/csharp-pro/SKILL.md +24 -0
- package/workflows/skills/csharp-pro/references/operational-baseline.md +9 -0
- package/workflows/skills/database-design/SKILL.md +6 -6
- package/workflows/skills/database-optimizer/SKILL.md +0 -6
- package/workflows/skills/database-skills/SKILL.md +1 -1
- package/workflows/skills/design-system-builder/SKILL.md +6 -2
- package/workflows/skills/error-ux-observability/SKILL.md +7 -4
- package/workflows/skills/fastify-patterns/SKILL.md +1 -7
- package/workflows/skills/fix-review/SKILL.md +1 -1
- package/workflows/skills/flutter-code-reviewer/SKILL.md +12 -10
- package/workflows/skills/flutter-security-reviewer/SKILL.md +11 -9
- package/workflows/skills/frontend-design/SKILL.md +18 -18
- package/workflows/skills/golang-pro/SKILL.md +25 -5
- package/workflows/skills/gorouter-restoration/SKILL.md +8 -4
- package/workflows/skills/java-pro/SKILL.md +24 -0
- package/workflows/skills/java-pro/references/operational-baseline.md +9 -0
- package/workflows/skills/javascript-pro/SKILL.md +27 -7
- package/workflows/skills/kotlin-pro/SKILL.md +24 -0
- package/workflows/skills/kotlin-pro/references/operational-baseline.md +9 -0
- package/workflows/skills/microservices-architect/SKILL.md +0 -8
- package/workflows/skills/mobile-design/SKILL.md +24 -24
- package/workflows/skills/nestjs-expert/SKILL.md +1 -8
- package/workflows/skills/nestjs-expert/references/authentication.md +2 -2
- package/workflows/skills/nestjs-expert/references/migration-from-express.md +1 -1
- package/workflows/skills/nestjs-expert/references/secure-sessions.md +2 -2
- package/workflows/skills/nestjs-expert/references/strangler-fig-pattern.md +2 -2
- package/workflows/skills/next-best-practices/SKILL.md +21 -21
- package/workflows/skills/next-upgrade/SKILL.md +2 -1
- package/workflows/skills/oneup-design/SKILL.md +5 -3
- package/workflows/skills/plan-writing/SKILL.md +1 -1
- package/workflows/skills/prompt-engineer/SKILL.md +7 -5
- package/workflows/skills/python-pro/SKILL.md +25 -5
- package/workflows/skills/react-expert/references/migration-class-to-modern.md +1 -1
- package/workflows/skills/riverpod-3/SKILL.md +16 -10
- package/workflows/skills/rust-pro/SKILL.md +24 -0
- package/workflows/skills/rust-pro/references/operational-baseline.md +9 -0
- package/workflows/skills/security-reviewer/SKILL.md +0 -8
- package/workflows/skills/skill-authoring/SKILL.md +75 -0
- package/workflows/skills/skill-authoring/references/foundry-platform-parity.md +50 -0
- package/workflows/skills/skill-authoring/references/foundry-skill-checklist.md +45 -0
- package/workflows/skills/skill-authoring/scripts/init_skill.py +137 -0
- package/workflows/skills/skill-authoring/scripts/quick_validate.py +148 -0
- package/workflows/skills/skills_index.json +211 -11
- package/workflows/skills/stripe-best-practices/SKILL.md +2 -2
- package/workflows/skills/test-master/SKILL.md +0 -6
- package/workflows/skills/typescript-pro/SKILL.md +25 -5
- package/workflows/skills/ui-ux-pro-max/SKILL.md +7 -7
- package/workflows/skills/ux-ui-consistency/SKILL.md +7 -4
- package/workflows/skills/variant-analysis/SKILL.md +2 -2
- package/workflows/workflows/agent-environment-setup/generated/route-manifest.json +1604 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/backend-specialist.md +26 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/code-archaeologist.md +18 -1
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/database-architect.md +20 -5
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/debugger.md +18 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/devops-engineer.md +16 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/documentation-writer.md +16 -1
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/explorer-agent.md +18 -2
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/frontend-specialist.md +18 -1
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/game-developer.md +16 -1
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/mobile-developer.md +44 -42
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/orchestrator.md +22 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/penetration-tester.md +16 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/performance-optimizer.md +16 -1
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/product-manager.md +16 -1
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/product-owner.md +16 -1
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/project-planner.md +25 -8
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/qa-automation-engineer.md +16 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/security-auditor.md +16 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/seo-specialist.md +17 -1
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/test-engineer.md +16 -0
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/agents/vercel-expert.md +19 -1
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/backend.toml +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/brainstorm.toml +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/create.toml +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/database.toml +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/debug.toml +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/devops.toml +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/implement-track.toml +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/incident.toml +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/mobile.toml +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/orchestrate.toml +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/plan.toml +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/postman.toml +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/qa.toml +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/refactor.toml +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/release.toml +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/review.toml +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/security.toml +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/test.toml +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/commands/vercel.toml +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/rules/GEMINI.md +68 -82
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/backend.md +40 -13
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/brainstorm.md +26 -4
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/create.md +31 -5
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/database.md +21 -8
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/debug.md +24 -4
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/devops.md +14 -4
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/implement-track.md +25 -4
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/incident.md +14 -4
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/mobile.md +13 -4
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/orchestrate.md +21 -6
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/plan.md +33 -5
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/postman.md +17 -4
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/qa.md +16 -4
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/refactor.md +23 -4
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/release.md +13 -4
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/review.md +18 -5
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/security.md +17 -4
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/test.md +24 -4
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/workflows/vercel.md +15 -4
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/backend-specialist.md +26 -3
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/code-archaeologist.md +18 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/database-architect.md +20 -5
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/debugger.md +18 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/devops-engineer.md +16 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/documentation-writer.md +16 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/explorer-agent.md +18 -2
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/frontend-specialist.md +18 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/game-developer.md +16 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/mobile-developer.md +44 -42
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/orchestrator.md +22 -3
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/penetration-tester.md +16 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/performance-optimizer.md +16 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/product-manager.md +16 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/product-owner.md +16 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/project-planner.md +25 -8
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/qa-automation-engineer.md +16 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/security-auditor.md +16 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/seo-specialist.md +17 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/test-engineer.md +16 -0
- package/workflows/workflows/agent-environment-setup/platforms/codex/agents/vercel-expert.md +19 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/rules/AGENTS.md +70 -85
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/backend.md +40 -13
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/brainstorm.md +26 -4
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/create.md +31 -5
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/database.md +21 -8
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/debug.md +24 -4
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/devops.md +14 -4
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/implement-track.md +25 -4
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/incident.md +14 -4
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/mobile.md +13 -4
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/orchestrate.md +21 -6
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/plan.md +33 -5
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/postman.md +17 -4
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/qa.md +16 -4
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/refactor.md +23 -4
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/release.md +13 -4
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/review.md +18 -5
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/security.md +17 -4
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/test.md +24 -4
- package/workflows/workflows/agent-environment-setup/platforms/codex/workflows/vercel.md +15 -4
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/backend-specialist.md +26 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/code-archaeologist.md +18 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/database-architect.md +20 -5
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/debugger.md +18 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/devops-engineer.md +16 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/documentation-writer.md +16 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/explorer-agent.md +18 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/frontend-specialist.md +18 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/game-developer.md +16 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/mobile-developer.md +44 -42
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/orchestrator.md +22 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/penetration-tester.md +16 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/performance-optimizer.md +16 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/product-manager.md +16 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/product-owner.md +16 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/project-planner.md +25 -7
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/qa-automation-engineer.md +16 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/security-auditor.md +16 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/seo-specialist.md +17 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/test-engineer.md +16 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/agents/vercel-expert.md +19 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-backend.prompt.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-brainstorm.prompt.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-create.prompt.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-database.prompt.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-debug.prompt.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-devops.prompt.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-implement-track.prompt.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-incident.prompt.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-mobile.prompt.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-orchestrate.prompt.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-plan.prompt.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-postman.prompt.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-qa.prompt.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-refactor.prompt.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-release.prompt.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-review.prompt.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-security.prompt.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-test.prompt.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/prompts/workflow-vercel.prompt.md +4 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/rules/AGENTS.md +71 -83
- package/workflows/workflows/agent-environment-setup/platforms/copilot/rules/copilot-instructions.md +71 -83
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/accessibility/SKILL.md +6 -17
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/api-designer/SKILL.md +12 -12
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/api-patterns/SKILL.md +10 -13
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/app-builder/SKILL.md +5 -7
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/app-builder/templates/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/architecture/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/architecture-designer/SKILL.md +0 -8
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/ask-questions-if-underspecified/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/bash-linux/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/behavioral-modes/SKILL.md +1 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/brainstorming/SKILL.md +2 -4
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/changelog-generator/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/clean-code/SKILL.md +0 -4
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/cli-developer/SKILL.md +5 -21
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/code-documenter/SKILL.md +0 -6
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/code-review-checklist/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/code-reviewer/SKILL.md +0 -8
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/csharp-pro/SKILL.md +24 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/csharp-pro/references/operational-baseline.md +9 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/database-design/SKILL.md +6 -8
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/database-optimizer/SKILL.md +0 -8
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/database-skills/SKILL.md +1 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/database-skills/skills/mongodb/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/database-skills/skills/mysql/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/database-skills/skills/neki/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/database-skills/skills/postgres/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/database-skills/skills/redis/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/database-skills/skills/sqlite/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/database-skills/skills/supabase/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/database-skills/skills/vitess/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/debugging-wizard/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/deployment-procedures/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/design-system-builder/SKILL.md +6 -14
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/devops-engineer/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/documentation-templates/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/drift-flutter/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/error-ux-observability/SKILL.md +7 -16
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/fastapi-expert/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/fastify-patterns/SKILL.md +1 -9
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/feature-forge/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/find-bugs/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/fix-review/SKILL.md +1 -9
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/flutter-code-reviewer/SKILL.md +12 -24
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/flutter-expert/SKILL.md +0 -13
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/flutter-security-reviewer/SKILL.md +11 -26
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/flutter-test-master/SKILL.md +0 -16
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/frontend-design/SKILL.md +18 -20
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/game-development/2d-games/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/game-development/3d-games/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/game-development/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/game-development/game-art/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/game-development/game-audio/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/game-development/game-design/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/game-development/mobile-games/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/game-development/multiplayer/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/game-development/pc-games/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/game-development/vr-ar/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/game-development/web-games/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/geo-fundamentals/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/git-commit/SKILL.md +0 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/golang-pro/SKILL.md +25 -6
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/gorouter-restoration/SKILL.md +8 -16
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/graphql-architect/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/i18n-localization/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/intelligent-routing/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/java-pro/SKILL.md +24 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/java-pro/references/operational-baseline.md +9 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/javascript-pro/SKILL.md +27 -8
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/kotlin-pro/SKILL.md +24 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/kotlin-pro/references/operational-baseline.md +9 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/legacy-modernizer/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/lint-and-validate/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/microservices-architect/SKILL.md +0 -10
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/mobile-design/SKILL.md +24 -26
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/monitoring-expert/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/nestjs-expert/SKILL.md +1 -10
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/nestjs-expert/references/authentication.md +2 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/nestjs-expert/references/migration-from-express.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/nestjs-expert/references/secure-sessions.md +2 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/nestjs-expert/references/strangler-fig-pattern.md +2 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/next-best-practices/SKILL.md +21 -22
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/next-cache-components/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/next-upgrade/SKILL.md +2 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/nextjs-developer/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/nextjs-react-expert/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/nodejs-best-practices/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/oneup-design/SKILL.md +5 -6
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/openapi-docs/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/parallel-agents/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/performance-profiling/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/plan-writing/SKILL.md +1 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/playwright-expert/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/postman/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/powershell-windows/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/prompt-engineer/SKILL.md +7 -8
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/python-patterns/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/python-pro/SKILL.md +25 -6
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/react-best-practices/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/react-expert/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/react-expert/references/migration-class-to-modern.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/red-team-tactics/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/refactor/SKILL.md +0 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/riverpod-3/SKILL.md +16 -23
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/rust-engineer/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/rust-pro/SKILL.md +24 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/rust-pro/references/operational-baseline.md +9 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/saas-builder/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/sarif-parsing/SKILL.md +0 -6
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/secure-code-guardian/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/security-reviewer/SKILL.md +0 -10
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/semgrep/SKILL.md +0 -13
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/seo-fundamentals/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/server-management/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/skill-authoring/SKILL.md +74 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/skill-authoring/references/foundry-platform-parity.md +50 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/skill-authoring/references/foundry-skill-checklist.md +45 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/skill-authoring/scripts/init_skill.py +137 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/skill-authoring/scripts/quick_validate.py +148 -0
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/skills_index.json +230 -10
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/spec-miner/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/sre-engineer/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/static-analysis/SKILL.md +0 -12
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/stitch/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/stripe-best-practices/SKILL.md +2 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/sub-agents/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/systematic-debugging/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/tailwind-patterns/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/tdd-workflow/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/terraform-engineer/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/test-master/SKILL.md +0 -8
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/testing-patterns/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/typescript-pro/SKILL.md +25 -6
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/ui-ux-pro-max/SKILL.md +7 -8
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/ux-ui-consistency/SKILL.md +7 -16
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/variant-analysis/SKILL.md +2 -3
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/vercel-ai/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/vercel-ai-gateway/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/vercel-ai-sdk/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/vercel-caching/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/vercel-cli/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/vercel-delivery/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/vercel-deployments/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/vercel-domains/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/vercel-firewall/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/vercel-flags/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/vercel-functions/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/vercel-observability/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/vercel-platform/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/vercel-routing/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/vercel-runtime/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/vercel-security/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/vercel-storage/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/vulnerability-scanner/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/web-design-guidelines/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/web-perf/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/webapp-testing/SKILL.md +0 -2
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/wrangler/SKILL.md +0 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/backend.md +40 -13
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/brainstorm.md +26 -4
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/create.md +31 -5
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/database.md +21 -8
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/debug.md +24 -4
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/devops.md +14 -4
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/implement-track.md +25 -4
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/incident.md +14 -4
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/mobile.md +13 -4
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/orchestrate.md +21 -6
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/plan.md +33 -5
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/postman.md +17 -4
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/qa.md +16 -4
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/refactor.md +23 -4
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/release.md +13 -4
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/review.md +18 -5
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/security.md +17 -4
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/test.md +24 -4
- package/workflows/workflows/agent-environment-setup/platforms/copilot/workflows/vercel.md +15 -4
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/accessibility/SKILL.md +6 -4
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/api-designer/SKILL.md +12 -10
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/api-patterns/SKILL.md +10 -11
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/app-builder/SKILL.md +5 -5
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/architecture-designer/SKILL.md +0 -6
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/behavioral-modes/SKILL.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/brainstorming/SKILL.md +2 -2
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/cli-developer/SKILL.md +5 -5
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/code-documenter/SKILL.md +0 -4
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/code-reviewer/SKILL.md +0 -6
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/csharp-pro/SKILL.md +24 -0
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/csharp-pro/references/operational-baseline.md +9 -0
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/database-design/SKILL.md +6 -6
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/database-optimizer/SKILL.md +0 -6
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/database-skills/SKILL.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/design-system-builder/SKILL.md +6 -2
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/error-ux-observability/SKILL.md +7 -4
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/fastify-patterns/SKILL.md +1 -7
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/fix-review/SKILL.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/flutter-code-reviewer/SKILL.md +12 -10
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/flutter-security-reviewer/SKILL.md +11 -9
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/frontend-design/SKILL.md +18 -18
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/golang-pro/SKILL.md +25 -5
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/gorouter-restoration/SKILL.md +8 -4
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/java-pro/SKILL.md +24 -0
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/java-pro/references/operational-baseline.md +9 -0
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/javascript-pro/SKILL.md +27 -7
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/kotlin-pro/SKILL.md +24 -0
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/kotlin-pro/references/operational-baseline.md +9 -0
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/microservices-architect/SKILL.md +0 -8
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/mobile-design/SKILL.md +24 -24
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/nestjs-expert/SKILL.md +1 -8
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/nestjs-expert/references/authentication.md +2 -2
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/nestjs-expert/references/migration-from-express.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/nestjs-expert/references/secure-sessions.md +2 -2
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/nestjs-expert/references/strangler-fig-pattern.md +2 -2
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/next-best-practices/SKILL.md +21 -21
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/next-upgrade/SKILL.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/oneup-design/SKILL.md +5 -3
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/plan-writing/SKILL.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/prompt-engineer/SKILL.md +7 -5
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/python-pro/SKILL.md +25 -5
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/react-expert/references/migration-class-to-modern.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/riverpod-3/SKILL.md +16 -10
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/rust-pro/SKILL.md +24 -0
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/rust-pro/references/operational-baseline.md +9 -0
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/security-reviewer/SKILL.md +0 -8
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/skill-authoring/SKILL.md +75 -0
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/skill-authoring/references/foundry-platform-parity.md +50 -0
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/skill-authoring/references/foundry-skill-checklist.md +45 -0
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/skill-authoring/scripts/init_skill.py +137 -0
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/skill-authoring/scripts/quick_validate.py +148 -0
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/skills_index.json +230 -10
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/stripe-best-practices/SKILL.md +2 -2
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/test-master/SKILL.md +0 -6
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/typescript-pro/SKILL.md +25 -5
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/ui-ux-pro-max/SKILL.md +7 -7
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/ux-ui-consistency/SKILL.md +7 -4
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/variant-analysis/SKILL.md +2 -2
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/accessibility/SKILL.md +6 -4
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/api-designer/SKILL.md +12 -10
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/api-patterns/SKILL.md +10 -11
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/app-builder/SKILL.md +5 -5
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/architecture-designer/SKILL.md +0 -6
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/behavioral-modes/SKILL.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/brainstorming/SKILL.md +2 -2
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/cli-developer/SKILL.md +5 -5
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/code-documenter/SKILL.md +0 -4
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/code-reviewer/SKILL.md +0 -6
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/csharp-pro/SKILL.md +24 -0
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/csharp-pro/references/operational-baseline.md +9 -0
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/database-design/SKILL.md +6 -6
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/database-optimizer/SKILL.md +0 -6
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/database-skills/SKILL.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/design-system-builder/SKILL.md +6 -2
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/error-ux-observability/SKILL.md +7 -4
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/fastify-patterns/SKILL.md +1 -7
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/fix-review/SKILL.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/flutter-code-reviewer/SKILL.md +12 -10
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/flutter-security-reviewer/SKILL.md +11 -9
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/frontend-design/SKILL.md +18 -18
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/golang-pro/SKILL.md +25 -5
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/gorouter-restoration/SKILL.md +8 -4
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/java-pro/SKILL.md +24 -0
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/java-pro/references/operational-baseline.md +9 -0
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/javascript-pro/SKILL.md +27 -7
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/kotlin-pro/SKILL.md +24 -0
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/kotlin-pro/references/operational-baseline.md +9 -0
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/microservices-architect/SKILL.md +0 -8
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/mobile-design/SKILL.md +24 -24
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/nestjs-expert/SKILL.md +1 -8
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/nestjs-expert/references/authentication.md +2 -2
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/nestjs-expert/references/migration-from-express.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/nestjs-expert/references/secure-sessions.md +2 -2
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/nestjs-expert/references/strangler-fig-pattern.md +2 -2
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/next-best-practices/SKILL.md +21 -21
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/next-upgrade/SKILL.md +2 -1
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/oneup-design/SKILL.md +5 -3
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/plan-writing/SKILL.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/prompt-engineer/SKILL.md +7 -5
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/python-pro/SKILL.md +25 -5
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/react-expert/references/migration-class-to-modern.md +1 -1
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/riverpod-3/SKILL.md +16 -10
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/rust-pro/SKILL.md +24 -0
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/rust-pro/references/operational-baseline.md +9 -0
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/security-reviewer/SKILL.md +0 -8
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/skill-authoring/SKILL.md +75 -0
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/skill-authoring/references/foundry-platform-parity.md +50 -0
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/skill-authoring/references/foundry-skill-checklist.md +45 -0
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/skill-authoring/scripts/init_skill.py +137 -0
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/skill-authoring/scripts/quick_validate.py +148 -0
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/skills_index.json +230 -10
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/stripe-best-practices/SKILL.md +2 -2
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/test-master/SKILL.md +0 -6
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/typescript-pro/SKILL.md +25 -5
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/ui-ux-pro-max/SKILL.md +7 -7
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/ux-ui-consistency/SKILL.md +7 -4
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/variant-analysis/SKILL.md +2 -2
- package/workflows/workflows/agent-environment-setup/shared/agents/backend-specialist.md +26 -3
- package/workflows/workflows/agent-environment-setup/shared/agents/code-archaeologist.md +18 -1
- package/workflows/workflows/agent-environment-setup/shared/agents/database-architect.md +20 -5
- package/workflows/workflows/agent-environment-setup/shared/agents/debugger.md +18 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/devops-engineer.md +16 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/documentation-writer.md +16 -1
- package/workflows/workflows/agent-environment-setup/shared/agents/explorer-agent.md +18 -2
- package/workflows/workflows/agent-environment-setup/shared/agents/frontend-specialist.md +18 -1
- package/workflows/workflows/agent-environment-setup/shared/agents/game-developer.md +16 -1
- package/workflows/workflows/agent-environment-setup/shared/agents/mobile-developer.md +44 -42
- package/workflows/workflows/agent-environment-setup/shared/agents/orchestrator.md +22 -3
- package/workflows/workflows/agent-environment-setup/shared/agents/penetration-tester.md +16 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/performance-optimizer.md +16 -1
- package/workflows/workflows/agent-environment-setup/shared/agents/product-manager.md +16 -1
- package/workflows/workflows/agent-environment-setup/shared/agents/product-owner.md +16 -1
- package/workflows/workflows/agent-environment-setup/shared/agents/project-planner.md +25 -8
- package/workflows/workflows/agent-environment-setup/shared/agents/qa-automation-engineer.md +16 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/security-auditor.md +16 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/seo-specialist.md +17 -1
- package/workflows/workflows/agent-environment-setup/shared/agents/test-engineer.md +16 -0
- package/workflows/workflows/agent-environment-setup/shared/agents/vercel-expert.md +19 -1
- package/workflows/workflows/agent-environment-setup/shared/workflows/backend.md +40 -13
- package/workflows/workflows/agent-environment-setup/shared/workflows/brainstorm.md +26 -4
- package/workflows/workflows/agent-environment-setup/shared/workflows/create.md +31 -5
- package/workflows/workflows/agent-environment-setup/shared/workflows/database.md +21 -8
- package/workflows/workflows/agent-environment-setup/shared/workflows/debug.md +24 -4
- package/workflows/workflows/agent-environment-setup/shared/workflows/devops.md +14 -4
- package/workflows/workflows/agent-environment-setup/shared/workflows/implement-track.md +25 -4
- package/workflows/workflows/agent-environment-setup/shared/workflows/incident.md +14 -4
- package/workflows/workflows/agent-environment-setup/shared/workflows/mobile.md +13 -4
- package/workflows/workflows/agent-environment-setup/shared/workflows/orchestrate.md +21 -6
- package/workflows/workflows/agent-environment-setup/shared/workflows/plan.md +33 -5
- package/workflows/workflows/agent-environment-setup/shared/workflows/postman.md +17 -4
- package/workflows/workflows/agent-environment-setup/shared/workflows/qa.md +16 -4
- package/workflows/workflows/agent-environment-setup/shared/workflows/refactor.md +23 -4
- package/workflows/workflows/agent-environment-setup/shared/workflows/release.md +13 -4
- package/workflows/workflows/agent-environment-setup/shared/workflows/review.md +18 -5
- package/workflows/workflows/agent-environment-setup/shared/workflows/security.md +17 -4
- package/workflows/workflows/agent-environment-setup/shared/workflows/test.md +24 -4
- package/workflows/workflows/agent-environment-setup/shared/workflows/vercel.md +15 -4
- package/workflows/skills/accessibility/POWER.md +0 -103
- package/workflows/skills/api-designer/POWER.md +0 -108
- package/workflows/skills/architecture-designer/POWER.md +0 -96
- package/workflows/skills/cli-developer/POWER.md +0 -116
- package/workflows/skills/code-documenter/POWER.md +0 -101
- package/workflows/skills/code-reviewer/POWER.md +0 -100
- package/workflows/skills/database-optimizer/POWER.md +0 -102
- package/workflows/skills/debugging-wizard/POWER.md +0 -102
- package/workflows/skills/design-system-builder/POWER.md +0 -150
- package/workflows/skills/devops-engineer/POWER.md +0 -99
- package/workflows/skills/error-ux-observability/POWER.md +0 -158
- package/workflows/skills/fastify-patterns/POWER.md +0 -167
- package/workflows/skills/flutter-code-reviewer/POWER.md +0 -185
- package/workflows/skills/flutter-expert/POWER.md +0 -68
- package/workflows/skills/flutter-security-reviewer/POWER.md +0 -204
- package/workflows/skills/flutter-test-master/POWER.md +0 -525
- package/workflows/skills/git-commit/POWER.md +0 -47
- package/workflows/skills/gorouter-restoration/POWER.md +0 -123
- package/workflows/skills/microservices-architect/POWER.md +0 -109
- package/workflows/skills/nestjs-expert/POWER.md +0 -130
- package/workflows/skills/nextjs-developer/POWER.md +0 -166
- package/workflows/skills/oneup-design/POWER.md +0 -72
- package/workflows/skills/openapi-docs/POWER.md +0 -78
- package/workflows/skills/prompt-engineer/POWER.md +0 -42
- package/workflows/skills/refactor/POWER.md +0 -63
- package/workflows/skills/riverpod-3/POWER.md +0 -143
- package/workflows/skills/saas-builder/POWER.md +0 -165
- package/workflows/skills/security-reviewer/POWER.md +0 -99
- package/workflows/skills/test-master/POWER.md +0 -111
- package/workflows/skills/typescript-pro/POWER.md +0 -101
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/accessibility/POWER.md +0 -103
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/api-designer/POWER.md +0 -108
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/architecture-designer/POWER.md +0 -96
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/cli-developer/POWER.md +0 -116
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/code-documenter/POWER.md +0 -101
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/code-reviewer/POWER.md +0 -100
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/database-optimizer/POWER.md +0 -102
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/debugging-wizard/POWER.md +0 -102
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/design-system-builder/POWER.md +0 -150
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/devops-engineer/POWER.md +0 -99
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/error-ux-observability/POWER.md +0 -158
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/fastify-patterns/POWER.md +0 -167
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/flutter-code-reviewer/POWER.md +0 -185
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/flutter-expert/POWER.md +0 -68
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/flutter-security-reviewer/POWER.md +0 -204
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/flutter-test-master/POWER.md +0 -525
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/git-commit/POWER.md +0 -47
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/gorouter-restoration/POWER.md +0 -123
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/microservices-architect/POWER.md +0 -109
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/nestjs-expert/POWER.md +0 -130
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/nextjs-developer/POWER.md +0 -166
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/oneup-design/POWER.md +0 -72
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/openapi-docs/POWER.md +0 -78
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/prompt-engineer/POWER.md +0 -42
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/refactor/POWER.md +0 -63
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/riverpod-3/POWER.md +0 -143
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/saas-builder/POWER.md +0 -165
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/security-reviewer/POWER.md +0 -99
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/test-master/POWER.md +0 -111
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/typescript-pro/POWER.md +0 -101
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/accessibility/POWER.md +0 -103
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/api-designer/POWER.md +0 -108
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/architecture-designer/POWER.md +0 -96
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/cli-developer/POWER.md +0 -116
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/code-documenter/POWER.md +0 -101
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/code-reviewer/POWER.md +0 -100
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/database-optimizer/POWER.md +0 -102
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/debugging-wizard/POWER.md +0 -102
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/design-system-builder/POWER.md +0 -150
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/devops-engineer/POWER.md +0 -99
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/error-ux-observability/POWER.md +0 -158
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/fastify-patterns/POWER.md +0 -167
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/flutter-code-reviewer/POWER.md +0 -185
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/flutter-expert/POWER.md +0 -68
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/flutter-security-reviewer/POWER.md +0 -204
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/flutter-test-master/POWER.md +0 -525
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/git-commit/POWER.md +0 -47
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/gorouter-restoration/POWER.md +0 -123
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/microservices-architect/POWER.md +0 -109
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/nestjs-expert/POWER.md +0 -130
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/nextjs-developer/POWER.md +0 -166
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/oneup-design/POWER.md +0 -72
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/openapi-docs/POWER.md +0 -78
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/prompt-engineer/POWER.md +0 -42
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/refactor/POWER.md +0 -63
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/riverpod-3/POWER.md +0 -143
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/saas-builder/POWER.md +0 -165
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/security-reviewer/POWER.md +0 -99
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/test-master/POWER.md +0 -111
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/typescript-pro/POWER.md +0 -101
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/accessibility/POWER.md +0 -103
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/api-designer/POWER.md +0 -108
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/architecture-designer/POWER.md +0 -96
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/cli-developer/POWER.md +0 -116
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/code-documenter/POWER.md +0 -101
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/code-reviewer/POWER.md +0 -100
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/database-optimizer/POWER.md +0 -102
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/debugging-wizard/POWER.md +0 -102
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/design-system-builder/POWER.md +0 -150
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/devops-engineer/POWER.md +0 -99
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/error-ux-observability/POWER.md +0 -158
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/fastify-patterns/POWER.md +0 -167
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/flutter-code-reviewer/POWER.md +0 -185
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/flutter-expert/POWER.md +0 -68
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/flutter-security-reviewer/POWER.md +0 -204
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/flutter-test-master/POWER.md +0 -525
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/git-commit/POWER.md +0 -47
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/gorouter-restoration/POWER.md +0 -123
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/microservices-architect/POWER.md +0 -109
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/nestjs-expert/POWER.md +0 -130
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/nextjs-developer/POWER.md +0 -166
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/oneup-design/POWER.md +0 -72
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/openapi-docs/POWER.md +0 -78
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/prompt-engineer/POWER.md +0 -42
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/refactor/POWER.md +0 -63
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/riverpod-3/POWER.md +0 -143
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/saas-builder/POWER.md +0 -165
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/security-reviewer/POWER.md +0 -99
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/test-master/POWER.md +0 -111
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/typescript-pro/POWER.md +0 -101
- /package/workflows/skills/api-patterns/{api-style.md → references/api-style.md} +0 -0
- /package/workflows/skills/api-patterns/{auth.md → references/auth.md} +0 -0
- /package/workflows/skills/api-patterns/{documentation.md → references/documentation.md} +0 -0
- /package/workflows/skills/api-patterns/{graphql.md → references/graphql.md} +0 -0
- /package/workflows/skills/api-patterns/{rate-limiting.md → references/rate-limiting.md} +0 -0
- /package/workflows/skills/api-patterns/{response.md → references/response.md} +0 -0
- /package/workflows/skills/api-patterns/{rest.md → references/rest.md} +0 -0
- /package/workflows/skills/api-patterns/{security-testing.md → references/security-testing.md} +0 -0
- /package/workflows/skills/api-patterns/{trpc.md → references/trpc.md} +0 -0
- /package/workflows/skills/api-patterns/{versioning.md → references/versioning.md} +0 -0
- /package/workflows/skills/app-builder/{agent-coordination.md → references/agent-coordination.md} +0 -0
- /package/workflows/skills/app-builder/{feature-building.md → references/feature-building.md} +0 -0
- /package/workflows/skills/app-builder/{project-detection.md → references/project-detection.md} +0 -0
- /package/workflows/skills/app-builder/{scaffolding.md → references/scaffolding.md} +0 -0
- /package/workflows/skills/app-builder/{tech-stack.md → references/tech-stack.md} +0 -0
- /package/workflows/skills/architecture/{context-discovery.md → docs/context-discovery.md} +0 -0
- /package/workflows/skills/architecture/{examples.md → docs/examples.md} +0 -0
- /package/workflows/skills/architecture/{pattern-selection.md → docs/pattern-selection.md} +0 -0
- /package/workflows/skills/architecture/{patterns-reference.md → docs/patterns-reference.md} +0 -0
- /package/workflows/skills/architecture/{trade-off-analysis.md → docs/trade-off-analysis.md} +0 -0
- /package/workflows/skills/brainstorming/{dynamic-questioning.md → references/dynamic-questioning.md} +0 -0
- /package/workflows/skills/database-design/{database-selection.md → references/database-selection.md} +0 -0
- /package/workflows/skills/database-design/{indexing.md → references/indexing.md} +0 -0
- /package/workflows/skills/database-design/{migrations.md → references/migrations.md} +0 -0
- /package/workflows/skills/database-design/{optimization.md → references/optimization.md} +0 -0
- /package/workflows/skills/database-design/{orm-selection.md → references/orm-selection.md} +0 -0
- /package/workflows/skills/database-design/{schema-design.md → references/schema-design.md} +0 -0
- /package/workflows/skills/database-skills/{README.md → docs/README.md} +0 -0
- /package/workflows/skills/database-skills/{LATEST_VERSIONS.md → references/LATEST_VERSIONS.md} +0 -0
- /package/workflows/skills/frontend-design/{animation-guide.md → references/animation-guide.md} +0 -0
- /package/workflows/skills/frontend-design/{color-system.md → references/color-system.md} +0 -0
- /package/workflows/skills/frontend-design/{decision-trees.md → references/decision-trees.md} +0 -0
- /package/workflows/skills/frontend-design/{motion-graphics.md → references/motion-graphics.md} +0 -0
- /package/workflows/skills/frontend-design/{typography-system.md → references/typography-system.md} +0 -0
- /package/workflows/skills/frontend-design/{ux-psychology.md → references/ux-psychology.md} +0 -0
- /package/workflows/skills/frontend-design/{visual-effects.md → references/visual-effects.md} +0 -0
- /package/workflows/skills/mobile-design/{decision-trees.md → references/decision-trees.md} +0 -0
- /package/workflows/skills/mobile-design/{mobile-backend.md → references/mobile-backend.md} +0 -0
- /package/workflows/skills/mobile-design/{mobile-color-system.md → references/mobile-color-system.md} +0 -0
- /package/workflows/skills/mobile-design/{mobile-debugging.md → references/mobile-debugging.md} +0 -0
- /package/workflows/skills/mobile-design/{mobile-design-thinking.md → references/mobile-design-thinking.md} +0 -0
- /package/workflows/skills/mobile-design/{mobile-navigation.md → references/mobile-navigation.md} +0 -0
- /package/workflows/skills/mobile-design/{mobile-performance.md → references/mobile-performance.md} +0 -0
- /package/workflows/skills/mobile-design/{mobile-testing.md → references/mobile-testing.md} +0 -0
- /package/workflows/skills/mobile-design/{mobile-typography.md → references/mobile-typography.md} +0 -0
- /package/workflows/skills/mobile-design/{platform-android.md → references/platform-android.md} +0 -0
- /package/workflows/skills/mobile-design/{platform-ios.md → references/platform-ios.md} +0 -0
- /package/workflows/skills/mobile-design/{touch-psychology.md → references/touch-psychology.md} +0 -0
- /package/workflows/skills/next-best-practices/{async-patterns.md → references/async-patterns.md} +0 -0
- /package/workflows/skills/next-best-practices/{bundling.md → references/bundling.md} +0 -0
- /package/workflows/skills/next-best-practices/{data-patterns.md → references/data-patterns.md} +0 -0
- /package/workflows/skills/next-best-practices/{debug-tricks.md → references/debug-tricks.md} +0 -0
- /package/workflows/skills/next-best-practices/{directives.md → references/directives.md} +0 -0
- /package/workflows/skills/next-best-practices/{error-handling.md → references/error-handling.md} +0 -0
- /package/workflows/skills/next-best-practices/{file-conventions.md → references/file-conventions.md} +0 -0
- /package/workflows/skills/next-best-practices/{font.md → references/font.md} +0 -0
- /package/workflows/skills/next-best-practices/{functions.md → references/functions.md} +0 -0
- /package/workflows/skills/next-best-practices/{hydration-error.md → references/hydration-error.md} +0 -0
- /package/workflows/skills/next-best-practices/{image.md → references/image.md} +0 -0
- /package/workflows/skills/next-best-practices/{metadata.md → references/metadata.md} +0 -0
- /package/workflows/skills/next-best-practices/{parallel-routes.md → references/parallel-routes.md} +0 -0
- /package/workflows/skills/next-best-practices/{route-handlers.md → references/route-handlers.md} +0 -0
- /package/workflows/skills/next-best-practices/{rsc-boundaries.md → references/rsc-boundaries.md} +0 -0
- /package/workflows/skills/next-best-practices/{runtime-selection.md → references/runtime-selection.md} +0 -0
- /package/workflows/skills/next-best-practices/{scripts.md → references/scripts.md} +0 -0
- /package/workflows/skills/next-best-practices/{self-hosting.md → references/self-hosting.md} +0 -0
- /package/workflows/skills/next-best-practices/{suspense-boundaries.md → references/suspense-boundaries.md} +0 -0
- /package/workflows/skills/nextjs-react-expert/{1-async-eliminating-waterfalls.md → docs/1-async-eliminating-waterfalls.md} +0 -0
- /package/workflows/skills/nextjs-react-expert/{2-bundle-bundle-size-optimization.md → docs/2-bundle-bundle-size-optimization.md} +0 -0
- /package/workflows/skills/nextjs-react-expert/{3-server-server-side-performance.md → docs/3-server-server-side-performance.md} +0 -0
- /package/workflows/skills/nextjs-react-expert/{4-client-client-side-data-fetching.md → docs/4-client-client-side-data-fetching.md} +0 -0
- /package/workflows/skills/nextjs-react-expert/{5-rerender-re-render-optimization.md → docs/5-rerender-re-render-optimization.md} +0 -0
- /package/workflows/skills/nextjs-react-expert/{6-rendering-rendering-performance.md → docs/6-rendering-rendering-performance.md} +0 -0
- /package/workflows/skills/nextjs-react-expert/{7-js-javascript-performance.md → docs/7-js-javascript-performance.md} +0 -0
- /package/workflows/skills/nextjs-react-expert/{8-advanced-advanced-patterns.md → docs/8-advanced-advanced-patterns.md} +0 -0
- /package/workflows/skills/react-best-practices/{AGENTS.md → docs/AGENTS.md} +0 -0
- /package/workflows/skills/react-best-practices/{README.md → docs/README.md} +0 -0
- /package/workflows/skills/variant-analysis/{METHODOLOGY.md → references/METHODOLOGY.md} +0 -0
- /package/workflows/skills/vulnerability-scanner/{checklists.md → docs/checklists.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/api-patterns/{api-style.md → references/api-style.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/api-patterns/{auth.md → references/auth.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/api-patterns/{documentation.md → references/documentation.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/api-patterns/{graphql.md → references/graphql.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/api-patterns/{rate-limiting.md → references/rate-limiting.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/api-patterns/{response.md → references/response.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/api-patterns/{rest.md → references/rest.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/api-patterns/{security-testing.md → references/security-testing.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/api-patterns/{trpc.md → references/trpc.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/api-patterns/{versioning.md → references/versioning.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/app-builder/{agent-coordination.md → references/agent-coordination.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/app-builder/{feature-building.md → references/feature-building.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/app-builder/{project-detection.md → references/project-detection.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/app-builder/{scaffolding.md → references/scaffolding.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/app-builder/{tech-stack.md → references/tech-stack.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/architecture/{context-discovery.md → docs/context-discovery.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/architecture/{examples.md → docs/examples.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/architecture/{pattern-selection.md → docs/pattern-selection.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/architecture/{patterns-reference.md → docs/patterns-reference.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/architecture/{trade-off-analysis.md → docs/trade-off-analysis.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/brainstorming/{dynamic-questioning.md → references/dynamic-questioning.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/database-design/{database-selection.md → references/database-selection.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/database-design/{indexing.md → references/indexing.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/database-design/{migrations.md → references/migrations.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/database-design/{optimization.md → references/optimization.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/database-design/{orm-selection.md → references/orm-selection.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/database-design/{schema-design.md → references/schema-design.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/database-skills/{README.md → docs/README.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/database-skills/{LATEST_VERSIONS.md → references/LATEST_VERSIONS.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/frontend-design/{animation-guide.md → references/animation-guide.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/frontend-design/{color-system.md → references/color-system.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/frontend-design/{decision-trees.md → references/decision-trees.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/frontend-design/{motion-graphics.md → references/motion-graphics.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/frontend-design/{typography-system.md → references/typography-system.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/frontend-design/{ux-psychology.md → references/ux-psychology.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/frontend-design/{visual-effects.md → references/visual-effects.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/mobile-design/{decision-trees.md → references/decision-trees.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/mobile-design/{mobile-backend.md → references/mobile-backend.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/mobile-design/{mobile-color-system.md → references/mobile-color-system.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/mobile-design/{mobile-debugging.md → references/mobile-debugging.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/mobile-design/{mobile-design-thinking.md → references/mobile-design-thinking.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/mobile-design/{mobile-navigation.md → references/mobile-navigation.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/mobile-design/{mobile-performance.md → references/mobile-performance.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/mobile-design/{mobile-testing.md → references/mobile-testing.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/mobile-design/{mobile-typography.md → references/mobile-typography.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/mobile-design/{platform-android.md → references/platform-android.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/mobile-design/{platform-ios.md → references/platform-ios.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/mobile-design/{touch-psychology.md → references/touch-psychology.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/next-best-practices/{async-patterns.md → references/async-patterns.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/next-best-practices/{bundling.md → references/bundling.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/next-best-practices/{data-patterns.md → references/data-patterns.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/next-best-practices/{debug-tricks.md → references/debug-tricks.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/next-best-practices/{directives.md → references/directives.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/next-best-practices/{error-handling.md → references/error-handling.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/next-best-practices/{file-conventions.md → references/file-conventions.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/next-best-practices/{font.md → references/font.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/next-best-practices/{functions.md → references/functions.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/next-best-practices/{hydration-error.md → references/hydration-error.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/next-best-practices/{image.md → references/image.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/next-best-practices/{metadata.md → references/metadata.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/next-best-practices/{parallel-routes.md → references/parallel-routes.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/next-best-practices/{route-handlers.md → references/route-handlers.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/next-best-practices/{rsc-boundaries.md → references/rsc-boundaries.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/next-best-practices/{runtime-selection.md → references/runtime-selection.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/next-best-practices/{scripts.md → references/scripts.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/next-best-practices/{self-hosting.md → references/self-hosting.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/next-best-practices/{suspense-boundaries.md → references/suspense-boundaries.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/nextjs-react-expert/{1-async-eliminating-waterfalls.md → docs/1-async-eliminating-waterfalls.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/nextjs-react-expert/{2-bundle-bundle-size-optimization.md → docs/2-bundle-bundle-size-optimization.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/nextjs-react-expert/{3-server-server-side-performance.md → docs/3-server-server-side-performance.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/nextjs-react-expert/{4-client-client-side-data-fetching.md → docs/4-client-client-side-data-fetching.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/nextjs-react-expert/{5-rerender-re-render-optimization.md → docs/5-rerender-re-render-optimization.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/nextjs-react-expert/{6-rendering-rendering-performance.md → docs/6-rendering-rendering-performance.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/nextjs-react-expert/{7-js-javascript-performance.md → docs/7-js-javascript-performance.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/nextjs-react-expert/{8-advanced-advanced-patterns.md → docs/8-advanced-advanced-patterns.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/react-best-practices/{AGENTS.md → docs/AGENTS.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/react-best-practices/{README.md → docs/README.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/variant-analysis/{METHODOLOGY.md → references/METHODOLOGY.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/vulnerability-scanner/{checklists.md → docs/checklists.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/api-patterns/{api-style.md → references/api-style.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/api-patterns/{auth.md → references/auth.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/api-patterns/{documentation.md → references/documentation.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/api-patterns/{graphql.md → references/graphql.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/api-patterns/{rate-limiting.md → references/rate-limiting.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/api-patterns/{response.md → references/response.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/api-patterns/{rest.md → references/rest.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/api-patterns/{security-testing.md → references/security-testing.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/api-patterns/{trpc.md → references/trpc.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/api-patterns/{versioning.md → references/versioning.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/app-builder/{agent-coordination.md → references/agent-coordination.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/app-builder/{feature-building.md → references/feature-building.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/app-builder/{project-detection.md → references/project-detection.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/app-builder/{scaffolding.md → references/scaffolding.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/app-builder/{tech-stack.md → references/tech-stack.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/architecture/{context-discovery.md → docs/context-discovery.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/architecture/{examples.md → docs/examples.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/architecture/{pattern-selection.md → docs/pattern-selection.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/architecture/{patterns-reference.md → docs/patterns-reference.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/architecture/{trade-off-analysis.md → docs/trade-off-analysis.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/brainstorming/{dynamic-questioning.md → references/dynamic-questioning.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/database-design/{database-selection.md → references/database-selection.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/database-design/{indexing.md → references/indexing.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/database-design/{migrations.md → references/migrations.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/database-design/{optimization.md → references/optimization.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/database-design/{orm-selection.md → references/orm-selection.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/database-design/{schema-design.md → references/schema-design.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/database-skills/{README.md → docs/README.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/database-skills/{LATEST_VERSIONS.md → references/LATEST_VERSIONS.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/frontend-design/{animation-guide.md → references/animation-guide.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/frontend-design/{color-system.md → references/color-system.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/frontend-design/{decision-trees.md → references/decision-trees.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/frontend-design/{motion-graphics.md → references/motion-graphics.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/frontend-design/{typography-system.md → references/typography-system.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/frontend-design/{ux-psychology.md → references/ux-psychology.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/frontend-design/{visual-effects.md → references/visual-effects.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/mobile-design/{decision-trees.md → references/decision-trees.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/mobile-design/{mobile-backend.md → references/mobile-backend.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/mobile-design/{mobile-color-system.md → references/mobile-color-system.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/mobile-design/{mobile-debugging.md → references/mobile-debugging.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/mobile-design/{mobile-design-thinking.md → references/mobile-design-thinking.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/mobile-design/{mobile-navigation.md → references/mobile-navigation.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/mobile-design/{mobile-performance.md → references/mobile-performance.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/mobile-design/{mobile-testing.md → references/mobile-testing.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/mobile-design/{mobile-typography.md → references/mobile-typography.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/mobile-design/{platform-android.md → references/platform-android.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/mobile-design/{platform-ios.md → references/platform-ios.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/mobile-design/{touch-psychology.md → references/touch-psychology.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/next-best-practices/{async-patterns.md → references/async-patterns.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/next-best-practices/{bundling.md → references/bundling.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/next-best-practices/{data-patterns.md → references/data-patterns.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/next-best-practices/{debug-tricks.md → references/debug-tricks.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/next-best-practices/{directives.md → references/directives.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/next-best-practices/{error-handling.md → references/error-handling.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/next-best-practices/{file-conventions.md → references/file-conventions.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/next-best-practices/{font.md → references/font.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/next-best-practices/{functions.md → references/functions.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/next-best-practices/{hydration-error.md → references/hydration-error.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/next-best-practices/{image.md → references/image.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/next-best-practices/{metadata.md → references/metadata.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/next-best-practices/{parallel-routes.md → references/parallel-routes.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/next-best-practices/{route-handlers.md → references/route-handlers.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/next-best-practices/{rsc-boundaries.md → references/rsc-boundaries.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/next-best-practices/{runtime-selection.md → references/runtime-selection.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/next-best-practices/{scripts.md → references/scripts.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/next-best-practices/{self-hosting.md → references/self-hosting.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/next-best-practices/{suspense-boundaries.md → references/suspense-boundaries.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/nextjs-react-expert/{1-async-eliminating-waterfalls.md → docs/1-async-eliminating-waterfalls.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/nextjs-react-expert/{2-bundle-bundle-size-optimization.md → docs/2-bundle-bundle-size-optimization.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/nextjs-react-expert/{3-server-server-side-performance.md → docs/3-server-server-side-performance.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/nextjs-react-expert/{4-client-client-side-data-fetching.md → docs/4-client-client-side-data-fetching.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/nextjs-react-expert/{5-rerender-re-render-optimization.md → docs/5-rerender-re-render-optimization.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/nextjs-react-expert/{6-rendering-rendering-performance.md → docs/6-rendering-rendering-performance.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/nextjs-react-expert/{7-js-javascript-performance.md → docs/7-js-javascript-performance.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/nextjs-react-expert/{8-advanced-advanced-patterns.md → docs/8-advanced-advanced-patterns.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/react-best-practices/{AGENTS.md → docs/AGENTS.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/react-best-practices/{README.md → docs/README.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/variant-analysis/{METHODOLOGY.md → references/METHODOLOGY.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/vulnerability-scanner/{checklists.md → docs/checklists.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/api-patterns/{api-style.md → references/api-style.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/api-patterns/{auth.md → references/auth.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/api-patterns/{documentation.md → references/documentation.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/api-patterns/{graphql.md → references/graphql.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/api-patterns/{rate-limiting.md → references/rate-limiting.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/api-patterns/{response.md → references/response.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/api-patterns/{rest.md → references/rest.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/api-patterns/{security-testing.md → references/security-testing.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/api-patterns/{trpc.md → references/trpc.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/api-patterns/{versioning.md → references/versioning.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/app-builder/{agent-coordination.md → references/agent-coordination.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/app-builder/{feature-building.md → references/feature-building.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/app-builder/{project-detection.md → references/project-detection.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/app-builder/{scaffolding.md → references/scaffolding.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/app-builder/{tech-stack.md → references/tech-stack.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/architecture/{context-discovery.md → docs/context-discovery.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/architecture/{examples.md → docs/examples.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/architecture/{pattern-selection.md → docs/pattern-selection.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/architecture/{patterns-reference.md → docs/patterns-reference.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/architecture/{trade-off-analysis.md → docs/trade-off-analysis.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/brainstorming/{dynamic-questioning.md → references/dynamic-questioning.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/database-design/{database-selection.md → references/database-selection.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/database-design/{indexing.md → references/indexing.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/database-design/{migrations.md → references/migrations.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/database-design/{optimization.md → references/optimization.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/database-design/{orm-selection.md → references/orm-selection.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/database-design/{schema-design.md → references/schema-design.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/database-skills/{README.md → docs/README.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/database-skills/{LATEST_VERSIONS.md → references/LATEST_VERSIONS.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/frontend-design/{animation-guide.md → references/animation-guide.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/frontend-design/{color-system.md → references/color-system.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/frontend-design/{decision-trees.md → references/decision-trees.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/frontend-design/{motion-graphics.md → references/motion-graphics.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/frontend-design/{typography-system.md → references/typography-system.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/frontend-design/{ux-psychology.md → references/ux-psychology.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/frontend-design/{visual-effects.md → references/visual-effects.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/mobile-design/{decision-trees.md → references/decision-trees.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/mobile-design/{mobile-backend.md → references/mobile-backend.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/mobile-design/{mobile-color-system.md → references/mobile-color-system.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/mobile-design/{mobile-debugging.md → references/mobile-debugging.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/mobile-design/{mobile-design-thinking.md → references/mobile-design-thinking.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/mobile-design/{mobile-navigation.md → references/mobile-navigation.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/mobile-design/{mobile-performance.md → references/mobile-performance.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/mobile-design/{mobile-testing.md → references/mobile-testing.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/mobile-design/{mobile-typography.md → references/mobile-typography.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/mobile-design/{platform-android.md → references/platform-android.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/mobile-design/{platform-ios.md → references/platform-ios.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/mobile-design/{touch-psychology.md → references/touch-psychology.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/next-best-practices/{async-patterns.md → references/async-patterns.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/next-best-practices/{bundling.md → references/bundling.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/next-best-practices/{data-patterns.md → references/data-patterns.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/next-best-practices/{debug-tricks.md → references/debug-tricks.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/next-best-practices/{directives.md → references/directives.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/next-best-practices/{error-handling.md → references/error-handling.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/next-best-practices/{file-conventions.md → references/file-conventions.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/next-best-practices/{font.md → references/font.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/next-best-practices/{functions.md → references/functions.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/next-best-practices/{hydration-error.md → references/hydration-error.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/next-best-practices/{image.md → references/image.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/next-best-practices/{metadata.md → references/metadata.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/next-best-practices/{parallel-routes.md → references/parallel-routes.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/next-best-practices/{route-handlers.md → references/route-handlers.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/next-best-practices/{rsc-boundaries.md → references/rsc-boundaries.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/next-best-practices/{runtime-selection.md → references/runtime-selection.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/next-best-practices/{scripts.md → references/scripts.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/next-best-practices/{self-hosting.md → references/self-hosting.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/next-best-practices/{suspense-boundaries.md → references/suspense-boundaries.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/nextjs-react-expert/{1-async-eliminating-waterfalls.md → docs/1-async-eliminating-waterfalls.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/nextjs-react-expert/{2-bundle-bundle-size-optimization.md → docs/2-bundle-bundle-size-optimization.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/nextjs-react-expert/{3-server-server-side-performance.md → docs/3-server-server-side-performance.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/nextjs-react-expert/{4-client-client-side-data-fetching.md → docs/4-client-client-side-data-fetching.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/nextjs-react-expert/{5-rerender-re-render-optimization.md → docs/5-rerender-re-render-optimization.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/nextjs-react-expert/{6-rendering-rendering-performance.md → docs/6-rendering-rendering-performance.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/nextjs-react-expert/{7-js-javascript-performance.md → docs/7-js-javascript-performance.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/nextjs-react-expert/{8-advanced-advanced-patterns.md → docs/8-advanced-advanced-patterns.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/react-best-practices/{AGENTS.md → docs/AGENTS.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/react-best-practices/{README.md → docs/README.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/variant-analysis/{METHODOLOGY.md → references/METHODOLOGY.md} +0 -0
- /package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/vulnerability-scanner/{checklists.md → docs/checklists.md} +0 -0
|
@@ -0,0 +1,1604 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "cubis-foundry-route-manifest-v1",
|
|
3
|
+
"generatedAt": "1970-01-01T00:00:00.000Z",
|
|
4
|
+
"contentHash": "5e9a656741869ebe",
|
|
5
|
+
"summary": {
|
|
6
|
+
"totalRoutes": 40,
|
|
7
|
+
"workflows": 19,
|
|
8
|
+
"agents": 21
|
|
9
|
+
},
|
|
10
|
+
"routes": [
|
|
11
|
+
{
|
|
12
|
+
"kind": "agent",
|
|
13
|
+
"id": "backend-specialist",
|
|
14
|
+
"command": null,
|
|
15
|
+
"displayName": "backend-specialist",
|
|
16
|
+
"description": "Backend specialist for API contracts, service logic, schema-aware backend changes, and auth-sensitive implementation. Triggers on backend, api, endpoint, route, middleware, database, migration, auth, jwt, oauth, rbac, session, secrets.",
|
|
17
|
+
"triggers": [
|
|
18
|
+
"backend",
|
|
19
|
+
"api",
|
|
20
|
+
"endpoint",
|
|
21
|
+
"route",
|
|
22
|
+
"middleware",
|
|
23
|
+
"database",
|
|
24
|
+
"migration",
|
|
25
|
+
"auth",
|
|
26
|
+
"jwt",
|
|
27
|
+
"oauth",
|
|
28
|
+
"rbac",
|
|
29
|
+
"session",
|
|
30
|
+
"secrets"
|
|
31
|
+
],
|
|
32
|
+
"primaryAgent": "backend-specialist",
|
|
33
|
+
"supportingAgents": [],
|
|
34
|
+
"primarySkills": [
|
|
35
|
+
"api-designer",
|
|
36
|
+
"nodejs-best-practices"
|
|
37
|
+
],
|
|
38
|
+
"supportingSkills": [
|
|
39
|
+
"database-skills",
|
|
40
|
+
"secure-code-guardian",
|
|
41
|
+
"api-patterns"
|
|
42
|
+
],
|
|
43
|
+
"artifacts": {
|
|
44
|
+
"codex": {
|
|
45
|
+
"agentFile": "backend-specialist.md",
|
|
46
|
+
"compatibilityAlias": "$agent-backend-specialist"
|
|
47
|
+
},
|
|
48
|
+
"copilot": {
|
|
49
|
+
"agentFile": "backend-specialist.md"
|
|
50
|
+
},
|
|
51
|
+
"antigravity": {
|
|
52
|
+
"agentFile": "backend-specialist.md"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"kind": "agent",
|
|
58
|
+
"id": "code-archaeologist",
|
|
59
|
+
"command": null,
|
|
60
|
+
"displayName": "code-archaeologist",
|
|
61
|
+
"description": "Expert in legacy code, refactoring, and understanding undocumented systems. Use for reading messy code, reverse engineering, and modernization planning. Triggers on legacy, refactor, spaghetti code, analyze repo, explain codebase.",
|
|
62
|
+
"triggers": [
|
|
63
|
+
"legacy",
|
|
64
|
+
"refactor",
|
|
65
|
+
"spaghetti code",
|
|
66
|
+
"analyze repo",
|
|
67
|
+
"explain codebase"
|
|
68
|
+
],
|
|
69
|
+
"primaryAgent": "code-archaeologist",
|
|
70
|
+
"supportingAgents": [],
|
|
71
|
+
"primarySkills": [
|
|
72
|
+
"spec-miner",
|
|
73
|
+
"legacy-modernizer"
|
|
74
|
+
],
|
|
75
|
+
"supportingSkills": [
|
|
76
|
+
"refactor",
|
|
77
|
+
"skill-authoring"
|
|
78
|
+
],
|
|
79
|
+
"artifacts": {
|
|
80
|
+
"codex": {
|
|
81
|
+
"agentFile": "code-archaeologist.md",
|
|
82
|
+
"compatibilityAlias": "$agent-code-archaeologist"
|
|
83
|
+
},
|
|
84
|
+
"copilot": {
|
|
85
|
+
"agentFile": "code-archaeologist.md"
|
|
86
|
+
},
|
|
87
|
+
"antigravity": {
|
|
88
|
+
"agentFile": "code-archaeologist.md"
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"kind": "agent",
|
|
94
|
+
"id": "database-architect",
|
|
95
|
+
"command": null,
|
|
96
|
+
"displayName": "database-architect",
|
|
97
|
+
"description": "Expert database architect for schema design, query optimization, migrations, and modern serverless databases. Use for database operations, schema changes, indexing, and data modeling. Triggers on database, sql, schema, migration, query, postgres, index, table.",
|
|
98
|
+
"triggers": [
|
|
99
|
+
"database",
|
|
100
|
+
"sql",
|
|
101
|
+
"schema",
|
|
102
|
+
"migration",
|
|
103
|
+
"query",
|
|
104
|
+
"postgres",
|
|
105
|
+
"index",
|
|
106
|
+
"table"
|
|
107
|
+
],
|
|
108
|
+
"primaryAgent": "database-architect",
|
|
109
|
+
"supportingAgents": [],
|
|
110
|
+
"primarySkills": [
|
|
111
|
+
"database-skills",
|
|
112
|
+
"database-design"
|
|
113
|
+
],
|
|
114
|
+
"supportingSkills": [
|
|
115
|
+
"database-optimizer"
|
|
116
|
+
],
|
|
117
|
+
"artifacts": {
|
|
118
|
+
"codex": {
|
|
119
|
+
"agentFile": "database-architect.md",
|
|
120
|
+
"compatibilityAlias": "$agent-database-architect"
|
|
121
|
+
},
|
|
122
|
+
"copilot": {
|
|
123
|
+
"agentFile": "database-architect.md"
|
|
124
|
+
},
|
|
125
|
+
"antigravity": {
|
|
126
|
+
"agentFile": "database-architect.md"
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"kind": "agent",
|
|
132
|
+
"id": "debugger",
|
|
133
|
+
"command": null,
|
|
134
|
+
"displayName": "debugger",
|
|
135
|
+
"description": "Expert in systematic debugging, root cause analysis, and crash investigation. Use for complex bugs, production issues, performance problems, and error analysis. Triggers on bug, error, crash, not working, broken, investigate, fix.",
|
|
136
|
+
"triggers": [
|
|
137
|
+
"bug",
|
|
138
|
+
"error",
|
|
139
|
+
"crash",
|
|
140
|
+
"not working",
|
|
141
|
+
"broken",
|
|
142
|
+
"investigate",
|
|
143
|
+
"fix"
|
|
144
|
+
],
|
|
145
|
+
"primaryAgent": "debugger",
|
|
146
|
+
"supportingAgents": [],
|
|
147
|
+
"primarySkills": [
|
|
148
|
+
"systematic-debugging",
|
|
149
|
+
"find-bugs"
|
|
150
|
+
],
|
|
151
|
+
"supportingSkills": [
|
|
152
|
+
"monitoring-expert"
|
|
153
|
+
],
|
|
154
|
+
"artifacts": {
|
|
155
|
+
"codex": {
|
|
156
|
+
"agentFile": "debugger.md",
|
|
157
|
+
"compatibilityAlias": "$agent-debugger"
|
|
158
|
+
},
|
|
159
|
+
"copilot": {
|
|
160
|
+
"agentFile": "debugger.md"
|
|
161
|
+
},
|
|
162
|
+
"antigravity": {
|
|
163
|
+
"agentFile": "debugger.md"
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"kind": "agent",
|
|
169
|
+
"id": "devops-engineer",
|
|
170
|
+
"command": null,
|
|
171
|
+
"displayName": "devops-engineer",
|
|
172
|
+
"description": "Expert in deployment, server management, CI/CD, and production operations. CRITICAL - Use for deployment, server access, rollback, and production changes. HIGH RISK operations. Triggers on deploy, production, server, pm2, ssh, release, rollback, ci/cd.",
|
|
173
|
+
"triggers": [
|
|
174
|
+
"deploy",
|
|
175
|
+
"production",
|
|
176
|
+
"server",
|
|
177
|
+
"pm2",
|
|
178
|
+
"ssh",
|
|
179
|
+
"release",
|
|
180
|
+
"rollback",
|
|
181
|
+
"ci/cd"
|
|
182
|
+
],
|
|
183
|
+
"primaryAgent": "devops-engineer",
|
|
184
|
+
"supportingAgents": [],
|
|
185
|
+
"primarySkills": [
|
|
186
|
+
"devops-engineer",
|
|
187
|
+
"sre-engineer"
|
|
188
|
+
],
|
|
189
|
+
"supportingSkills": [
|
|
190
|
+
"monitoring-expert"
|
|
191
|
+
],
|
|
192
|
+
"artifacts": {
|
|
193
|
+
"codex": {
|
|
194
|
+
"agentFile": "devops-engineer.md",
|
|
195
|
+
"compatibilityAlias": "$agent-devops-engineer"
|
|
196
|
+
},
|
|
197
|
+
"copilot": {
|
|
198
|
+
"agentFile": "devops-engineer.md"
|
|
199
|
+
},
|
|
200
|
+
"antigravity": {
|
|
201
|
+
"agentFile": "devops-engineer.md"
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"kind": "agent",
|
|
207
|
+
"id": "documentation-writer",
|
|
208
|
+
"command": null,
|
|
209
|
+
"displayName": "documentation-writer",
|
|
210
|
+
"description": "Expert in technical documentation. Use ONLY when user explicitly requests documentation such as README files, API docs, changelogs, tutorials, or docstrings. DO NOT auto-invoke during normal development. Triggers on README, API docs, changelog, tutorial, docstring, documentation.",
|
|
211
|
+
"triggers": [
|
|
212
|
+
"README",
|
|
213
|
+
"API docs",
|
|
214
|
+
"changelog",
|
|
215
|
+
"tutorial",
|
|
216
|
+
"docstring",
|
|
217
|
+
"documentation"
|
|
218
|
+
],
|
|
219
|
+
"primaryAgent": "documentation-writer",
|
|
220
|
+
"supportingAgents": [],
|
|
221
|
+
"primarySkills": [
|
|
222
|
+
"code-documenter",
|
|
223
|
+
"documentation-templates"
|
|
224
|
+
],
|
|
225
|
+
"supportingSkills": [],
|
|
226
|
+
"artifacts": {
|
|
227
|
+
"codex": {
|
|
228
|
+
"agentFile": "documentation-writer.md",
|
|
229
|
+
"compatibilityAlias": "$agent-documentation-writer"
|
|
230
|
+
},
|
|
231
|
+
"copilot": {
|
|
232
|
+
"agentFile": "documentation-writer.md"
|
|
233
|
+
},
|
|
234
|
+
"antigravity": {
|
|
235
|
+
"agentFile": "documentation-writer.md"
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"kind": "agent",
|
|
241
|
+
"id": "explorer-agent",
|
|
242
|
+
"command": null,
|
|
243
|
+
"displayName": "explorer-agent",
|
|
244
|
+
"description": "Advanced codebase discovery, deep architectural analysis, and proactive research agent. The eyes and ears of the framework. Use for initial audits, refactoring plans, dependency mapping, and deep investigative tasks. Triggers on audit, map repo, explore codebase, legacy analysis, undocumented behavior, feasibility.",
|
|
245
|
+
"triggers": [
|
|
246
|
+
"audit",
|
|
247
|
+
"map repo",
|
|
248
|
+
"explore codebase",
|
|
249
|
+
"legacy analysis",
|
|
250
|
+
"undocumented behavior",
|
|
251
|
+
"feasibility"
|
|
252
|
+
],
|
|
253
|
+
"primaryAgent": "explorer-agent",
|
|
254
|
+
"supportingAgents": [],
|
|
255
|
+
"primarySkills": [
|
|
256
|
+
"spec-miner",
|
|
257
|
+
"architecture-designer"
|
|
258
|
+
],
|
|
259
|
+
"supportingSkills": [],
|
|
260
|
+
"artifacts": {
|
|
261
|
+
"codex": {
|
|
262
|
+
"agentFile": "explorer-agent.md",
|
|
263
|
+
"compatibilityAlias": "$agent-explorer-agent"
|
|
264
|
+
},
|
|
265
|
+
"copilot": {
|
|
266
|
+
"agentFile": "explorer-agent.md"
|
|
267
|
+
},
|
|
268
|
+
"antigravity": {
|
|
269
|
+
"agentFile": "explorer-agent.md"
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"kind": "agent",
|
|
275
|
+
"id": "frontend-specialist",
|
|
276
|
+
"command": null,
|
|
277
|
+
"displayName": "frontend-specialist",
|
|
278
|
+
"description": "Senior Frontend Architect who builds maintainable React/Next.js systems with a performance-first mindset. Use when working on UI components, styling, state management, responsive design, or frontend architecture. Triggers on component, react, next, ui, ux, css, tailwind, responsive, app router.",
|
|
279
|
+
"triggers": [
|
|
280
|
+
"component",
|
|
281
|
+
"react",
|
|
282
|
+
"next",
|
|
283
|
+
"ui",
|
|
284
|
+
"ux",
|
|
285
|
+
"css",
|
|
286
|
+
"tailwind",
|
|
287
|
+
"responsive",
|
|
288
|
+
"app router"
|
|
289
|
+
],
|
|
290
|
+
"primaryAgent": "frontend-specialist",
|
|
291
|
+
"supportingAgents": [],
|
|
292
|
+
"primarySkills": [
|
|
293
|
+
"react-expert",
|
|
294
|
+
"nextjs-developer"
|
|
295
|
+
],
|
|
296
|
+
"supportingSkills": [
|
|
297
|
+
"frontend-design",
|
|
298
|
+
"accessibility"
|
|
299
|
+
],
|
|
300
|
+
"artifacts": {
|
|
301
|
+
"codex": {
|
|
302
|
+
"agentFile": "frontend-specialist.md",
|
|
303
|
+
"compatibilityAlias": "$agent-frontend-specialist"
|
|
304
|
+
},
|
|
305
|
+
"copilot": {
|
|
306
|
+
"agentFile": "frontend-specialist.md"
|
|
307
|
+
},
|
|
308
|
+
"antigravity": {
|
|
309
|
+
"agentFile": "frontend-specialist.md"
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"kind": "agent",
|
|
315
|
+
"id": "game-developer",
|
|
316
|
+
"command": null,
|
|
317
|
+
"displayName": "game-developer",
|
|
318
|
+
"description": "Game development across all platforms (PC, Web, Mobile, VR/AR). Use when building games with Unity, Godot, Unreal, Phaser, Three.js, or similar engines. Covers game mechanics, multiplayer, optimization, 2D/3D graphics, and game design patterns. Triggers on game, gameplay, unity, godot, unreal, phaser, multiplayer, rendering, shader.",
|
|
319
|
+
"triggers": [
|
|
320
|
+
"game",
|
|
321
|
+
"gameplay",
|
|
322
|
+
"unity",
|
|
323
|
+
"godot",
|
|
324
|
+
"unreal",
|
|
325
|
+
"phaser",
|
|
326
|
+
"multiplayer",
|
|
327
|
+
"rendering",
|
|
328
|
+
"shader"
|
|
329
|
+
],
|
|
330
|
+
"primaryAgent": "game-developer",
|
|
331
|
+
"supportingAgents": [],
|
|
332
|
+
"primarySkills": [
|
|
333
|
+
"game-development",
|
|
334
|
+
"javascript-pro"
|
|
335
|
+
],
|
|
336
|
+
"supportingSkills": [],
|
|
337
|
+
"artifacts": {
|
|
338
|
+
"codex": {
|
|
339
|
+
"agentFile": "game-developer.md",
|
|
340
|
+
"compatibilityAlias": "$agent-game-developer"
|
|
341
|
+
},
|
|
342
|
+
"copilot": {
|
|
343
|
+
"agentFile": "game-developer.md"
|
|
344
|
+
},
|
|
345
|
+
"antigravity": {
|
|
346
|
+
"agentFile": "game-developer.md"
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
"kind": "agent",
|
|
352
|
+
"id": "mobile-developer",
|
|
353
|
+
"command": null,
|
|
354
|
+
"displayName": "mobile-developer",
|
|
355
|
+
"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.",
|
|
356
|
+
"triggers": [
|
|
357
|
+
"mobile",
|
|
358
|
+
"flutter",
|
|
359
|
+
"ios",
|
|
360
|
+
"android",
|
|
361
|
+
"app store",
|
|
362
|
+
"play store",
|
|
363
|
+
"touch UX"
|
|
364
|
+
],
|
|
365
|
+
"primaryAgent": "mobile-developer",
|
|
366
|
+
"supportingAgents": [],
|
|
367
|
+
"primarySkills": [
|
|
368
|
+
"mobile-design",
|
|
369
|
+
"flutter-expert"
|
|
370
|
+
],
|
|
371
|
+
"supportingSkills": [
|
|
372
|
+
"flutter-test-master",
|
|
373
|
+
"react-expert"
|
|
374
|
+
],
|
|
375
|
+
"artifacts": {
|
|
376
|
+
"codex": {
|
|
377
|
+
"agentFile": "mobile-developer.md",
|
|
378
|
+
"compatibilityAlias": "$agent-mobile-developer"
|
|
379
|
+
},
|
|
380
|
+
"copilot": {
|
|
381
|
+
"agentFile": "mobile-developer.md"
|
|
382
|
+
},
|
|
383
|
+
"antigravity": {
|
|
384
|
+
"agentFile": "mobile-developer.md"
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"kind": "agent",
|
|
390
|
+
"id": "orchestrator",
|
|
391
|
+
"command": null,
|
|
392
|
+
"displayName": "orchestrator",
|
|
393
|
+
"description": "Multi-agent coordination and task orchestration. Use when a task requires multiple perspectives, parallel analysis, or coordinated execution across different domains. Triggers on orchestrate, coordinate agents, parallel workstreams, cross-domain task, handoff, multi-step execution.",
|
|
394
|
+
"triggers": [
|
|
395
|
+
"orchestrate",
|
|
396
|
+
"coordinate agents",
|
|
397
|
+
"parallel workstreams",
|
|
398
|
+
"cross-domain task",
|
|
399
|
+
"handoff",
|
|
400
|
+
"multi-step execution"
|
|
401
|
+
],
|
|
402
|
+
"primaryAgent": "orchestrator",
|
|
403
|
+
"supportingAgents": [],
|
|
404
|
+
"primarySkills": [
|
|
405
|
+
"parallel-agents",
|
|
406
|
+
"plan-writing"
|
|
407
|
+
],
|
|
408
|
+
"supportingSkills": [
|
|
409
|
+
"architecture-designer",
|
|
410
|
+
"skill-authoring"
|
|
411
|
+
],
|
|
412
|
+
"artifacts": {
|
|
413
|
+
"codex": {
|
|
414
|
+
"agentFile": "orchestrator.md",
|
|
415
|
+
"compatibilityAlias": "$agent-orchestrator"
|
|
416
|
+
},
|
|
417
|
+
"copilot": {
|
|
418
|
+
"agentFile": "orchestrator.md"
|
|
419
|
+
},
|
|
420
|
+
"antigravity": {
|
|
421
|
+
"agentFile": "orchestrator.md"
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"kind": "agent",
|
|
427
|
+
"id": "penetration-tester",
|
|
428
|
+
"command": null,
|
|
429
|
+
"displayName": "penetration-tester",
|
|
430
|
+
"description": "Expert in offensive security, penetration testing, red team operations, and vulnerability exploitation. Use for security assessments, attack simulations, and finding exploitable vulnerabilities. Triggers on pentest, exploit, attack, hack, breach, pwn, redteam, offensive.",
|
|
431
|
+
"triggers": [
|
|
432
|
+
"pentest",
|
|
433
|
+
"exploit",
|
|
434
|
+
"attack",
|
|
435
|
+
"hack",
|
|
436
|
+
"breach",
|
|
437
|
+
"pwn",
|
|
438
|
+
"redteam",
|
|
439
|
+
"offensive"
|
|
440
|
+
],
|
|
441
|
+
"primaryAgent": "penetration-tester",
|
|
442
|
+
"supportingAgents": [],
|
|
443
|
+
"primarySkills": [
|
|
444
|
+
"security-reviewer",
|
|
445
|
+
"semgrep"
|
|
446
|
+
],
|
|
447
|
+
"supportingSkills": [
|
|
448
|
+
"static-analysis"
|
|
449
|
+
],
|
|
450
|
+
"artifacts": {
|
|
451
|
+
"codex": {
|
|
452
|
+
"agentFile": "penetration-tester.md",
|
|
453
|
+
"compatibilityAlias": "$agent-penetration-tester"
|
|
454
|
+
},
|
|
455
|
+
"copilot": {
|
|
456
|
+
"agentFile": "penetration-tester.md"
|
|
457
|
+
},
|
|
458
|
+
"antigravity": {
|
|
459
|
+
"agentFile": "penetration-tester.md"
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"kind": "agent",
|
|
465
|
+
"id": "performance-optimizer",
|
|
466
|
+
"command": null,
|
|
467
|
+
"displayName": "performance-optimizer",
|
|
468
|
+
"description": "Expert in performance optimization, profiling, Core Web Vitals, and bundle optimization. Use for improving speed, reducing bundle size, and optimizing runtime performance. Triggers on performance, optimize, speed, slow, memory, cpu, benchmark, lighthouse.",
|
|
469
|
+
"triggers": [
|
|
470
|
+
"performance",
|
|
471
|
+
"optimize",
|
|
472
|
+
"speed",
|
|
473
|
+
"slow",
|
|
474
|
+
"memory",
|
|
475
|
+
"cpu",
|
|
476
|
+
"benchmark",
|
|
477
|
+
"lighthouse"
|
|
478
|
+
],
|
|
479
|
+
"primaryAgent": "performance-optimizer",
|
|
480
|
+
"supportingAgents": [],
|
|
481
|
+
"primarySkills": [
|
|
482
|
+
"performance-profiling",
|
|
483
|
+
"web-perf"
|
|
484
|
+
],
|
|
485
|
+
"supportingSkills": [],
|
|
486
|
+
"artifacts": {
|
|
487
|
+
"codex": {
|
|
488
|
+
"agentFile": "performance-optimizer.md",
|
|
489
|
+
"compatibilityAlias": "$agent-performance-optimizer"
|
|
490
|
+
},
|
|
491
|
+
"copilot": {
|
|
492
|
+
"agentFile": "performance-optimizer.md"
|
|
493
|
+
},
|
|
494
|
+
"antigravity": {
|
|
495
|
+
"agentFile": "performance-optimizer.md"
|
|
496
|
+
}
|
|
497
|
+
}
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"kind": "agent",
|
|
501
|
+
"id": "product-manager",
|
|
502
|
+
"command": null,
|
|
503
|
+
"displayName": "product-manager",
|
|
504
|
+
"description": "Expert in product requirements, user stories, and acceptance criteria. Use for defining features, clarifying ambiguity, writing PRDs, and turning requests into testable outcomes. Triggers on requirements, user story, acceptance criteria, PRD, feature definition, scope clarification.",
|
|
505
|
+
"triggers": [
|
|
506
|
+
"requirements",
|
|
507
|
+
"user story",
|
|
508
|
+
"acceptance criteria",
|
|
509
|
+
"PRD",
|
|
510
|
+
"feature definition",
|
|
511
|
+
"scope clarification"
|
|
512
|
+
],
|
|
513
|
+
"primaryAgent": "product-manager",
|
|
514
|
+
"supportingAgents": [],
|
|
515
|
+
"primarySkills": [
|
|
516
|
+
"feature-forge",
|
|
517
|
+
"plan-writing"
|
|
518
|
+
],
|
|
519
|
+
"supportingSkills": [],
|
|
520
|
+
"artifacts": {
|
|
521
|
+
"codex": {
|
|
522
|
+
"agentFile": "product-manager.md",
|
|
523
|
+
"compatibilityAlias": "$agent-product-manager"
|
|
524
|
+
},
|
|
525
|
+
"copilot": {
|
|
526
|
+
"agentFile": "product-manager.md"
|
|
527
|
+
},
|
|
528
|
+
"antigravity": {
|
|
529
|
+
"agentFile": "product-manager.md"
|
|
530
|
+
}
|
|
531
|
+
}
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"kind": "agent",
|
|
535
|
+
"id": "product-owner",
|
|
536
|
+
"command": null,
|
|
537
|
+
"displayName": "product-owner",
|
|
538
|
+
"description": "Strategic facilitator bridging business needs and technical execution. Use for backlog grooming, roadmap tradeoffs, release prioritization, and stakeholder-facing scope governance. Triggers on backlog, roadmap, prioritization, MVP scope, stakeholder alignment, release planning.",
|
|
539
|
+
"triggers": [
|
|
540
|
+
"backlog",
|
|
541
|
+
"roadmap",
|
|
542
|
+
"prioritization",
|
|
543
|
+
"MVP scope",
|
|
544
|
+
"stakeholder alignment",
|
|
545
|
+
"release planning"
|
|
546
|
+
],
|
|
547
|
+
"primaryAgent": "product-owner",
|
|
548
|
+
"supportingAgents": [],
|
|
549
|
+
"primarySkills": [
|
|
550
|
+
"feature-forge",
|
|
551
|
+
"plan-writing"
|
|
552
|
+
],
|
|
553
|
+
"supportingSkills": [],
|
|
554
|
+
"artifacts": {
|
|
555
|
+
"codex": {
|
|
556
|
+
"agentFile": "product-owner.md",
|
|
557
|
+
"compatibilityAlias": "$agent-product-owner"
|
|
558
|
+
},
|
|
559
|
+
"copilot": {
|
|
560
|
+
"agentFile": "product-owner.md"
|
|
561
|
+
},
|
|
562
|
+
"antigravity": {
|
|
563
|
+
"agentFile": "product-owner.md"
|
|
564
|
+
}
|
|
565
|
+
}
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"kind": "agent",
|
|
569
|
+
"id": "project-planner",
|
|
570
|
+
"command": null,
|
|
571
|
+
"displayName": "project-planner",
|
|
572
|
+
"description": "Smart project planning agent. Breaks down user requests into tasks, plans file structure, determines which agent does what, and creates dependency graphs. Use when starting new projects or planning major features. Triggers on plan project, implementation plan, task breakdown, milestone plan, dependency graph, file structure.",
|
|
573
|
+
"triggers": [
|
|
574
|
+
"plan project",
|
|
575
|
+
"implementation plan",
|
|
576
|
+
"task breakdown",
|
|
577
|
+
"milestone plan",
|
|
578
|
+
"dependency graph",
|
|
579
|
+
"file structure"
|
|
580
|
+
],
|
|
581
|
+
"primaryAgent": "project-planner",
|
|
582
|
+
"supportingAgents": [],
|
|
583
|
+
"primarySkills": [
|
|
584
|
+
"app-builder",
|
|
585
|
+
"plan-writing"
|
|
586
|
+
],
|
|
587
|
+
"supportingSkills": [
|
|
588
|
+
"architecture-designer",
|
|
589
|
+
"skill-authoring"
|
|
590
|
+
],
|
|
591
|
+
"artifacts": {
|
|
592
|
+
"codex": {
|
|
593
|
+
"agentFile": "project-planner.md",
|
|
594
|
+
"compatibilityAlias": "$agent-project-planner"
|
|
595
|
+
},
|
|
596
|
+
"copilot": {
|
|
597
|
+
"agentFile": "project-planner.md"
|
|
598
|
+
},
|
|
599
|
+
"antigravity": {
|
|
600
|
+
"agentFile": "project-planner.md"
|
|
601
|
+
}
|
|
602
|
+
}
|
|
603
|
+
},
|
|
604
|
+
{
|
|
605
|
+
"kind": "agent",
|
|
606
|
+
"id": "qa-automation-engineer",
|
|
607
|
+
"command": null,
|
|
608
|
+
"displayName": "qa-automation-engineer",
|
|
609
|
+
"description": "Specialist in test automation infrastructure and E2E testing. Focuses on Playwright, Cypress, CI pipelines, and breaking the system. Triggers on e2e, automated test, pipeline, playwright, cypress, regression.",
|
|
610
|
+
"triggers": [
|
|
611
|
+
"e2e",
|
|
612
|
+
"automated test",
|
|
613
|
+
"pipeline",
|
|
614
|
+
"playwright",
|
|
615
|
+
"cypress",
|
|
616
|
+
"regression"
|
|
617
|
+
],
|
|
618
|
+
"primaryAgent": "qa-automation-engineer",
|
|
619
|
+
"supportingAgents": [],
|
|
620
|
+
"primarySkills": [
|
|
621
|
+
"playwright-expert",
|
|
622
|
+
"webapp-testing"
|
|
623
|
+
],
|
|
624
|
+
"supportingSkills": [
|
|
625
|
+
"test-master"
|
|
626
|
+
],
|
|
627
|
+
"artifacts": {
|
|
628
|
+
"codex": {
|
|
629
|
+
"agentFile": "qa-automation-engineer.md",
|
|
630
|
+
"compatibilityAlias": "$agent-qa-automation-engineer"
|
|
631
|
+
},
|
|
632
|
+
"copilot": {
|
|
633
|
+
"agentFile": "qa-automation-engineer.md"
|
|
634
|
+
},
|
|
635
|
+
"antigravity": {
|
|
636
|
+
"agentFile": "qa-automation-engineer.md"
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
"kind": "agent",
|
|
642
|
+
"id": "security-auditor",
|
|
643
|
+
"command": null,
|
|
644
|
+
"displayName": "security-auditor",
|
|
645
|
+
"description": "Elite cybersecurity expert. Think like an attacker, defend like an expert. OWASP 2025, supply chain security, zero trust architecture. Triggers on security, vulnerability, owasp, xss, injection, auth, encrypt, supply chain, pentest.",
|
|
646
|
+
"triggers": [
|
|
647
|
+
"security",
|
|
648
|
+
"vulnerability",
|
|
649
|
+
"owasp",
|
|
650
|
+
"xss",
|
|
651
|
+
"injection",
|
|
652
|
+
"auth",
|
|
653
|
+
"encrypt",
|
|
654
|
+
"supply chain",
|
|
655
|
+
"pentest"
|
|
656
|
+
],
|
|
657
|
+
"primaryAgent": "security-auditor",
|
|
658
|
+
"supportingAgents": [],
|
|
659
|
+
"primarySkills": [
|
|
660
|
+
"security-reviewer",
|
|
661
|
+
"semgrep"
|
|
662
|
+
],
|
|
663
|
+
"supportingSkills": [
|
|
664
|
+
"variant-analysis"
|
|
665
|
+
],
|
|
666
|
+
"artifacts": {
|
|
667
|
+
"codex": {
|
|
668
|
+
"agentFile": "security-auditor.md",
|
|
669
|
+
"compatibilityAlias": "$agent-security-auditor"
|
|
670
|
+
},
|
|
671
|
+
"copilot": {
|
|
672
|
+
"agentFile": "security-auditor.md"
|
|
673
|
+
},
|
|
674
|
+
"antigravity": {
|
|
675
|
+
"agentFile": "security-auditor.md"
|
|
676
|
+
}
|
|
677
|
+
}
|
|
678
|
+
},
|
|
679
|
+
{
|
|
680
|
+
"kind": "agent",
|
|
681
|
+
"id": "seo-specialist",
|
|
682
|
+
"command": null,
|
|
683
|
+
"displayName": "seo-specialist",
|
|
684
|
+
"description": "SEO and GEO (Generative Engine Optimization) expert. Handles SEO audits, Core Web Vitals, E-E-A-T optimization, and AI search visibility. Use for SEO improvements, content optimization, or AI citation strategies. Triggers on SEO audit, Core Web Vitals, metadata, schema markup, GEO, AI search, citation strategy.",
|
|
685
|
+
"triggers": [
|
|
686
|
+
"SEO audit",
|
|
687
|
+
"Core Web Vitals",
|
|
688
|
+
"metadata",
|
|
689
|
+
"schema markup",
|
|
690
|
+
"GEO",
|
|
691
|
+
"AI search",
|
|
692
|
+
"citation strategy"
|
|
693
|
+
],
|
|
694
|
+
"primaryAgent": "seo-specialist",
|
|
695
|
+
"supportingAgents": [],
|
|
696
|
+
"primarySkills": [
|
|
697
|
+
"seo-fundamentals",
|
|
698
|
+
"geo-fundamentals"
|
|
699
|
+
],
|
|
700
|
+
"supportingSkills": [
|
|
701
|
+
"web-perf"
|
|
702
|
+
],
|
|
703
|
+
"artifacts": {
|
|
704
|
+
"codex": {
|
|
705
|
+
"agentFile": "seo-specialist.md",
|
|
706
|
+
"compatibilityAlias": "$agent-seo-specialist"
|
|
707
|
+
},
|
|
708
|
+
"copilot": {
|
|
709
|
+
"agentFile": "seo-specialist.md"
|
|
710
|
+
},
|
|
711
|
+
"antigravity": {
|
|
712
|
+
"agentFile": "seo-specialist.md"
|
|
713
|
+
}
|
|
714
|
+
}
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"kind": "agent",
|
|
718
|
+
"id": "test-engineer",
|
|
719
|
+
"command": null,
|
|
720
|
+
"displayName": "test-engineer",
|
|
721
|
+
"description": "Expert in testing, TDD, and test automation. Use for writing tests, improving coverage, debugging test failures. Triggers on test, spec, coverage, jest, pytest, playwright, e2e, unit test.",
|
|
722
|
+
"triggers": [
|
|
723
|
+
"test",
|
|
724
|
+
"spec",
|
|
725
|
+
"coverage",
|
|
726
|
+
"jest",
|
|
727
|
+
"pytest",
|
|
728
|
+
"playwright",
|
|
729
|
+
"e2e",
|
|
730
|
+
"unit test"
|
|
731
|
+
],
|
|
732
|
+
"primaryAgent": "test-engineer",
|
|
733
|
+
"supportingAgents": [],
|
|
734
|
+
"primarySkills": [
|
|
735
|
+
"test-master",
|
|
736
|
+
"playwright-expert"
|
|
737
|
+
],
|
|
738
|
+
"supportingSkills": [
|
|
739
|
+
"flutter-test-master"
|
|
740
|
+
],
|
|
741
|
+
"artifacts": {
|
|
742
|
+
"codex": {
|
|
743
|
+
"agentFile": "test-engineer.md",
|
|
744
|
+
"compatibilityAlias": "$agent-test-engineer"
|
|
745
|
+
},
|
|
746
|
+
"copilot": {
|
|
747
|
+
"agentFile": "test-engineer.md"
|
|
748
|
+
},
|
|
749
|
+
"antigravity": {
|
|
750
|
+
"agentFile": "test-engineer.md"
|
|
751
|
+
}
|
|
752
|
+
}
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
"kind": "agent",
|
|
756
|
+
"id": "vercel-expert",
|
|
757
|
+
"command": null,
|
|
758
|
+
"displayName": "vercel-expert",
|
|
759
|
+
"description": "Expert in Vercel platform delivery, runtime behavior, security controls, observability, and automation. Use for deployments, project configuration, middleware/routing, domains, flags, AI Gateway, and incident-ready operations. Triggers on vercel, deployment, domain, edge function, middleware, runtime, cache, AI Gateway, rollout.",
|
|
760
|
+
"triggers": [
|
|
761
|
+
"vercel",
|
|
762
|
+
"deployment",
|
|
763
|
+
"domain",
|
|
764
|
+
"edge function",
|
|
765
|
+
"middleware",
|
|
766
|
+
"runtime",
|
|
767
|
+
"cache",
|
|
768
|
+
"AI Gateway",
|
|
769
|
+
"rollout"
|
|
770
|
+
],
|
|
771
|
+
"primaryAgent": "vercel-expert",
|
|
772
|
+
"supportingAgents": [],
|
|
773
|
+
"primarySkills": [
|
|
774
|
+
"vercel-platform",
|
|
775
|
+
"vercel-runtime"
|
|
776
|
+
],
|
|
777
|
+
"supportingSkills": [
|
|
778
|
+
"vercel-delivery",
|
|
779
|
+
"vercel-security",
|
|
780
|
+
"vercel-ai"
|
|
781
|
+
],
|
|
782
|
+
"artifacts": {
|
|
783
|
+
"codex": {
|
|
784
|
+
"agentFile": "vercel-expert.md",
|
|
785
|
+
"compatibilityAlias": "$agent-vercel-expert"
|
|
786
|
+
},
|
|
787
|
+
"copilot": {
|
|
788
|
+
"agentFile": "vercel-expert.md"
|
|
789
|
+
},
|
|
790
|
+
"antigravity": {
|
|
791
|
+
"agentFile": "vercel-expert.md"
|
|
792
|
+
}
|
|
793
|
+
}
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"kind": "workflow",
|
|
797
|
+
"id": "backend",
|
|
798
|
+
"command": "/backend",
|
|
799
|
+
"displayName": "backend",
|
|
800
|
+
"description": "Drive backend architecture and implementation via backend specialist with API, data, and reliability focus.",
|
|
801
|
+
"triggers": [
|
|
802
|
+
"backend",
|
|
803
|
+
"api",
|
|
804
|
+
"service",
|
|
805
|
+
"database",
|
|
806
|
+
"performance"
|
|
807
|
+
],
|
|
808
|
+
"primaryAgent": "backend-specialist",
|
|
809
|
+
"supportingAgents": [
|
|
810
|
+
"database-architect",
|
|
811
|
+
"security-auditor"
|
|
812
|
+
],
|
|
813
|
+
"primarySkills": [
|
|
814
|
+
"api-designer",
|
|
815
|
+
"nodejs-best-practices"
|
|
816
|
+
],
|
|
817
|
+
"supportingSkills": [
|
|
818
|
+
"api-patterns",
|
|
819
|
+
"database-skills",
|
|
820
|
+
"secure-code-guardian",
|
|
821
|
+
"postman"
|
|
822
|
+
],
|
|
823
|
+
"artifacts": {
|
|
824
|
+
"codex": {
|
|
825
|
+
"workflowFile": "backend.md",
|
|
826
|
+
"compatibilityAlias": "$workflow-backend"
|
|
827
|
+
},
|
|
828
|
+
"copilot": {
|
|
829
|
+
"workflowFile": "backend.md",
|
|
830
|
+
"promptFile": "workflow-backend.prompt.md"
|
|
831
|
+
},
|
|
832
|
+
"antigravity": {
|
|
833
|
+
"workflowFile": "backend.md",
|
|
834
|
+
"commandFile": "backend.toml"
|
|
835
|
+
}
|
|
836
|
+
}
|
|
837
|
+
},
|
|
838
|
+
{
|
|
839
|
+
"kind": "workflow",
|
|
840
|
+
"id": "brainstorm",
|
|
841
|
+
"command": "/brainstorm",
|
|
842
|
+
"displayName": "brainstorm",
|
|
843
|
+
"description": "Generate concrete solution options and tradeoffs before committing to implementation.",
|
|
844
|
+
"triggers": [
|
|
845
|
+
"idea",
|
|
846
|
+
"brainstorm",
|
|
847
|
+
"options",
|
|
848
|
+
"tradeoff",
|
|
849
|
+
"approach"
|
|
850
|
+
],
|
|
851
|
+
"primaryAgent": "project-planner",
|
|
852
|
+
"supportingAgents": [
|
|
853
|
+
"product-manager",
|
|
854
|
+
"backend-specialist"
|
|
855
|
+
],
|
|
856
|
+
"primarySkills": [
|
|
857
|
+
"brainstorming",
|
|
858
|
+
"feature-forge"
|
|
859
|
+
],
|
|
860
|
+
"supportingSkills": [
|
|
861
|
+
"plan-writing"
|
|
862
|
+
],
|
|
863
|
+
"artifacts": {
|
|
864
|
+
"codex": {
|
|
865
|
+
"workflowFile": "brainstorm.md",
|
|
866
|
+
"compatibilityAlias": "$workflow-brainstorm"
|
|
867
|
+
},
|
|
868
|
+
"copilot": {
|
|
869
|
+
"workflowFile": "brainstorm.md",
|
|
870
|
+
"promptFile": "workflow-brainstorm.prompt.md"
|
|
871
|
+
},
|
|
872
|
+
"antigravity": {
|
|
873
|
+
"workflowFile": "brainstorm.md",
|
|
874
|
+
"commandFile": "brainstorm.toml"
|
|
875
|
+
}
|
|
876
|
+
}
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
"kind": "workflow",
|
|
880
|
+
"id": "create",
|
|
881
|
+
"command": "/create",
|
|
882
|
+
"displayName": "create",
|
|
883
|
+
"description": "Implement feature work with minimal blast radius and clear verification checkpoints.",
|
|
884
|
+
"triggers": [
|
|
885
|
+
"create",
|
|
886
|
+
"build",
|
|
887
|
+
"implement",
|
|
888
|
+
"feature",
|
|
889
|
+
"develop"
|
|
890
|
+
],
|
|
891
|
+
"primaryAgent": "orchestrator",
|
|
892
|
+
"supportingAgents": [
|
|
893
|
+
"backend-specialist",
|
|
894
|
+
"frontend-specialist",
|
|
895
|
+
"mobile-developer",
|
|
896
|
+
"test-engineer"
|
|
897
|
+
],
|
|
898
|
+
"primarySkills": [
|
|
899
|
+
"feature-forge",
|
|
900
|
+
"architecture-designer"
|
|
901
|
+
],
|
|
902
|
+
"supportingSkills": [
|
|
903
|
+
"skill-authoring",
|
|
904
|
+
"lint-and-validate",
|
|
905
|
+
"test-master"
|
|
906
|
+
],
|
|
907
|
+
"artifacts": {
|
|
908
|
+
"codex": {
|
|
909
|
+
"workflowFile": "create.md",
|
|
910
|
+
"compatibilityAlias": "$workflow-create"
|
|
911
|
+
},
|
|
912
|
+
"copilot": {
|
|
913
|
+
"workflowFile": "create.md",
|
|
914
|
+
"promptFile": "workflow-create.prompt.md"
|
|
915
|
+
},
|
|
916
|
+
"antigravity": {
|
|
917
|
+
"workflowFile": "create.md",
|
|
918
|
+
"commandFile": "create.toml"
|
|
919
|
+
}
|
|
920
|
+
}
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"kind": "workflow",
|
|
924
|
+
"id": "database",
|
|
925
|
+
"command": "/database",
|
|
926
|
+
"displayName": "database",
|
|
927
|
+
"description": "Design or review schema, queries, and migrations with performance and integrity controls.",
|
|
928
|
+
"triggers": [
|
|
929
|
+
"database",
|
|
930
|
+
"sql",
|
|
931
|
+
"schema",
|
|
932
|
+
"migration",
|
|
933
|
+
"index"
|
|
934
|
+
],
|
|
935
|
+
"primaryAgent": "database-architect",
|
|
936
|
+
"supportingAgents": [
|
|
937
|
+
"backend-specialist",
|
|
938
|
+
"test-engineer"
|
|
939
|
+
],
|
|
940
|
+
"primarySkills": [
|
|
941
|
+
"database-skills",
|
|
942
|
+
"database-design"
|
|
943
|
+
],
|
|
944
|
+
"supportingSkills": [
|
|
945
|
+
"database-optimizer"
|
|
946
|
+
],
|
|
947
|
+
"artifacts": {
|
|
948
|
+
"codex": {
|
|
949
|
+
"workflowFile": "database.md",
|
|
950
|
+
"compatibilityAlias": "$workflow-database"
|
|
951
|
+
},
|
|
952
|
+
"copilot": {
|
|
953
|
+
"workflowFile": "database.md",
|
|
954
|
+
"promptFile": "workflow-database.prompt.md"
|
|
955
|
+
},
|
|
956
|
+
"antigravity": {
|
|
957
|
+
"workflowFile": "database.md",
|
|
958
|
+
"commandFile": "database.toml"
|
|
959
|
+
}
|
|
960
|
+
}
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
"kind": "workflow",
|
|
964
|
+
"id": "debug",
|
|
965
|
+
"command": "/debug",
|
|
966
|
+
"displayName": "debug",
|
|
967
|
+
"description": "Isolate root cause quickly and apply the smallest safe remediation with verification.",
|
|
968
|
+
"triggers": [
|
|
969
|
+
"debug",
|
|
970
|
+
"bug",
|
|
971
|
+
"error",
|
|
972
|
+
"incident",
|
|
973
|
+
"stack trace"
|
|
974
|
+
],
|
|
975
|
+
"primaryAgent": "debugger",
|
|
976
|
+
"supportingAgents": [
|
|
977
|
+
"backend-specialist",
|
|
978
|
+
"test-engineer"
|
|
979
|
+
],
|
|
980
|
+
"primarySkills": [
|
|
981
|
+
"systematic-debugging",
|
|
982
|
+
"find-bugs"
|
|
983
|
+
],
|
|
984
|
+
"supportingSkills": [
|
|
985
|
+
"monitoring-expert",
|
|
986
|
+
"error-ux-observability"
|
|
987
|
+
],
|
|
988
|
+
"artifacts": {
|
|
989
|
+
"codex": {
|
|
990
|
+
"workflowFile": "debug.md",
|
|
991
|
+
"compatibilityAlias": "$workflow-debug"
|
|
992
|
+
},
|
|
993
|
+
"copilot": {
|
|
994
|
+
"workflowFile": "debug.md",
|
|
995
|
+
"promptFile": "workflow-debug.prompt.md"
|
|
996
|
+
},
|
|
997
|
+
"antigravity": {
|
|
998
|
+
"workflowFile": "debug.md",
|
|
999
|
+
"commandFile": "debug.toml"
|
|
1000
|
+
}
|
|
1001
|
+
}
|
|
1002
|
+
},
|
|
1003
|
+
{
|
|
1004
|
+
"kind": "workflow",
|
|
1005
|
+
"id": "devops",
|
|
1006
|
+
"command": "/devops",
|
|
1007
|
+
"displayName": "devops",
|
|
1008
|
+
"description": "Plan and execute deployment, CI/CD, and operational safety changes with rollback controls.",
|
|
1009
|
+
"triggers": [
|
|
1010
|
+
"devops",
|
|
1011
|
+
"deploy",
|
|
1012
|
+
"ci",
|
|
1013
|
+
"cd",
|
|
1014
|
+
"rollback",
|
|
1015
|
+
"infra"
|
|
1016
|
+
],
|
|
1017
|
+
"primaryAgent": "devops-engineer",
|
|
1018
|
+
"supportingAgents": [
|
|
1019
|
+
"security-auditor",
|
|
1020
|
+
"test-engineer"
|
|
1021
|
+
],
|
|
1022
|
+
"primarySkills": [
|
|
1023
|
+
"devops-engineer",
|
|
1024
|
+
"sre-engineer"
|
|
1025
|
+
],
|
|
1026
|
+
"supportingSkills": [
|
|
1027
|
+
"monitoring-expert",
|
|
1028
|
+
"terraform-engineer",
|
|
1029
|
+
"wrangler"
|
|
1030
|
+
],
|
|
1031
|
+
"artifacts": {
|
|
1032
|
+
"codex": {
|
|
1033
|
+
"workflowFile": "devops.md",
|
|
1034
|
+
"compatibilityAlias": "$workflow-devops"
|
|
1035
|
+
},
|
|
1036
|
+
"copilot": {
|
|
1037
|
+
"workflowFile": "devops.md",
|
|
1038
|
+
"promptFile": "workflow-devops.prompt.md"
|
|
1039
|
+
},
|
|
1040
|
+
"antigravity": {
|
|
1041
|
+
"workflowFile": "devops.md",
|
|
1042
|
+
"commandFile": "devops.toml"
|
|
1043
|
+
}
|
|
1044
|
+
}
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
"kind": "workflow",
|
|
1048
|
+
"id": "implement-track",
|
|
1049
|
+
"command": "/implement-track",
|
|
1050
|
+
"displayName": "implement-track",
|
|
1051
|
+
"description": "Execute large work in milestones with explicit quality gates and status updates.",
|
|
1052
|
+
"triggers": [
|
|
1053
|
+
"track",
|
|
1054
|
+
"milestone",
|
|
1055
|
+
"delivery",
|
|
1056
|
+
"progress",
|
|
1057
|
+
"execution"
|
|
1058
|
+
],
|
|
1059
|
+
"primaryAgent": "orchestrator",
|
|
1060
|
+
"supportingAgents": [
|
|
1061
|
+
"project-planner",
|
|
1062
|
+
"test-engineer"
|
|
1063
|
+
],
|
|
1064
|
+
"primarySkills": [
|
|
1065
|
+
"plan-writing",
|
|
1066
|
+
"feature-forge"
|
|
1067
|
+
],
|
|
1068
|
+
"supportingSkills": [
|
|
1069
|
+
"lint-and-validate",
|
|
1070
|
+
"test-master"
|
|
1071
|
+
],
|
|
1072
|
+
"artifacts": {
|
|
1073
|
+
"codex": {
|
|
1074
|
+
"workflowFile": "implement-track.md",
|
|
1075
|
+
"compatibilityAlias": "$workflow-implement-track"
|
|
1076
|
+
},
|
|
1077
|
+
"copilot": {
|
|
1078
|
+
"workflowFile": "implement-track.md",
|
|
1079
|
+
"promptFile": "workflow-implement-track.prompt.md"
|
|
1080
|
+
},
|
|
1081
|
+
"antigravity": {
|
|
1082
|
+
"workflowFile": "implement-track.md",
|
|
1083
|
+
"commandFile": "implement-track.toml"
|
|
1084
|
+
}
|
|
1085
|
+
}
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
"kind": "workflow",
|
|
1089
|
+
"id": "incident",
|
|
1090
|
+
"command": "/incident",
|
|
1091
|
+
"displayName": "incident",
|
|
1092
|
+
"description": "Handle production incidents with triage, mitigation, root cause, and post-incident actions.",
|
|
1093
|
+
"triggers": [
|
|
1094
|
+
"incident",
|
|
1095
|
+
"outage",
|
|
1096
|
+
"sev",
|
|
1097
|
+
"degraded",
|
|
1098
|
+
"hotfix"
|
|
1099
|
+
],
|
|
1100
|
+
"primaryAgent": "backend-specialist",
|
|
1101
|
+
"supportingAgents": [
|
|
1102
|
+
"debugger",
|
|
1103
|
+
"database-architect",
|
|
1104
|
+
"security-auditor",
|
|
1105
|
+
"test-engineer",
|
|
1106
|
+
"devops-engineer"
|
|
1107
|
+
],
|
|
1108
|
+
"primarySkills": [
|
|
1109
|
+
"systematic-debugging",
|
|
1110
|
+
"sre-engineer"
|
|
1111
|
+
],
|
|
1112
|
+
"supportingSkills": [
|
|
1113
|
+
"monitoring-expert",
|
|
1114
|
+
"security-reviewer"
|
|
1115
|
+
],
|
|
1116
|
+
"artifacts": {
|
|
1117
|
+
"codex": {
|
|
1118
|
+
"workflowFile": "incident.md",
|
|
1119
|
+
"compatibilityAlias": "$workflow-incident"
|
|
1120
|
+
},
|
|
1121
|
+
"copilot": {
|
|
1122
|
+
"workflowFile": "incident.md",
|
|
1123
|
+
"promptFile": "workflow-incident.prompt.md"
|
|
1124
|
+
},
|
|
1125
|
+
"antigravity": {
|
|
1126
|
+
"workflowFile": "incident.md",
|
|
1127
|
+
"commandFile": "incident.toml"
|
|
1128
|
+
}
|
|
1129
|
+
}
|
|
1130
|
+
},
|
|
1131
|
+
{
|
|
1132
|
+
"kind": "workflow",
|
|
1133
|
+
"id": "mobile",
|
|
1134
|
+
"command": "/mobile",
|
|
1135
|
+
"displayName": "mobile",
|
|
1136
|
+
"description": "Drive mobile implementation decisions for Flutter/cross-platform behavior and reliability.",
|
|
1137
|
+
"triggers": [
|
|
1138
|
+
"mobile",
|
|
1139
|
+
"flutter",
|
|
1140
|
+
"ios",
|
|
1141
|
+
"android",
|
|
1142
|
+
"navigation"
|
|
1143
|
+
],
|
|
1144
|
+
"primaryAgent": "mobile-developer",
|
|
1145
|
+
"supportingAgents": [
|
|
1146
|
+
"frontend-specialist",
|
|
1147
|
+
"test-engineer"
|
|
1148
|
+
],
|
|
1149
|
+
"primarySkills": [
|
|
1150
|
+
"mobile-design",
|
|
1151
|
+
"flutter-expert"
|
|
1152
|
+
],
|
|
1153
|
+
"supportingSkills": [
|
|
1154
|
+
"riverpod-3",
|
|
1155
|
+
"drift-flutter",
|
|
1156
|
+
"flutter-test-master"
|
|
1157
|
+
],
|
|
1158
|
+
"artifacts": {
|
|
1159
|
+
"codex": {
|
|
1160
|
+
"workflowFile": "mobile.md",
|
|
1161
|
+
"compatibilityAlias": "$workflow-mobile"
|
|
1162
|
+
},
|
|
1163
|
+
"copilot": {
|
|
1164
|
+
"workflowFile": "mobile.md",
|
|
1165
|
+
"promptFile": "workflow-mobile.prompt.md"
|
|
1166
|
+
},
|
|
1167
|
+
"antigravity": {
|
|
1168
|
+
"workflowFile": "mobile.md",
|
|
1169
|
+
"commandFile": "mobile.toml"
|
|
1170
|
+
}
|
|
1171
|
+
}
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
"kind": "workflow",
|
|
1175
|
+
"id": "orchestrate",
|
|
1176
|
+
"command": "/orchestrate",
|
|
1177
|
+
"displayName": "orchestrate",
|
|
1178
|
+
"description": "Coordinate multiple specialists to solve cross-cutting tasks with explicit ownership and handoff.",
|
|
1179
|
+
"triggers": [
|
|
1180
|
+
"orchestrate",
|
|
1181
|
+
"coordinate",
|
|
1182
|
+
"multi-area",
|
|
1183
|
+
"cross-team",
|
|
1184
|
+
"handoff"
|
|
1185
|
+
],
|
|
1186
|
+
"primaryAgent": "orchestrator",
|
|
1187
|
+
"supportingAgents": [
|
|
1188
|
+
"backend-specialist",
|
|
1189
|
+
"database-architect",
|
|
1190
|
+
"frontend-specialist",
|
|
1191
|
+
"security-auditor",
|
|
1192
|
+
"test-engineer",
|
|
1193
|
+
"devops-engineer"
|
|
1194
|
+
],
|
|
1195
|
+
"primarySkills": [
|
|
1196
|
+
"parallel-agents",
|
|
1197
|
+
"architecture-designer"
|
|
1198
|
+
],
|
|
1199
|
+
"supportingSkills": [
|
|
1200
|
+
"plan-writing",
|
|
1201
|
+
"feature-forge",
|
|
1202
|
+
"skill-authoring"
|
|
1203
|
+
],
|
|
1204
|
+
"artifacts": {
|
|
1205
|
+
"codex": {
|
|
1206
|
+
"workflowFile": "orchestrate.md",
|
|
1207
|
+
"compatibilityAlias": "$workflow-orchestrate"
|
|
1208
|
+
},
|
|
1209
|
+
"copilot": {
|
|
1210
|
+
"workflowFile": "orchestrate.md",
|
|
1211
|
+
"promptFile": "workflow-orchestrate.prompt.md"
|
|
1212
|
+
},
|
|
1213
|
+
"antigravity": {
|
|
1214
|
+
"workflowFile": "orchestrate.md",
|
|
1215
|
+
"commandFile": "orchestrate.toml"
|
|
1216
|
+
}
|
|
1217
|
+
}
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
"kind": "workflow",
|
|
1221
|
+
"id": "plan",
|
|
1222
|
+
"command": "/plan",
|
|
1223
|
+
"displayName": "plan",
|
|
1224
|
+
"description": "Build a decision-complete implementation plan with interfaces, failure modes, and acceptance criteria.",
|
|
1225
|
+
"triggers": [
|
|
1226
|
+
"plan",
|
|
1227
|
+
"spec",
|
|
1228
|
+
"design",
|
|
1229
|
+
"roadmap",
|
|
1230
|
+
"acceptance"
|
|
1231
|
+
],
|
|
1232
|
+
"primaryAgent": "project-planner",
|
|
1233
|
+
"supportingAgents": [
|
|
1234
|
+
"product-manager",
|
|
1235
|
+
"backend-specialist",
|
|
1236
|
+
"test-engineer"
|
|
1237
|
+
],
|
|
1238
|
+
"primarySkills": [
|
|
1239
|
+
"plan-writing",
|
|
1240
|
+
"architecture-designer"
|
|
1241
|
+
],
|
|
1242
|
+
"supportingSkills": [
|
|
1243
|
+
"feature-forge",
|
|
1244
|
+
"api-designer",
|
|
1245
|
+
"skill-authoring"
|
|
1246
|
+
],
|
|
1247
|
+
"artifacts": {
|
|
1248
|
+
"codex": {
|
|
1249
|
+
"workflowFile": "plan.md",
|
|
1250
|
+
"compatibilityAlias": "$workflow-plan"
|
|
1251
|
+
},
|
|
1252
|
+
"copilot": {
|
|
1253
|
+
"workflowFile": "plan.md",
|
|
1254
|
+
"promptFile": "workflow-plan.prompt.md"
|
|
1255
|
+
},
|
|
1256
|
+
"antigravity": {
|
|
1257
|
+
"workflowFile": "plan.md",
|
|
1258
|
+
"commandFile": "plan.toml"
|
|
1259
|
+
}
|
|
1260
|
+
}
|
|
1261
|
+
},
|
|
1262
|
+
{
|
|
1263
|
+
"kind": "workflow",
|
|
1264
|
+
"id": "postman",
|
|
1265
|
+
"command": "/postman",
|
|
1266
|
+
"displayName": "postman",
|
|
1267
|
+
"description": "Execute Postman MCP operations for workspaces, collections, environments, and runs.",
|
|
1268
|
+
"triggers": [
|
|
1269
|
+
"postman",
|
|
1270
|
+
"collection",
|
|
1271
|
+
"workspace",
|
|
1272
|
+
"environment",
|
|
1273
|
+
"runcollection",
|
|
1274
|
+
"monitor",
|
|
1275
|
+
"mock",
|
|
1276
|
+
"api test"
|
|
1277
|
+
],
|
|
1278
|
+
"primaryAgent": "backend-specialist",
|
|
1279
|
+
"supportingAgents": [
|
|
1280
|
+
"security-auditor",
|
|
1281
|
+
"test-engineer"
|
|
1282
|
+
],
|
|
1283
|
+
"primarySkills": [
|
|
1284
|
+
"postman"
|
|
1285
|
+
],
|
|
1286
|
+
"supportingSkills": [
|
|
1287
|
+
"api-designer",
|
|
1288
|
+
"test-master"
|
|
1289
|
+
],
|
|
1290
|
+
"artifacts": {
|
|
1291
|
+
"codex": {
|
|
1292
|
+
"workflowFile": "postman.md",
|
|
1293
|
+
"compatibilityAlias": "$workflow-postman"
|
|
1294
|
+
},
|
|
1295
|
+
"copilot": {
|
|
1296
|
+
"workflowFile": "postman.md",
|
|
1297
|
+
"promptFile": "workflow-postman.prompt.md"
|
|
1298
|
+
},
|
|
1299
|
+
"antigravity": {
|
|
1300
|
+
"workflowFile": "postman.md",
|
|
1301
|
+
"commandFile": "postman.toml"
|
|
1302
|
+
}
|
|
1303
|
+
}
|
|
1304
|
+
},
|
|
1305
|
+
{
|
|
1306
|
+
"kind": "workflow",
|
|
1307
|
+
"id": "qa",
|
|
1308
|
+
"command": "/qa",
|
|
1309
|
+
"displayName": "qa",
|
|
1310
|
+
"description": "Create and execute quality strategy with automation and regression-focused coverage.",
|
|
1311
|
+
"triggers": [
|
|
1312
|
+
"qa",
|
|
1313
|
+
"test",
|
|
1314
|
+
"regression",
|
|
1315
|
+
"automation",
|
|
1316
|
+
"e2e"
|
|
1317
|
+
],
|
|
1318
|
+
"primaryAgent": "qa-automation-engineer",
|
|
1319
|
+
"supportingAgents": [
|
|
1320
|
+
"test-engineer",
|
|
1321
|
+
"debugger"
|
|
1322
|
+
],
|
|
1323
|
+
"primarySkills": [
|
|
1324
|
+
"test-master",
|
|
1325
|
+
"playwright-expert"
|
|
1326
|
+
],
|
|
1327
|
+
"supportingSkills": [
|
|
1328
|
+
"webapp-testing",
|
|
1329
|
+
"lint-and-validate"
|
|
1330
|
+
],
|
|
1331
|
+
"artifacts": {
|
|
1332
|
+
"codex": {
|
|
1333
|
+
"workflowFile": "qa.md",
|
|
1334
|
+
"compatibilityAlias": "$workflow-qa"
|
|
1335
|
+
},
|
|
1336
|
+
"copilot": {
|
|
1337
|
+
"workflowFile": "qa.md",
|
|
1338
|
+
"promptFile": "workflow-qa.prompt.md"
|
|
1339
|
+
},
|
|
1340
|
+
"antigravity": {
|
|
1341
|
+
"workflowFile": "qa.md",
|
|
1342
|
+
"commandFile": "qa.toml"
|
|
1343
|
+
}
|
|
1344
|
+
}
|
|
1345
|
+
},
|
|
1346
|
+
{
|
|
1347
|
+
"kind": "workflow",
|
|
1348
|
+
"id": "refactor",
|
|
1349
|
+
"command": "/refactor",
|
|
1350
|
+
"displayName": "refactor",
|
|
1351
|
+
"description": "Improve maintainability while preserving behavior through incremental safe refactoring.",
|
|
1352
|
+
"triggers": [
|
|
1353
|
+
"refactor",
|
|
1354
|
+
"cleanup",
|
|
1355
|
+
"maintainability",
|
|
1356
|
+
"debt",
|
|
1357
|
+
"modularize"
|
|
1358
|
+
],
|
|
1359
|
+
"primaryAgent": "code-archaeologist",
|
|
1360
|
+
"supportingAgents": [
|
|
1361
|
+
"backend-specialist",
|
|
1362
|
+
"test-engineer"
|
|
1363
|
+
],
|
|
1364
|
+
"primarySkills": [
|
|
1365
|
+
"refactor",
|
|
1366
|
+
"legacy-modernizer"
|
|
1367
|
+
],
|
|
1368
|
+
"supportingSkills": [
|
|
1369
|
+
"architecture-designer",
|
|
1370
|
+
"code-reviewer"
|
|
1371
|
+
],
|
|
1372
|
+
"artifacts": {
|
|
1373
|
+
"codex": {
|
|
1374
|
+
"workflowFile": "refactor.md",
|
|
1375
|
+
"compatibilityAlias": "$workflow-refactor"
|
|
1376
|
+
},
|
|
1377
|
+
"copilot": {
|
|
1378
|
+
"workflowFile": "refactor.md",
|
|
1379
|
+
"promptFile": "workflow-refactor.prompt.md"
|
|
1380
|
+
},
|
|
1381
|
+
"antigravity": {
|
|
1382
|
+
"workflowFile": "refactor.md",
|
|
1383
|
+
"commandFile": "refactor.toml"
|
|
1384
|
+
}
|
|
1385
|
+
}
|
|
1386
|
+
},
|
|
1387
|
+
{
|
|
1388
|
+
"kind": "workflow",
|
|
1389
|
+
"id": "release",
|
|
1390
|
+
"command": "/release",
|
|
1391
|
+
"displayName": "release",
|
|
1392
|
+
"description": "Prepare and execute release with rollout guardrails, verification, and rollback plan.",
|
|
1393
|
+
"triggers": [
|
|
1394
|
+
"release",
|
|
1395
|
+
"deploy",
|
|
1396
|
+
"rollout",
|
|
1397
|
+
"ship",
|
|
1398
|
+
"go-live"
|
|
1399
|
+
],
|
|
1400
|
+
"primaryAgent": "devops-engineer",
|
|
1401
|
+
"supportingAgents": [
|
|
1402
|
+
"security-auditor",
|
|
1403
|
+
"test-engineer",
|
|
1404
|
+
"product-owner"
|
|
1405
|
+
],
|
|
1406
|
+
"primarySkills": [
|
|
1407
|
+
"devops-engineer",
|
|
1408
|
+
"sre-engineer"
|
|
1409
|
+
],
|
|
1410
|
+
"supportingSkills": [
|
|
1411
|
+
"monitoring-expert",
|
|
1412
|
+
"test-master"
|
|
1413
|
+
],
|
|
1414
|
+
"artifacts": {
|
|
1415
|
+
"codex": {
|
|
1416
|
+
"workflowFile": "release.md",
|
|
1417
|
+
"compatibilityAlias": "$workflow-release"
|
|
1418
|
+
},
|
|
1419
|
+
"copilot": {
|
|
1420
|
+
"workflowFile": "release.md",
|
|
1421
|
+
"promptFile": "workflow-release.prompt.md"
|
|
1422
|
+
},
|
|
1423
|
+
"antigravity": {
|
|
1424
|
+
"workflowFile": "release.md",
|
|
1425
|
+
"commandFile": "release.toml"
|
|
1426
|
+
}
|
|
1427
|
+
}
|
|
1428
|
+
},
|
|
1429
|
+
{
|
|
1430
|
+
"kind": "workflow",
|
|
1431
|
+
"id": "review",
|
|
1432
|
+
"command": "/review",
|
|
1433
|
+
"displayName": "review",
|
|
1434
|
+
"description": "Run a strict review for bugs, regressions, and security issues with prioritized findings.",
|
|
1435
|
+
"triggers": [
|
|
1436
|
+
"review",
|
|
1437
|
+
"audit",
|
|
1438
|
+
"pr",
|
|
1439
|
+
"quality",
|
|
1440
|
+
"security review"
|
|
1441
|
+
],
|
|
1442
|
+
"primaryAgent": "code-archaeologist",
|
|
1443
|
+
"supportingAgents": [
|
|
1444
|
+
"frontend-specialist",
|
|
1445
|
+
"security-auditor",
|
|
1446
|
+
"test-engineer"
|
|
1447
|
+
],
|
|
1448
|
+
"primarySkills": [
|
|
1449
|
+
"code-reviewer",
|
|
1450
|
+
"security-reviewer"
|
|
1451
|
+
],
|
|
1452
|
+
"supportingSkills": [
|
|
1453
|
+
"skill-authoring",
|
|
1454
|
+
"semgrep",
|
|
1455
|
+
"static-analysis",
|
|
1456
|
+
"variant-analysis"
|
|
1457
|
+
],
|
|
1458
|
+
"artifacts": {
|
|
1459
|
+
"codex": {
|
|
1460
|
+
"workflowFile": "review.md",
|
|
1461
|
+
"compatibilityAlias": "$workflow-review"
|
|
1462
|
+
},
|
|
1463
|
+
"copilot": {
|
|
1464
|
+
"workflowFile": "review.md",
|
|
1465
|
+
"promptFile": "workflow-review.prompt.md"
|
|
1466
|
+
},
|
|
1467
|
+
"antigravity": {
|
|
1468
|
+
"workflowFile": "review.md",
|
|
1469
|
+
"commandFile": "review.toml"
|
|
1470
|
+
}
|
|
1471
|
+
}
|
|
1472
|
+
},
|
|
1473
|
+
{
|
|
1474
|
+
"kind": "workflow",
|
|
1475
|
+
"id": "security",
|
|
1476
|
+
"command": "/security",
|
|
1477
|
+
"displayName": "security",
|
|
1478
|
+
"description": "Run security-focused analysis and remediation planning with exploitability-first triage.",
|
|
1479
|
+
"triggers": [
|
|
1480
|
+
"security",
|
|
1481
|
+
"vulnerability",
|
|
1482
|
+
"owasp",
|
|
1483
|
+
"auth",
|
|
1484
|
+
"hardening"
|
|
1485
|
+
],
|
|
1486
|
+
"primaryAgent": "security-auditor",
|
|
1487
|
+
"supportingAgents": [
|
|
1488
|
+
"penetration-tester",
|
|
1489
|
+
"test-engineer"
|
|
1490
|
+
],
|
|
1491
|
+
"primarySkills": [
|
|
1492
|
+
"security-reviewer",
|
|
1493
|
+
"secure-code-guardian"
|
|
1494
|
+
],
|
|
1495
|
+
"supportingSkills": [
|
|
1496
|
+
"semgrep",
|
|
1497
|
+
"static-analysis",
|
|
1498
|
+
"variant-analysis"
|
|
1499
|
+
],
|
|
1500
|
+
"artifacts": {
|
|
1501
|
+
"codex": {
|
|
1502
|
+
"workflowFile": "security.md",
|
|
1503
|
+
"compatibilityAlias": "$workflow-security"
|
|
1504
|
+
},
|
|
1505
|
+
"copilot": {
|
|
1506
|
+
"workflowFile": "security.md",
|
|
1507
|
+
"promptFile": "workflow-security.prompt.md"
|
|
1508
|
+
},
|
|
1509
|
+
"antigravity": {
|
|
1510
|
+
"workflowFile": "security.md",
|
|
1511
|
+
"commandFile": "security.toml"
|
|
1512
|
+
}
|
|
1513
|
+
}
|
|
1514
|
+
},
|
|
1515
|
+
{
|
|
1516
|
+
"kind": "workflow",
|
|
1517
|
+
"id": "test",
|
|
1518
|
+
"command": "/test",
|
|
1519
|
+
"displayName": "test",
|
|
1520
|
+
"description": "Design and execute verification strategy aligned to risk and acceptance criteria.",
|
|
1521
|
+
"triggers": [
|
|
1522
|
+
"test",
|
|
1523
|
+
"verify",
|
|
1524
|
+
"coverage",
|
|
1525
|
+
"qa",
|
|
1526
|
+
"regression"
|
|
1527
|
+
],
|
|
1528
|
+
"primaryAgent": "test-engineer",
|
|
1529
|
+
"supportingAgents": [
|
|
1530
|
+
"qa-automation-engineer",
|
|
1531
|
+
"debugger"
|
|
1532
|
+
],
|
|
1533
|
+
"primarySkills": [
|
|
1534
|
+
"test-master",
|
|
1535
|
+
"playwright-expert"
|
|
1536
|
+
],
|
|
1537
|
+
"supportingSkills": [
|
|
1538
|
+
"webapp-testing",
|
|
1539
|
+
"flutter-test-master"
|
|
1540
|
+
],
|
|
1541
|
+
"artifacts": {
|
|
1542
|
+
"codex": {
|
|
1543
|
+
"workflowFile": "test.md",
|
|
1544
|
+
"compatibilityAlias": "$workflow-test"
|
|
1545
|
+
},
|
|
1546
|
+
"copilot": {
|
|
1547
|
+
"workflowFile": "test.md",
|
|
1548
|
+
"promptFile": "workflow-test.prompt.md"
|
|
1549
|
+
},
|
|
1550
|
+
"antigravity": {
|
|
1551
|
+
"workflowFile": "test.md",
|
|
1552
|
+
"commandFile": "test.toml"
|
|
1553
|
+
}
|
|
1554
|
+
}
|
|
1555
|
+
},
|
|
1556
|
+
{
|
|
1557
|
+
"kind": "workflow",
|
|
1558
|
+
"id": "vercel",
|
|
1559
|
+
"command": "/vercel",
|
|
1560
|
+
"displayName": "vercel",
|
|
1561
|
+
"description": "Drive Vercel implementation and operations via vercel-expert with deployment, runtime, security, and observability guardrails.",
|
|
1562
|
+
"triggers": [
|
|
1563
|
+
"vercel",
|
|
1564
|
+
"deployment",
|
|
1565
|
+
"preview",
|
|
1566
|
+
"edge",
|
|
1567
|
+
"functions",
|
|
1568
|
+
"domains",
|
|
1569
|
+
"vercel cli"
|
|
1570
|
+
],
|
|
1571
|
+
"primaryAgent": "vercel-expert",
|
|
1572
|
+
"supportingAgents": [
|
|
1573
|
+
"devops-engineer",
|
|
1574
|
+
"security-auditor",
|
|
1575
|
+
"test-engineer",
|
|
1576
|
+
"qa-automation-engineer"
|
|
1577
|
+
],
|
|
1578
|
+
"primarySkills": [
|
|
1579
|
+
"vercel-platform",
|
|
1580
|
+
"vercel-runtime"
|
|
1581
|
+
],
|
|
1582
|
+
"supportingSkills": [
|
|
1583
|
+
"vercel-delivery",
|
|
1584
|
+
"vercel-security",
|
|
1585
|
+
"vercel-ai",
|
|
1586
|
+
"vercel-storage"
|
|
1587
|
+
],
|
|
1588
|
+
"artifacts": {
|
|
1589
|
+
"codex": {
|
|
1590
|
+
"workflowFile": "vercel.md",
|
|
1591
|
+
"compatibilityAlias": "$workflow-vercel"
|
|
1592
|
+
},
|
|
1593
|
+
"copilot": {
|
|
1594
|
+
"workflowFile": "vercel.md",
|
|
1595
|
+
"promptFile": "workflow-vercel.prompt.md"
|
|
1596
|
+
},
|
|
1597
|
+
"antigravity": {
|
|
1598
|
+
"workflowFile": "vercel.md",
|
|
1599
|
+
"commandFile": "vercel.toml"
|
|
1600
|
+
}
|
|
1601
|
+
}
|
|
1602
|
+
}
|
|
1603
|
+
]
|
|
1604
|
+
}
|