tribunal-kit 6.0.0 → 7.0.0
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/.agent/.manifest.json +78 -0
- package/.agent/ARCHITECTURE.md +19 -241
- package/.agent/agents/accessibility-reviewer.md +23 -16
- package/.agent/agents/ai-code-reviewer.md +25 -21
- package/.agent/agents/anti-pattern-reviewer.md +12 -7
- package/.agent/agents/api-architect.md +1 -0
- package/.agent/agents/backend-specialist.md +23 -22
- package/.agent/agents/cloud-engineer.md +1 -0
- package/.agent/agents/code-archaeologist.md +1 -0
- package/.agent/agents/complexity-reviewer.md +10 -7
- package/.agent/agents/database-architect.md +3 -2
- package/.agent/agents/db-latency-auditor.md +6 -2
- package/.agent/agents/debugger.md +3 -2
- package/.agent/agents/dependency-reviewer.md +1 -0
- package/.agent/agents/devops-engineer.md +9 -8
- package/.agent/agents/documentation-writer.md +6 -5
- package/.agent/agents/explorer-agent.md +1 -0
- package/.agent/agents/frontend-reviewer.md +21 -17
- package/.agent/agents/frontend-specialist.md +23 -20
- package/.agent/agents/game-developer.md +1 -0
- package/.agent/agents/interaction-reviewer.md +10 -5
- package/.agent/agents/logic-reviewer.md +3 -0
- package/.agent/agents/minimalist-reviewer.md +6 -0
- package/.agent/agents/mobile-developer.md +7 -6
- package/.agent/agents/mobile-reviewer.md +14 -13
- package/.agent/agents/orchestrator.md +3 -0
- package/.agent/agents/penetration-tester.md +1 -0
- package/.agent/agents/performance-optimizer.md +6 -5
- package/.agent/agents/performance-reviewer.md +6 -6
- package/.agent/agents/pipeline-reviewer.md +144 -0
- package/.agent/agents/precedence-reviewer.md +1 -0
- package/.agent/agents/product-manager.md +1 -0
- package/.agent/agents/product-owner.md +1 -0
- package/.agent/agents/product-reviewer.md +12 -7
- package/.agent/agents/project-planner.md +3 -0
- package/.agent/agents/qa-automation-engineer.md +50 -43
- package/.agent/agents/resilience-reviewer.md +1 -0
- package/.agent/agents/schema-reviewer.md +1 -0
- package/.agent/agents/security-auditor.md +24 -24
- package/.agent/agents/seo-specialist.md +33 -23
- package/.agent/agents/sql-reviewer.md +5 -4
- package/.agent/agents/supervisor-agent.md +12 -2
- package/.agent/agents/swarm-worker-contracts.md +13 -13
- package/.agent/agents/swarm-worker-registry.md +51 -51
- package/.agent/agents/system-architect.md +1 -0
- package/.agent/agents/test-coverage-reviewer.md +25 -22
- package/.agent/agents/test-engineer.md +12 -11
- package/.agent/agents/throughput-optimizer.md +45 -40
- package/.agent/agents/type-safety-reviewer.md +5 -4
- package/.agent/agents/ui-ux-auditor.md +6 -4
- package/.agent/agents/ui-visual-auditor.md +3 -0
- package/.agent/agents/ux-reviewer.md +11 -6
- package/.agent/agents/visual-reviewer.md +11 -6
- package/.agent/agents/vitals-reviewer.md +5 -4
- package/.agent/history/memory/.memory.idx +3716 -1
- package/.agent/history/memory/MEMORY.md +246 -1
- package/.agent/mcp_config.json +1 -6
- package/.agent/routing_index.json +2034 -263
- package/.agent/rules/GEMINI.md +12 -10
- package/.agent/rules/GEMINI_PLANNER.md +19 -21
- package/.agent/scripts/_colors.js +52 -54
- package/.agent/scripts/_utils.js +52 -53
- package/.agent/scripts/auto_preview.js +39 -43
- package/.agent/scripts/bundle_analyzer.js +47 -60
- package/.agent/scripts/case_law_manager.js +200 -294
- package/.agent/scripts/checklist.js +73 -94
- package/.agent/scripts/cicd_validator.js +305 -0
- package/.agent/scripts/compile_router.py +4 -111
- package/.agent/scripts/context_broker.js +317 -412
- package/.agent/scripts/contract_engine.js +402 -0
- package/.agent/scripts/dependency_analyzer.js +112 -124
- package/.agent/scripts/graph_builder.js +75 -103
- package/.agent/scripts/graph_visualizer.js +10 -12
- package/.agent/scripts/graph_zoom.js +38 -55
- package/.agent/scripts/guardrail_engine.js +195 -145
- package/.agent/scripts/impact_classifier.js +55 -30
- package/.agent/scripts/inner_loop_validator.js +108 -159
- package/.agent/scripts/integrity_manifest.js +59 -67
- package/.agent/scripts/lint_runner.js +65 -75
- package/.agent/scripts/marathon_harness.js +131 -208
- package/.agent/scripts/migrate_skills_frontmatter.py +4 -63
- package/.agent/scripts/minify_context.js +29 -33
- package/.agent/scripts/minimal_change_engine.js +95 -87
- package/.agent/scripts/mutation_runner.js +46 -62
- package/.agent/scripts/pipeline_engine.js +320 -209
- package/.agent/scripts/prompt_compiler.js +118 -93
- package/.agent/scripts/schema_validator.js +73 -121
- package/.agent/scripts/security_scan.js +88 -117
- package/.agent/scripts/session_manager.js +52 -69
- package/.agent/scripts/signal_detector.js +24 -22
- package/.agent/scripts/skill_evolution.js +184 -245
- package/.agent/scripts/skill_integrator.js +35 -48
- package/.agent/scripts/socratic_gate_policy.js +15 -12
- package/.agent/scripts/strengthen_skills.js +29 -33
- package/.agent/scripts/swarm_dispatcher.js +120 -151
- package/.agent/scripts/test_runner.js +54 -56
- package/.agent/scripts/token_budget_broker.js +9 -7
- package/.agent/scripts/trace_engine.js +126 -0
- package/.agent/scripts/verify_all.js +76 -93
- package/.agent/scripts/visual_audit.js +16 -21
- package/.agent/skill_topic_map.json +237 -0
- package/.agent/skills/12-principles-of-animation/SKILL.md +7 -0
- package/.agent/skills/60fps-animation/SKILL.md +7 -0
- package/.agent/skills/accessible-animation/SKILL.md +5 -1
- package/.agent/skills/adapt/SKILL.md +7 -1
- package/.agent/skills/advanced-rag-pipelines/SKILL.md +1 -0
- package/.agent/skills/agent-organizer/SKILL.md +1 -0
- package/.agent/skills/agentic-patterns/SKILL.md +33 -25
- package/.agent/skills/agentic-workflows-2026/SKILL.md +80 -0
- package/.agent/skills/ai-app-hardening/SKILL.md +59 -0
- package/.agent/skills/ai-prompt-injection-defense/SKILL.md +7 -6
- package/.agent/skills/animation-on-scroll/SKILL.md +24 -15
- package/.agent/skills/animation-systems/SKILL.md +11 -10
- package/.agent/skills/antfu-conventions/SKILL.md +7 -2
- package/.agent/skills/api-patterns/SKILL.md +14 -10
- package/.agent/skills/api-security-auditor/SKILL.md +15 -14
- package/.agent/skills/app-builder/SKILL.md +1 -0
- package/.agent/skills/app-builder/templates/nextjs-fullstack/TEMPLATE.md +2 -2
- package/.agent/skills/app-builder/templates/nextjs-saas/TEMPLATE.md +1 -1
- package/.agent/skills/app-builder/templates/nextjs-static/TEMPLATE.md +12 -12
- package/.agent/skills/app-builder/templates/nuxt-app/TEMPLATE.md +3 -3
- package/.agent/skills/apple-design/SKILL.md +8 -7
- package/.agent/skills/architecture/SKILL.md +3 -2
- package/.agent/skills/audit-and-fix/SKILL.md +8 -5
- package/.agent/skills/authentication-best-practices/SKILL.md +9 -8
- package/.agent/skills/backend-security-expert/SKILL.md +1 -0
- package/.agent/skills/baseline-ui/SKILL.md +8 -7
- package/.agent/skills/bash-linux/SKILL.md +1 -0
- package/.agent/skills/behavioral-modes/SKILL.md +1 -0
- package/.agent/skills/better-colors/SKILL.md +11 -7
- package/.agent/skills/better-typography/SKILL.md +30 -16
- package/.agent/skills/better-ui/SKILL.md +17 -10
- package/.agent/skills/bolder/SKILL.md +6 -0
- package/.agent/skills/brainstorming/SKILL.md +6 -4
- package/.agent/skills/browser-native-ai/SKILL.md +5 -4
- package/.agent/skills/build-primitive/SKILL.md +5 -0
- package/.agent/skills/building-native-ui/SKILL.md +1 -0
- package/.agent/skills/cicd-pro/SKILL.md +2 -1
- package/.agent/skills/clarify/SKILL.md +19 -14
- package/.agent/skills/clean-code/SKILL.md +16 -15
- package/.agent/skills/cloud-architect/SKILL.md +1 -0
- package/.agent/skills/cobejs/SKILL.md +7 -9
- package/.agent/skills/code-review-checklist/SKILL.md +1 -0
- package/.agent/skills/codebase-design/SKILL.md +7 -2
- package/.agent/skills/colorize/SKILL.md +8 -3
- package/.agent/skills/compact-landing/SKILL.md +8 -3
- package/.agent/skills/company-logos/SKILL.md +6 -0
- package/.agent/skills/config-validator/SKILL.md +10 -9
- package/.agent/skills/containerization-pro/SKILL.md +6 -5
- package/.agent/skills/context-engineering-pro/SKILL.md +70 -0
- package/.agent/skills/create-design-md/SKILL.md +13 -5
- package/.agent/skills/critique/SKILL.md +10 -8
- package/.agent/skills/csharp-developer/SKILL.md +1 -0
- package/.agent/skills/data-validation-schemas/SKILL.md +28 -23
- package/.agent/skills/database-design/SKILL.md +2 -1
- package/.agent/skills/delight/SKILL.md +6 -0
- package/.agent/skills/deployment-procedures/SKILL.md +2 -1
- package/.agent/skills/design-lab/SKILL.md +5 -0
- package/.agent/skills/devops-engineer/SKILL.md +3 -2
- package/.agent/skills/devops-incident-responder/SKILL.md +2 -1
- package/.agent/skills/diagnosing-bugs/SKILL.md +12 -2
- package/.agent/skills/distill/SKILL.md +7 -2
- package/.agent/skills/documentation-templates/SKILL.md +3 -2
- package/.agent/skills/domain-modeling/SKILL.md +12 -4
- package/.agent/skills/duckdb-analytical-sql/SKILL.md +59 -0
- package/.agent/skills/edge-ai-mobile/SKILL.md +50 -0
- package/.agent/skills/edge-computing/SKILL.md +9 -8
- package/.agent/skills/emil-design-eng/SKILL.md +43 -27
- package/.agent/skills/error-resilience/SKILL.md +34 -16
- package/.agent/skills/expo-router-v4/SKILL.md +81 -0
- package/.agent/skills/extract-design-system/SKILL.md +12 -11
- package/.agent/skills/fabel-protocol/SKILL.md +24 -17
- package/.agent/skills/fixing-accessibility/SKILL.md +23 -16
- package/.agent/skills/fixing-metadata/SKILL.md +24 -13
- package/.agent/skills/fixing-motion-performance/SKILL.md +7 -5
- package/.agent/skills/framer-motion-expert/SKILL.md +29 -15
- package/.agent/skills/frontend-design/SKILL.md +21 -13
- package/.agent/skills/frontend-security-expert/SKILL.md +1 -0
- package/.agent/skills/game-design-expert/SKILL.md +1 -0
- package/.agent/skills/game-engineering-expert/SKILL.md +1 -0
- package/.agent/skills/generative-ui-expert/SKILL.md +3 -2
- package/.agent/skills/geo-fundamentals/SKILL.md +2 -1
- package/.agent/skills/git-pro/SKILL.md +10 -9
- package/.agent/skills/github-operations/SKILL.md +2 -1
- package/.agent/skills/gpt-taste/SKILL.md +7 -0
- package/.agent/skills/gsap-core/SKILL.md +26 -22
- package/.agent/skills/gsap-frameworks/SKILL.md +6 -5
- package/.agent/skills/gsap-performance/SKILL.md +4 -3
- package/.agent/skills/gsap-plugins/SKILL.md +34 -33
- package/.agent/skills/gsap-react/SKILL.md +9 -8
- package/.agent/skills/gsap-scrolltrigger/SKILL.md +34 -33
- package/.agent/skills/gsap-timeline/SKILL.md +18 -15
- package/.agent/skills/gsap-utils/SKILL.md +25 -24
- package/.agent/skills/harden/SKILL.md +9 -3
- package/.agent/skills/harness-protocol/SKILL.md +1 -0
- package/.agent/skills/i18n-localization/SKILL.md +10 -9
- package/.agent/skills/impeccable/SKILL.md +5 -0
- package/.agent/skills/improve-codebase-architecture/SKILL.md +10 -5
- package/.agent/skills/improve-ui/SKILL.md +12 -5
- package/.agent/skills/intelligent-routing/SKILL.md +7 -6
- package/.agent/skills/knowledge-graph/SKILL.md +1 -0
- package/.agent/skills/landing-page/SKILL.md +1 -0
- package/.agent/skills/lint-and-validate/SKILL.md +9 -4
- package/.agent/skills/llm-engineering/SKILL.md +55 -54
- package/.agent/skills/local-first/SKILL.md +20 -19
- package/.agent/skills/local-first-architecture/SKILL.md +6 -1
- package/.agent/skills/lottie-animation/SKILL.md +7 -3
- package/.agent/skills/marquee-loop/SKILL.md +1 -0
- package/.agent/skills/masked-reveal/SKILL.md +17 -4
- package/.agent/skills/mcp-builder/SKILL.md +13 -10
- package/.agent/skills/micro-interaction/SKILL.md +20 -5
- package/.agent/skills/mobile-design/SKILL.md +26 -15
- package/.agent/skills/monorepo-management/SKILL.md +3 -2
- package/.agent/skills/morphing-icons/SKILL.md +16 -6
- package/.agent/skills/motion-engineering/SKILL.md +19 -15
- package/.agent/skills/nextjs-react-expert/SKILL.md +26 -21
- package/.agent/skills/nodejs-best-practices/SKILL.md +89 -76
- package/.agent/skills/observability/SKILL.md +45 -44
- package/.agent/skills/opentelemetry-observability/SKILL.md +59 -0
- package/.agent/skills/page-transition-animation/SKILL.md +6 -3
- package/.agent/skills/parallel-agents/SKILL.md +7 -2
- package/.agent/skills/performance-profiling/SKILL.md +24 -13
- package/.agent/skills/plan-writing/SKILL.md +1 -0
- package/.agent/skills/platform-engineer/SKILL.md +3 -2
- package/.agent/skills/platform-engineering-opentofu/SKILL.md +68 -0
- package/.agent/skills/playwright-ai-e2e/SKILL.md +60 -0
- package/.agent/skills/playwright-best-practices/SKILL.md +29 -28
- package/.agent/skills/polish/SKILL.md +13 -12
- package/.agent/skills/powershell-windows/SKILL.md +1 -0
- package/.agent/skills/pricing-page/SKILL.md +8 -3
- package/.agent/skills/product-aware-heuristics/SKILL.md +122 -72
- package/.agent/skills/progressive-blur/SKILL.md +9 -4
- package/.agent/skills/project-idioms/SKILL.md +1 -0
- package/.agent/skills/property-based-testing/SKILL.md +58 -0
- package/.agent/skills/python-patterns/SKILL.md +1 -0
- package/.agent/skills/python-pro/SKILL.md +1 -0
- package/.agent/skills/quieter/SKILL.md +6 -0
- package/.agent/skills/react-doctor/SKILL.md +6 -0
- package/.agent/skills/react-specialist/SKILL.md +32 -28
- package/.agent/skills/readme-builder/SKILL.md +1 -0
- package/.agent/skills/realtime-patterns/SKILL.md +34 -33
- package/.agent/skills/red-team-tactics/SKILL.md +1 -0
- package/.agent/skills/redesign-skill/SKILL.md +6 -0
- package/.agent/skills/review-animations/SKILL.md +5 -2
- package/.agent/skills/review-animations/STANDARDS.md +37 -23
- package/.agent/skills/rust-pro/SKILL.md +1 -0
- package/.agent/skills/seo-fundamentals/SKILL.md +4 -3
- package/.agent/skills/server-management/SKILL.md +1 -0
- package/.agent/skills/shadcn-ui-expert/SKILL.md +28 -22
- package/.agent/skills/shape/SKILL.md +9 -2
- package/.agent/skills/skill-creator/SKILL.md +1 -0
- package/.agent/skills/soft-skill/SKILL.md +6 -0
- package/.agent/skills/sounds-on-the-web/SKILL.md +1 -0
- package/.agent/skills/sql-pro/SKILL.md +1 -0
- package/.agent/skills/supabase-postgres-best-practices/SKILL.md +1 -0
- package/.agent/skills/svg-animation/SKILL.md +16 -7
- package/.agent/skills/swiftui-expert/SKILL.md +1 -0
- package/.agent/skills/swiss-design/SKILL.md +5 -0
- package/.agent/skills/system-design-pro/SKILL.md +1 -0
- package/.agent/skills/systematic-debugging/SKILL.md +1 -0
- package/.agent/skills/tailwind-patterns/SKILL.md +25 -11
- package/.agent/skills/taste-skill/SKILL.md +6 -0
- package/.agent/skills/tdd-workflow/SKILL.md +5 -0
- package/.agent/skills/test-result-analyzer/SKILL.md +1 -0
- package/.agent/skills/testing-patterns/SKILL.md +123 -115
- package/.agent/skills/thermo-nuclear-code-quality-review/SKILL.md +5 -0
- package/.agent/skills/thinking-protocol/SKILL.md +3 -0
- package/.agent/skills/to-spring-or-not-to-spring/SKILL.md +9 -8
- package/.agent/skills/transitions-dev/SKILL.md +19 -6
- package/.agent/skills/trend-researcher/SKILL.md +1 -0
- package/.agent/skills/typescript-advanced/SKILL.md +23 -18
- package/.agent/skills/typeset/SKILL.md +10 -1
- package/.agent/skills/ui-reasoning-engine/SKILL.md +67 -48
- package/.agent/skills/ui-skill-packs/SKILL.md +6 -1
- package/.agent/skills/ui-skills-root/SKILL.md +39 -38
- package/.agent/skills/ui-ux-pro-max/SKILL.md +34 -26
- package/.agent/skills/ui-ux-researcher/SKILL.md +1 -0
- package/.agent/skills/vector-search-pgvector/SKILL.md +78 -0
- package/.agent/skills/vue-expert/SKILL.md +22 -19
- package/.agent/skills/vulnerability-scanner/SKILL.md +22 -21
- package/.agent/skills/web-accessibility-auditor/SKILL.md +2 -1
- package/.agent/skills/web-design-guidelines/SKILL.md +16 -10
- package/.agent/skills/web-quality-audit/SKILL.md +5 -0
- package/.agent/skills/webapp-testing/SKILL.md +14 -13
- package/.agent/skills/webgpu-performance/SKILL.md +1 -0
- package/.agent/skills/whimsy-injector/SKILL.md +9 -5
- package/.agent/skills/workflow-optimizer/SKILL.md +1 -0
- package/.agent/skills/zero-trust-passkeys/SKILL.md +90 -0
- package/.agent/templates/DESIGN.md +119 -110
- package/.agent/templates/design-tokens.json +9 -6
- package/.agent/workflows/acf.md +1 -0
- package/.agent/workflows/api-tester.md +1 -0
- package/.agent/workflows/audit.md +1 -0
- package/.agent/workflows/brainstorm.md +1 -0
- package/.agent/workflows/changelog.md +1 -0
- package/.agent/workflows/contract.md +60 -0
- package/.agent/workflows/create.md +1 -0
- package/.agent/workflows/debug.md +1 -0
- package/.agent/workflows/deploy.md +1 -0
- package/.agent/workflows/enhance.md +1 -0
- package/.agent/workflows/fix-ci.md +89 -0
- package/.agent/workflows/fix.md +1 -0
- package/.agent/workflows/generate.md +1 -0
- package/.agent/workflows/marathon.md +1 -0
- package/.agent/workflows/migrate.md +1 -0
- package/.agent/workflows/minimal.md +9 -7
- package/.agent/workflows/orchestrate.md +1 -0
- package/.agent/workflows/performance-benchmarker.md +1 -0
- package/.agent/workflows/pipeline.md +26 -21
- package/.agent/workflows/plan.md +1 -0
- package/.agent/workflows/preview.md +1 -0
- package/.agent/workflows/refactor.md +3 -2
- package/.agent/workflows/review-ai.md +4 -3
- package/.agent/workflows/review.md +1 -0
- package/.agent/workflows/session.md +1 -0
- package/.agent/workflows/status.md +1 -0
- package/.agent/workflows/strengthen-skills.md +1 -0
- package/.agent/workflows/super-prompt.md +1 -0
- package/.agent/workflows/swarm.md +15 -3
- package/.agent/workflows/test.md +8 -7
- package/.agent/workflows/tribunal-backend.md +3 -2
- package/.agent/workflows/tribunal-cicd.md +104 -0
- package/.agent/workflows/tribunal-database.md +1 -0
- package/.agent/workflows/tribunal-frontend.md +8 -6
- package/.agent/workflows/tribunal-full.md +15 -14
- package/.agent/workflows/tribunal-mobile.md +6 -5
- package/.agent/workflows/tribunal-performance.md +1 -0
- package/.agent/workflows/tribunal-speed.md +1 -0
- package/.agent/workflows/tribunal-ui.md +29 -21
- package/.agent/workflows/ui-ux-pro-max.md +19 -15
- package/CONTRIBUTING.md +3 -3
- package/README.md +160 -88
- package/SECURITY.md +11 -11
- package/bin/mcp-server.js +512 -233
- package/bin/tribunal-kit.js +29 -30
- package/bin/wrapper.js +45 -48
- package/dist/cli.js +26 -0
- package/dist/commands/case.js +2 -0
- package/dist/commands/contract.js +440 -0
- package/dist/commands/memory.js +3 -2
- package/dist/commands/native.js +36 -0
- package/dist/commands/status.js +6 -0
- package/dist/esm/index.mjs +32 -0
- package/dist/index.d.ts +58 -3
- package/package.json +20 -16
- package/scripts/benchmark.js +62 -86
- package/scripts/changelog.js +67 -73
- package/scripts/fix-vbc.js +13 -15
- package/scripts/fix-vbc.ps1 +2 -118
- package/scripts/stress_benchmark.js +358 -0
- package/scripts/sync-version.js +71 -41
- package/scripts/validate-payload.js +23 -30
- package/scripts/visual_audit.js +23 -13
|
@@ -2,275 +2,2046 @@
|
|
|
2
2
|
"version": "3.0.0",
|
|
3
3
|
"last_updated": "2026-07-30",
|
|
4
4
|
"summary": {
|
|
5
|
-
"total_agents":
|
|
6
|
-
"total_workflows":
|
|
7
|
-
"total_skills":
|
|
5
|
+
"total_agents": 52,
|
|
6
|
+
"total_workflows": 40,
|
|
7
|
+
"total_skills": 183
|
|
8
8
|
},
|
|
9
9
|
"agents": [
|
|
10
|
-
{
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
{
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
{
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
10
|
+
{
|
|
11
|
+
"name": "logic-reviewer",
|
|
12
|
+
"file": "agents/logic-reviewer.md",
|
|
13
|
+
"type": "reviewer",
|
|
14
|
+
"routing_domain": "general",
|
|
15
|
+
"routing_tier": "core",
|
|
16
|
+
"description": "Always active reviewer for logic errors and boundary checks.",
|
|
17
|
+
"trigger_keywords": ["logic", "bug", "boundary", "condition", "edge case"]
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "security-auditor",
|
|
21
|
+
"file": "agents/security-auditor.md",
|
|
22
|
+
"type": "reviewer",
|
|
23
|
+
"routing_domain": "security",
|
|
24
|
+
"routing_tier": "core",
|
|
25
|
+
"description": "OWASP Top 10 security scanner and vulnerability auditor.",
|
|
26
|
+
"trigger_keywords": ["security", "owasp", "injection", "vulnerability", "auth"]
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "pipeline-reviewer",
|
|
30
|
+
"file": "agents/pipeline-reviewer.md",
|
|
31
|
+
"type": "reviewer",
|
|
32
|
+
"routing_domain": "devops",
|
|
33
|
+
"routing_tier": "specialized",
|
|
34
|
+
"description": "CI/CD Pipeline & Workflow Auditor for GitHub Actions, GitLab CI, and Dockerfiles.",
|
|
35
|
+
"trigger_keywords": ["ci/cd", "pipeline", "github actions", "workflow", "dockerfile"]
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "precedence-reviewer",
|
|
39
|
+
"file": "agents/precedence-reviewer.md",
|
|
40
|
+
"type": "reviewer",
|
|
41
|
+
"routing_domain": "general",
|
|
42
|
+
"routing_tier": "core",
|
|
43
|
+
"description": "Checks Case Law and architectural precedence before generation.",
|
|
44
|
+
"trigger_keywords": ["precedence", "case law", "pattern", "convention"]
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "complexity-reviewer",
|
|
48
|
+
"file": "agents/complexity-reviewer.md",
|
|
49
|
+
"type": "reviewer",
|
|
50
|
+
"routing_domain": "general",
|
|
51
|
+
"routing_tier": "core",
|
|
52
|
+
"description": "Checks over-engineering and Dependency Ladder compliance.",
|
|
53
|
+
"trigger_keywords": ["complexity", "ladder", "overengineering", "simplification"]
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"name": "minimalist-reviewer",
|
|
57
|
+
"file": "agents/minimalist-reviewer.md",
|
|
58
|
+
"type": "reviewer",
|
|
59
|
+
"routing_domain": "general",
|
|
60
|
+
"routing_tier": "core",
|
|
61
|
+
"description": "Minimal Change Governance reviewer enforcing smallest correct maintainable change.",
|
|
62
|
+
"trigger_keywords": ["minimal", "change budget", "minimality", "reuse", "abstraction"]
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "type-safety-reviewer",
|
|
66
|
+
"file": "agents/type-safety-reviewer.md",
|
|
67
|
+
"type": "reviewer",
|
|
68
|
+
"routing_domain": "general",
|
|
69
|
+
"routing_tier": "specialized",
|
|
70
|
+
"description": "TypeScript type safety and strict mode validation.",
|
|
71
|
+
"trigger_keywords": ["typescript", "type", "any", "generics", "interface"]
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "dependency-reviewer",
|
|
75
|
+
"file": "agents/dependency-reviewer.md",
|
|
76
|
+
"type": "reviewer",
|
|
77
|
+
"routing_domain": "backend",
|
|
78
|
+
"routing_tier": "specialized",
|
|
79
|
+
"description": "Phantom package and package.json audit.",
|
|
80
|
+
"trigger_keywords": ["dependency", "npm", "package", "import", "version"]
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "resilience-reviewer",
|
|
84
|
+
"file": "agents/resilience-reviewer.md",
|
|
85
|
+
"type": "reviewer",
|
|
86
|
+
"routing_domain": "backend",
|
|
87
|
+
"routing_tier": "specialized",
|
|
88
|
+
"description": "Fault tolerance, retries, and error boundaries.",
|
|
89
|
+
"trigger_keywords": ["resilience", "retry", "circuit breaker", "timeout"]
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "schema-reviewer",
|
|
93
|
+
"file": "agents/schema-reviewer.md",
|
|
94
|
+
"type": "reviewer",
|
|
95
|
+
"routing_domain": "backend",
|
|
96
|
+
"routing_tier": "specialized",
|
|
97
|
+
"description": "Zod and Pydantic validation schema auditor.",
|
|
98
|
+
"trigger_keywords": ["schema", "zod", "pydantic", "validation", "contract"]
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"name": "frontend-reviewer",
|
|
102
|
+
"file": "agents/frontend-reviewer.md",
|
|
103
|
+
"type": "reviewer",
|
|
104
|
+
"routing_domain": "frontend",
|
|
105
|
+
"routing_tier": "specialized",
|
|
106
|
+
"description": "React Server Components, hooks, and state mutation auditor.",
|
|
107
|
+
"trigger_keywords": ["frontend", "react", "hooks", "component", "state"]
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"name": "ui-ux-auditor",
|
|
111
|
+
"file": "agents/ui-ux-auditor.md",
|
|
112
|
+
"type": "reviewer",
|
|
113
|
+
"routing_domain": "frontend",
|
|
114
|
+
"routing_tier": "specialized",
|
|
115
|
+
"description": "Usability heuristics and responsive spatial auditor.",
|
|
116
|
+
"trigger_keywords": ["ui", "ux", "layout", "spatial", "heuristics"]
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"name": "visual-reviewer",
|
|
120
|
+
"file": "agents/visual-reviewer.md",
|
|
121
|
+
"type": "reviewer",
|
|
122
|
+
"routing_domain": "frontend",
|
|
123
|
+
"routing_tier": "specialized",
|
|
124
|
+
"description": "Visual hierarchy, typography, and OKLCH color palettes.",
|
|
125
|
+
"trigger_keywords": ["visual", "typography", "oklch", "color", "palette"]
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"name": "interaction-reviewer",
|
|
129
|
+
"file": "agents/interaction-reviewer.md",
|
|
130
|
+
"type": "reviewer",
|
|
131
|
+
"routing_domain": "motion",
|
|
132
|
+
"routing_tier": "specialized",
|
|
133
|
+
"description": "Hover, focus, active states, and micro-interactions.",
|
|
134
|
+
"trigger_keywords": ["interaction", "hover", "focus", "microinteraction", "state"]
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"name": "anti-pattern-reviewer",
|
|
138
|
+
"file": "agents/anti-pattern-reviewer.md",
|
|
139
|
+
"type": "reviewer",
|
|
140
|
+
"routing_domain": "frontend",
|
|
141
|
+
"routing_tier": "specialized",
|
|
142
|
+
"description": "Banned AI clichés auditor (purple gradients, generic hero).",
|
|
143
|
+
"trigger_keywords": ["antipattern", "cliché", "gradient", "ai aesthetic"]
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"name": "accessibility-reviewer",
|
|
147
|
+
"file": "agents/accessibility-reviewer.md",
|
|
148
|
+
"type": "reviewer",
|
|
149
|
+
"routing_domain": "frontend",
|
|
150
|
+
"routing_tier": "specialized",
|
|
151
|
+
"description": "WCAG 2.2 AA accessibility and ARIA attribute auditor.",
|
|
152
|
+
"trigger_keywords": ["accessibility", "a11y", "wcag", "aria", "contrast"]
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"name": "sql-reviewer",
|
|
156
|
+
"file": "agents/sql-reviewer.md",
|
|
157
|
+
"type": "reviewer",
|
|
158
|
+
"routing_domain": "database",
|
|
159
|
+
"routing_tier": "specialized",
|
|
160
|
+
"description": "SQL parameterization and transaction integrity auditor.",
|
|
161
|
+
"trigger_keywords": ["sql", "query", "orm", "transaction", "injection"]
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"name": "db-latency-auditor",
|
|
165
|
+
"file": "agents/db-latency-auditor.md",
|
|
166
|
+
"type": "reviewer",
|
|
167
|
+
"routing_domain": "database",
|
|
168
|
+
"routing_tier": "specialized",
|
|
169
|
+
"description": "Slow query detection and N+1 query auditor.",
|
|
170
|
+
"trigger_keywords": ["latency", "slow query", "n+1", "index", "database"]
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"name": "mobile-reviewer",
|
|
174
|
+
"file": "agents/mobile-reviewer.md",
|
|
175
|
+
"type": "reviewer",
|
|
176
|
+
"routing_domain": "mobile",
|
|
177
|
+
"routing_tier": "specialized",
|
|
178
|
+
"description": "React Native, Expo Router, and 60fps gesture auditor.",
|
|
179
|
+
"trigger_keywords": ["mobile", "react native", "expo", "gesture", "reanimated"]
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"name": "performance-reviewer",
|
|
183
|
+
"file": "agents/performance-reviewer.md",
|
|
184
|
+
"type": "reviewer",
|
|
185
|
+
"routing_domain": "general",
|
|
186
|
+
"routing_tier": "specialized",
|
|
187
|
+
"description": "O(n2) bottlenecks, layout thrashing, and memory leaks auditor.",
|
|
188
|
+
"trigger_keywords": ["performance", "memory leak", "bottleneck", "profiling"]
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"name": "vitals-reviewer",
|
|
192
|
+
"file": "agents/vitals-reviewer.md",
|
|
193
|
+
"type": "reviewer",
|
|
194
|
+
"routing_domain": "frontend",
|
|
195
|
+
"routing_tier": "specialized",
|
|
196
|
+
"description": "Core Web Vitals auditor (LCP, CLS, INP, TTFB).",
|
|
197
|
+
"trigger_keywords": ["vitals", "cwv", "lcp", "cls", "inp", "ttfb"]
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"name": "throughput-optimizer",
|
|
201
|
+
"file": "agents/throughput-optimizer.md",
|
|
202
|
+
"type": "reviewer",
|
|
203
|
+
"routing_domain": "backend",
|
|
204
|
+
"routing_tier": "specialized",
|
|
205
|
+
"description": "Node event loop blocking and concurrency optimizer.",
|
|
206
|
+
"trigger_keywords": ["throughput", "concurrency", "event loop", "streaming"]
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"name": "ai-code-reviewer",
|
|
210
|
+
"file": "agents/ai-code-reviewer.md",
|
|
211
|
+
"type": "reviewer",
|
|
212
|
+
"routing_domain": "ai-llm",
|
|
213
|
+
"routing_tier": "specialized",
|
|
214
|
+
"description": "LLM API integration and prompt injection defense auditor.",
|
|
215
|
+
"trigger_keywords": ["ai", "llm", "openai", "anthropic", "prompt injection"]
|
|
216
|
+
},
|
|
32
217
|
|
|
33
|
-
{
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
{
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
{
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
{
|
|
61
|
-
|
|
218
|
+
{
|
|
219
|
+
"name": "supervisor-agent",
|
|
220
|
+
"file": "agents/supervisor-agent.md",
|
|
221
|
+
"type": "specialist",
|
|
222
|
+
"routing_domain": "orchestration",
|
|
223
|
+
"routing_tier": "expert",
|
|
224
|
+
"description": "Swarm triage, worker dispatch, and result synthesis.",
|
|
225
|
+
"trigger_keywords": ["swarm", "supervisor", "dispatch", "triage", "synthesis"]
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"name": "orchestrator",
|
|
229
|
+
"file": "agents/orchestrator.md",
|
|
230
|
+
"type": "specialist",
|
|
231
|
+
"routing_domain": "orchestration",
|
|
232
|
+
"routing_tier": "expert",
|
|
233
|
+
"description": "Multi-agent workflow coordination and fan-out/fan-in.",
|
|
234
|
+
"trigger_keywords": ["orchestrate", "multi-agent", "fan-out", "coordination"]
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"name": "agent-organizer",
|
|
238
|
+
"file": "agents/agent-organizer.md",
|
|
239
|
+
"type": "specialist",
|
|
240
|
+
"routing_domain": "orchestration",
|
|
241
|
+
"routing_tier": "expert",
|
|
242
|
+
"description": "Specialist agent ecosystem management and memory distillation.",
|
|
243
|
+
"trigger_keywords": ["agent organizer", "sub-agent", "memory", "ecosystem"]
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"name": "project-planner",
|
|
247
|
+
"file": "agents/project-planner.md",
|
|
248
|
+
"type": "specialist",
|
|
249
|
+
"routing_domain": "general",
|
|
250
|
+
"routing_tier": "core",
|
|
251
|
+
"description": "4-phase structured implementation planning.",
|
|
252
|
+
"trigger_keywords": ["plan", "planning", "roadmap", "architecture", "phase"]
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"name": "backend-specialist",
|
|
256
|
+
"file": "agents/backend-specialist.md",
|
|
257
|
+
"type": "specialist",
|
|
258
|
+
"routing_domain": "backend",
|
|
259
|
+
"routing_tier": "specialized",
|
|
260
|
+
"description": "Node.js, Express, Hono, API design, and Server Actions.",
|
|
261
|
+
"trigger_keywords": ["backend", "api", "express", "hono", "server actions"]
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"name": "frontend-specialist",
|
|
265
|
+
"file": "agents/frontend-specialist.md",
|
|
266
|
+
"type": "specialist",
|
|
267
|
+
"routing_domain": "frontend",
|
|
268
|
+
"routing_tier": "specialized",
|
|
269
|
+
"description": "Modern web UI, CSS systems, and component architecture.",
|
|
270
|
+
"trigger_keywords": ["frontend", "ui", "css", "component", "web"]
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"name": "react-specialist",
|
|
274
|
+
"file": "agents/react-specialist.md",
|
|
275
|
+
"type": "specialist",
|
|
276
|
+
"routing_domain": "frontend",
|
|
277
|
+
"routing_tier": "specialized",
|
|
278
|
+
"description": "React 19, Server Components, Zustand, and TanStack Query.",
|
|
279
|
+
"trigger_keywords": ["react", "server components", "zustand", "tanstack"]
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"name": "nextjs-react-expert",
|
|
283
|
+
"file": "agents/nextjs-react-expert.md",
|
|
284
|
+
"type": "specialist",
|
|
285
|
+
"routing_domain": "frontend",
|
|
286
|
+
"routing_tier": "expert",
|
|
287
|
+
"description": "Next.js 15 App Router, PPR, Server Actions, and Middleware.",
|
|
288
|
+
"trigger_keywords": ["nextjs", "app router", "ppr", "server actions", "middleware"]
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"name": "vue-expert",
|
|
292
|
+
"file": "agents/vue-expert.md",
|
|
293
|
+
"type": "specialist",
|
|
294
|
+
"routing_domain": "frontend",
|
|
295
|
+
"routing_tier": "specialized",
|
|
296
|
+
"description": "Vue 3.5+, Composition API, Nuxt 4, and Pinia.",
|
|
297
|
+
"trigger_keywords": ["vue", "nuxt", "pinia", "composition api"]
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"name": "python-pro",
|
|
301
|
+
"file": "agents/python-pro.md",
|
|
302
|
+
"type": "specialist",
|
|
303
|
+
"routing_domain": "backend",
|
|
304
|
+
"routing_tier": "specialized",
|
|
305
|
+
"description": "Python 3.12+, FastAPI, Pydantic v2, Asyncio, and Pytest.",
|
|
306
|
+
"trigger_keywords": ["python", "fastapi", "pydantic", "asyncio", "pytest"]
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"name": "rust-pro",
|
|
310
|
+
"file": "agents/rust-pro.md",
|
|
311
|
+
"type": "specialist",
|
|
312
|
+
"routing_domain": "backend",
|
|
313
|
+
"routing_tier": "expert",
|
|
314
|
+
"description": "Rust 1.75+, Tokio async, Axum, Serde, and memory safety.",
|
|
315
|
+
"trigger_keywords": ["rust", "tokio", "axum", "serde", "memory safety"]
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"name": "csharp-developer",
|
|
319
|
+
"file": "agents/csharp-developer.md",
|
|
320
|
+
"type": "specialist",
|
|
321
|
+
"routing_domain": "backend",
|
|
322
|
+
"routing_tier": "specialized",
|
|
323
|
+
"description": "C# 12, .NET 8/9, ASP.NET Core, and Blazor architecture.",
|
|
324
|
+
"trigger_keywords": ["csharp", "dotnet", "aspnet", "blazor"]
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"name": "database-architect",
|
|
328
|
+
"file": "agents/database-architect.md",
|
|
329
|
+
"type": "specialist",
|
|
330
|
+
"routing_domain": "database",
|
|
331
|
+
"routing_tier": "expert",
|
|
332
|
+
"description": "Data modeling, Prisma/Drizzle schema design, and migrations.",
|
|
333
|
+
"trigger_keywords": ["database", "prisma", "drizzle", "migration", "schema"]
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"name": "sql-pro",
|
|
337
|
+
"file": "agents/sql-pro.md",
|
|
338
|
+
"type": "specialist",
|
|
339
|
+
"routing_domain": "database",
|
|
340
|
+
"routing_tier": "specialized",
|
|
341
|
+
"description": "PostgreSQL, Supabase RLS, and complex analytical SQL.",
|
|
342
|
+
"trigger_keywords": ["sql", "postgresql", "supabase", "rls", "query"]
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"name": "mobile-developer",
|
|
346
|
+
"file": "agents/mobile-developer.md",
|
|
347
|
+
"type": "specialist",
|
|
348
|
+
"routing_domain": "mobile",
|
|
349
|
+
"routing_tier": "specialized",
|
|
350
|
+
"description": "Expo, React Native, Flutter, and native modules.",
|
|
351
|
+
"trigger_keywords": ["mobile", "expo", "react native", "flutter", "native"]
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"name": "devops-engineer",
|
|
355
|
+
"file": "agents/devops-engineer.md",
|
|
356
|
+
"type": "specialist",
|
|
357
|
+
"routing_domain": "devops",
|
|
358
|
+
"routing_tier": "specialized",
|
|
359
|
+
"description": "Docker, CI/CD pipelines, GitHub Actions, and deployment.",
|
|
360
|
+
"trigger_keywords": ["devops", "docker", "cicd", "github actions", "deploy"]
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"name": "platform-engineer",
|
|
364
|
+
"file": "agents/platform-engineer.md",
|
|
365
|
+
"type": "specialist",
|
|
366
|
+
"routing_domain": "devops",
|
|
367
|
+
"routing_tier": "expert",
|
|
368
|
+
"description": "Cloud-native infrastructure, Kubernetes, and Terraform.",
|
|
369
|
+
"trigger_keywords": ["platform", "kubernetes", "terraform", "infrastructure"]
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"name": "cloud-engineer",
|
|
373
|
+
"file": "agents/cloud-engineer.md",
|
|
374
|
+
"type": "specialist",
|
|
375
|
+
"routing_domain": "devops",
|
|
376
|
+
"routing_tier": "specialized",
|
|
377
|
+
"description": "AWS, Serverless, IaC, and edge computing topology.",
|
|
378
|
+
"trigger_keywords": ["cloud", "aws", "serverless", "iac", "edge"]
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"name": "devops-incident-responder",
|
|
382
|
+
"file": "agents/devops-incident-responder.md",
|
|
383
|
+
"type": "specialist",
|
|
384
|
+
"routing_domain": "devops",
|
|
385
|
+
"routing_tier": "expert",
|
|
386
|
+
"description": "Production incident root cause investigation and hotfixes.",
|
|
387
|
+
"trigger_keywords": ["incident", "production error", "outage", "hotfix"]
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"name": "debugger",
|
|
391
|
+
"file": "agents/debugger.md",
|
|
392
|
+
"type": "specialist",
|
|
393
|
+
"routing_domain": "general",
|
|
394
|
+
"routing_tier": "specialized",
|
|
395
|
+
"description": "4-phase systematic debugging and traceback isolation.",
|
|
396
|
+
"trigger_keywords": ["debug", "traceback", "stack trace", "error", "fix"]
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"name": "system-architect",
|
|
400
|
+
"file": "agents/system-architect.md",
|
|
401
|
+
"type": "specialist",
|
|
402
|
+
"routing_domain": "general",
|
|
403
|
+
"routing_tier": "expert",
|
|
404
|
+
"description": "Capacity planning, scale estimation, and distributed systems.",
|
|
405
|
+
"trigger_keywords": ["system architect", "system design", "scale", "capacity"]
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"name": "code-archaeologist",
|
|
409
|
+
"file": "agents/code-archaeologist.md",
|
|
410
|
+
"type": "specialist",
|
|
411
|
+
"routing_domain": "general",
|
|
412
|
+
"routing_tier": "specialized",
|
|
413
|
+
"description": "Legacy codebase analysis, debt mapping, and seams.",
|
|
414
|
+
"trigger_keywords": ["legacy", "code debt", "refactor", "archaeology"]
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"name": "explorer-agent",
|
|
418
|
+
"file": "agents/explorer-agent.md",
|
|
419
|
+
"type": "specialist",
|
|
420
|
+
"routing_domain": "general",
|
|
421
|
+
"routing_tier": "basic",
|
|
422
|
+
"description": "Unknown codebase mapping and dependency graph discovery.",
|
|
423
|
+
"trigger_keywords": ["explore", "unknown codebase", "mapping", "dependency"]
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"name": "documentation-writer",
|
|
427
|
+
"file": "agents/documentation-writer.md",
|
|
428
|
+
"type": "specialist",
|
|
429
|
+
"routing_domain": "general",
|
|
430
|
+
"routing_tier": "specialized",
|
|
431
|
+
"description": "Technical documentation, OpenAPI, and README generation.",
|
|
432
|
+
"trigger_keywords": ["documentation", "readme", "openapi", "docs"]
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"name": "test-engineer",
|
|
436
|
+
"file": "agents/test-engineer.md",
|
|
437
|
+
"type": "specialist",
|
|
438
|
+
"routing_domain": "general",
|
|
439
|
+
"routing_tier": "specialized",
|
|
440
|
+
"description": "Testing Trophy strategy and behavioral test design.",
|
|
441
|
+
"trigger_keywords": ["test", "jest", "vitest", "coverage", "unit test"]
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"name": "qa-automation-engineer",
|
|
445
|
+
"file": "agents/qa-automation-engineer.md",
|
|
446
|
+
"type": "specialist",
|
|
447
|
+
"routing_domain": "general",
|
|
448
|
+
"routing_tier": "specialized",
|
|
449
|
+
"description": "E2E Playwright testing and CI test automation.",
|
|
450
|
+
"trigger_keywords": ["qa", "e2e", "playwright", "test automation"]
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"name": "seo-specialist",
|
|
454
|
+
"file": "agents/seo-specialist.md",
|
|
455
|
+
"type": "specialist",
|
|
456
|
+
"routing_domain": "frontend",
|
|
457
|
+
"routing_tier": "specialized",
|
|
458
|
+
"description": "Technical SEO, OpenGraph, and Core Web Vitals optimization.",
|
|
459
|
+
"trigger_keywords": ["seo", "opengraph", "meta tags", "sitemap"]
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"name": "product-manager",
|
|
463
|
+
"file": "agents/product-manager.md",
|
|
464
|
+
"type": "specialist",
|
|
465
|
+
"routing_domain": "general",
|
|
466
|
+
"routing_tier": "specialized",
|
|
467
|
+
"description": "Feature prioritization, scope control, and user stories.",
|
|
468
|
+
"trigger_keywords": ["product manager", "feature priority", "scope", "requirements"]
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"name": "product-owner",
|
|
472
|
+
"file": "agents/product-owner.md",
|
|
473
|
+
"type": "specialist",
|
|
474
|
+
"routing_domain": "general",
|
|
475
|
+
"routing_tier": "specialized",
|
|
476
|
+
"description": "Backlog management and acceptance criteria verification.",
|
|
477
|
+
"trigger_keywords": ["product owner", "backlog", "user story", "acceptance criteria"]
|
|
478
|
+
}
|
|
62
479
|
],
|
|
63
480
|
"workflows": [
|
|
64
|
-
{
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
{
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
{
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
{
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
481
|
+
{
|
|
482
|
+
"command": "/generate",
|
|
483
|
+
"name": "generate",
|
|
484
|
+
"file": "workflows/generate.md",
|
|
485
|
+
"description": "Full Tribunal: Maker -> Parallel Review -> Human Gate",
|
|
486
|
+
"routing_domain": "general",
|
|
487
|
+
"routing_tier": "core",
|
|
488
|
+
"trigger_keywords": ["generate", "build", "create code", "write"]
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"command": "/review",
|
|
492
|
+
"name": "review",
|
|
493
|
+
"file": "workflows/review.md",
|
|
494
|
+
"description": "Pure read-only hallucination audit",
|
|
495
|
+
"routing_domain": "general",
|
|
496
|
+
"routing_tier": "core",
|
|
497
|
+
"trigger_keywords": ["review", "audit code", "hallucination check"]
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"command": "/tribunal-full",
|
|
501
|
+
"name": "tribunal-full",
|
|
502
|
+
"file": "workflows/tribunal-full.md",
|
|
503
|
+
"description": "Comprehensive 21-reviewer parallel audit",
|
|
504
|
+
"routing_domain": "general",
|
|
505
|
+
"routing_tier": "expert",
|
|
506
|
+
"trigger_keywords": ["tribunal full", "full review", "pre-merge audit"]
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"command": "/tribunal-backend",
|
|
510
|
+
"name": "tribunal-backend",
|
|
511
|
+
"file": "workflows/tribunal-backend.md",
|
|
512
|
+
"description": "Logic + Security + Deps + Type Safety + Resilience + Schema",
|
|
513
|
+
"routing_domain": "backend",
|
|
514
|
+
"routing_tier": "specialized",
|
|
515
|
+
"trigger_keywords": ["tribunal backend", "api review", "server audit"]
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"command": "/tribunal-frontend",
|
|
519
|
+
"name": "tribunal-frontend",
|
|
520
|
+
"file": "workflows/tribunal-frontend.md",
|
|
521
|
+
"description": "Logic + Security + Frontend + Types + UI/UX + Motion + Visual",
|
|
522
|
+
"routing_domain": "frontend",
|
|
523
|
+
"routing_tier": "specialized",
|
|
524
|
+
"trigger_keywords": ["tribunal frontend", "react audit", "ui review"]
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
"command": "/tribunal-database",
|
|
528
|
+
"name": "tribunal-database",
|
|
529
|
+
"file": "workflows/tribunal-database.md",
|
|
530
|
+
"description": "Logic + Security + SQL parameterization audit",
|
|
531
|
+
"routing_domain": "database",
|
|
532
|
+
"routing_tier": "specialized",
|
|
533
|
+
"trigger_keywords": ["tribunal database", "sql audit", "orm review"]
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
"command": "/tribunal-mobile",
|
|
537
|
+
"name": "tribunal-mobile",
|
|
538
|
+
"file": "workflows/tribunal-mobile.md",
|
|
539
|
+
"description": "Logic + Security + Mobile 60fps Reanimated audit",
|
|
540
|
+
"routing_domain": "mobile",
|
|
541
|
+
"routing_tier": "specialized",
|
|
542
|
+
"trigger_keywords": ["tribunal mobile", "react native review"]
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
"command": "/tribunal-performance",
|
|
546
|
+
"name": "tribunal-performance",
|
|
547
|
+
"file": "workflows/tribunal-performance.md",
|
|
548
|
+
"description": "Logic + Performance optimization audit",
|
|
549
|
+
"routing_domain": "general",
|
|
550
|
+
"routing_tier": "specialized",
|
|
551
|
+
"trigger_keywords": ["tribunal performance", "perf audit", "optimization"]
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"command": "/tribunal-ui",
|
|
555
|
+
"name": "tribunal-ui",
|
|
556
|
+
"file": "workflows/tribunal-ui.md",
|
|
557
|
+
"description": "Dedicated UI/UX design heuristics audit",
|
|
558
|
+
"routing_domain": "frontend",
|
|
559
|
+
"routing_tier": "specialized",
|
|
560
|
+
"trigger_keywords": ["tribunal ui", "design audit", "heuristics"]
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"command": "/tribunal-speed",
|
|
564
|
+
"name": "tribunal-speed",
|
|
565
|
+
"file": "workflows/tribunal-speed.md",
|
|
566
|
+
"description": "Full-stack parallel performance swarm (max 5 AI calls)",
|
|
567
|
+
"routing_domain": "general",
|
|
568
|
+
"routing_tier": "expert",
|
|
569
|
+
"trigger_keywords": ["tribunal speed", "latency swarm", "fast perf"]
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"command": "/brainstorm",
|
|
573
|
+
"name": "brainstorm",
|
|
574
|
+
"file": "workflows/brainstorm.md",
|
|
575
|
+
"description": "Socratic exploration mode - 3 options & tradeoffs",
|
|
576
|
+
"routing_domain": "general",
|
|
577
|
+
"routing_tier": "core",
|
|
578
|
+
"trigger_keywords": ["brainstorm", "options", "explore", "tradeoffs"]
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"command": "/create",
|
|
582
|
+
"name": "create",
|
|
583
|
+
"file": "workflows/create.md",
|
|
584
|
+
"description": "Full application creation from requirements to scaffold",
|
|
585
|
+
"routing_domain": "general",
|
|
586
|
+
"routing_tier": "core",
|
|
587
|
+
"trigger_keywords": ["create app", "scaffold", "new project"]
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
"command": "/enhance",
|
|
591
|
+
"name": "enhance",
|
|
592
|
+
"file": "workflows/enhance.md",
|
|
593
|
+
"description": "Dependency-safe feature addition & impact analysis",
|
|
594
|
+
"routing_domain": "general",
|
|
595
|
+
"routing_tier": "core",
|
|
596
|
+
"trigger_keywords": ["enhance", "add feature", "update component"]
|
|
597
|
+
},
|
|
598
|
+
{
|
|
599
|
+
"command": "/debug",
|
|
600
|
+
"name": "debug",
|
|
601
|
+
"file": "workflows/debug.md",
|
|
602
|
+
"description": "4-phase systematic root cause investigation",
|
|
603
|
+
"routing_domain": "general",
|
|
604
|
+
"routing_tier": "core",
|
|
605
|
+
"trigger_keywords": ["debug", "fix bug", "root cause", "error"]
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"command": "/plan",
|
|
609
|
+
"name": "plan",
|
|
610
|
+
"file": "workflows/plan.md",
|
|
611
|
+
"description": "Strategic 4-phase implementation planning",
|
|
612
|
+
"routing_domain": "general",
|
|
613
|
+
"routing_tier": "core",
|
|
614
|
+
"trigger_keywords": ["plan", "implementation plan", "spec"]
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"command": "/deploy",
|
|
618
|
+
"name": "deploy",
|
|
619
|
+
"file": "workflows/deploy.md",
|
|
620
|
+
"description": "Pre-flight safety checks & production release gates",
|
|
621
|
+
"routing_domain": "devops",
|
|
622
|
+
"routing_tier": "specialized",
|
|
623
|
+
"trigger_keywords": ["deploy", "release", "production"]
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
"command": "/test",
|
|
627
|
+
"name": "test",
|
|
628
|
+
"file": "workflows/test.md",
|
|
629
|
+
"description": "Behavioral test generation & execution",
|
|
630
|
+
"routing_domain": "general",
|
|
631
|
+
"routing_tier": "specialized",
|
|
632
|
+
"trigger_keywords": ["test", "run tests", "generate tests"]
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
"command": "/preview",
|
|
636
|
+
"name": "preview",
|
|
637
|
+
"file": "workflows/preview.md",
|
|
638
|
+
"description": "Local dev server lifecycle management",
|
|
639
|
+
"routing_domain": "general",
|
|
640
|
+
"routing_tier": "basic",
|
|
641
|
+
"trigger_keywords": ["preview", "dev server", "npm run dev"]
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
"command": "/status",
|
|
645
|
+
"name": "status",
|
|
646
|
+
"file": "workflows/status.md",
|
|
647
|
+
"description": "Project health dashboard & active execution ledger",
|
|
648
|
+
"routing_domain": "general",
|
|
649
|
+
"routing_tier": "basic",
|
|
650
|
+
"trigger_keywords": ["status", "dashboard", "task progress"]
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"command": "/session",
|
|
654
|
+
"name": "session",
|
|
655
|
+
"file": "workflows/session.md",
|
|
656
|
+
"description": "Multi-session state tracking & restoration",
|
|
657
|
+
"routing_domain": "orchestration",
|
|
658
|
+
"routing_tier": "specialized",
|
|
659
|
+
"trigger_keywords": ["session", "state snapshot", "restore context"]
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
"command": "/orchestrate",
|
|
663
|
+
"name": "orchestrate",
|
|
664
|
+
"file": "workflows/orchestrate.md",
|
|
665
|
+
"description": "Multi-agent fan-out/fan-in coordination",
|
|
666
|
+
"routing_domain": "orchestration",
|
|
667
|
+
"routing_tier": "expert",
|
|
668
|
+
"trigger_keywords": ["orchestrate", "multi-agent fanout", "coordinate"]
|
|
669
|
+
},
|
|
670
|
+
{
|
|
671
|
+
"command": "/swarm",
|
|
672
|
+
"name": "swarm",
|
|
673
|
+
"file": "workflows/swarm.md",
|
|
674
|
+
"description": "Multi-agent swarm supervisor & JSON contract dispatcher",
|
|
675
|
+
"routing_domain": "orchestration",
|
|
676
|
+
"routing_tier": "expert",
|
|
677
|
+
"trigger_keywords": ["swarm", "supervisor worker", "parallel swarm"]
|
|
678
|
+
},
|
|
679
|
+
{
|
|
680
|
+
"command": "/strengthen-skills",
|
|
681
|
+
"name": "strengthen-skills",
|
|
682
|
+
"file": "workflows/strengthen-skills.md",
|
|
683
|
+
"description": "Skill hardening & Tribunal guardrail injector",
|
|
684
|
+
"routing_domain": "orchestration",
|
|
685
|
+
"routing_tier": "specialized",
|
|
686
|
+
"trigger_keywords": ["strengthen skills", "harden skills", "guardrails"]
|
|
687
|
+
},
|
|
688
|
+
{
|
|
689
|
+
"command": "/ui-ux-pro-max",
|
|
690
|
+
"name": "ui-ux-pro-max",
|
|
691
|
+
"file": "workflows/ui-ux-pro-max.md",
|
|
692
|
+
"description": "Picasso design specification & 16-step UI engine",
|
|
693
|
+
"routing_domain": "frontend",
|
|
694
|
+
"routing_tier": "expert",
|
|
695
|
+
"trigger_keywords": ["ui ux pro max", "picasso ui", "advanced frontend"]
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
"command": "/refactor",
|
|
699
|
+
"name": "refactor",
|
|
700
|
+
"file": "workflows/refactor.md",
|
|
701
|
+
"description": "Dependency-safe structural code refactoring",
|
|
702
|
+
"routing_domain": "general",
|
|
703
|
+
"routing_tier": "specialized",
|
|
704
|
+
"trigger_keywords": ["refactor", "clean code", "structure"]
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"command": "/migrate",
|
|
708
|
+
"name": "migrate",
|
|
709
|
+
"file": "workflows/migrate.md",
|
|
710
|
+
"description": "Expand-and-contract database & framework migrations",
|
|
711
|
+
"routing_domain": "database",
|
|
712
|
+
"routing_tier": "specialized",
|
|
713
|
+
"trigger_keywords": ["migrate", "upgrade framework", "db migration"]
|
|
714
|
+
},
|
|
715
|
+
{
|
|
716
|
+
"command": "/audit",
|
|
717
|
+
"name": "audit",
|
|
718
|
+
"file": "workflows/audit.md",
|
|
719
|
+
"description": "Full project health assessment & priority script audit",
|
|
720
|
+
"routing_domain": "security",
|
|
721
|
+
"routing_tier": "specialized",
|
|
722
|
+
"trigger_keywords": ["audit", "health check", "security scan"]
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
"command": "/fix",
|
|
726
|
+
"name": "fix",
|
|
727
|
+
"file": "workflows/fix.md",
|
|
728
|
+
"description": "Automated error resolution & lint diff preview",
|
|
729
|
+
"routing_domain": "general",
|
|
730
|
+
"routing_tier": "basic",
|
|
731
|
+
"trigger_keywords": ["fix", "autofix", "lint fix"]
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
"command": "/changelog",
|
|
735
|
+
"name": "changelog",
|
|
736
|
+
"file": "workflows/changelog.md",
|
|
737
|
+
"description": "Conventional commit history to changelog compiler",
|
|
738
|
+
"routing_domain": "general",
|
|
739
|
+
"routing_tier": "basic",
|
|
740
|
+
"trigger_keywords": ["changelog", "release notes", "git log"]
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"command": "/review-ai",
|
|
744
|
+
"name": "review-ai",
|
|
745
|
+
"file": "workflows/review-ai.md",
|
|
746
|
+
"description": "LLM integration & prompt injection defense audit",
|
|
747
|
+
"routing_domain": "ai-llm",
|
|
748
|
+
"routing_tier": "specialized",
|
|
749
|
+
"trigger_keywords": ["review ai", "llm security", "prompt injection"]
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
"command": "/pipeline",
|
|
753
|
+
"name": "pipeline",
|
|
754
|
+
"file": "workflows/pipeline.md",
|
|
755
|
+
"description": "Token-efficient 3-pass code generation pipeline",
|
|
756
|
+
"routing_domain": "general",
|
|
757
|
+
"routing_tier": "expert",
|
|
758
|
+
"trigger_keywords": ["pipeline", "3 pass generation", "decoupled build"]
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
"command": "/super-prompt",
|
|
762
|
+
"name": "super-prompt",
|
|
763
|
+
"file": "workflows/super-prompt.md",
|
|
764
|
+
"description": "Zero-token local prompt compiler",
|
|
765
|
+
"routing_domain": "ai-llm",
|
|
766
|
+
"routing_tier": "specialized",
|
|
767
|
+
"trigger_keywords": ["super prompt", "prompt compiler", "compress prompt"]
|
|
768
|
+
},
|
|
769
|
+
{
|
|
770
|
+
"command": "/marathon",
|
|
771
|
+
"name": "marathon",
|
|
772
|
+
"file": "workflows/marathon.md",
|
|
773
|
+
"description": "Multi-session long-running agent harness",
|
|
774
|
+
"routing_domain": "orchestration",
|
|
775
|
+
"routing_tier": "expert",
|
|
776
|
+
"trigger_keywords": ["marathon", "long running agent", "multi session harness"]
|
|
777
|
+
},
|
|
778
|
+
{
|
|
779
|
+
"command": "/acf",
|
|
780
|
+
"name": "acf",
|
|
781
|
+
"file": "workflows/acf.md",
|
|
782
|
+
"description": "Agent Context Format spec distillation",
|
|
783
|
+
"routing_domain": "ai-llm",
|
|
784
|
+
"routing_tier": "specialized",
|
|
785
|
+
"trigger_keywords": ["acf", "agent context format", "distill spec"]
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"command": "/api-tester",
|
|
789
|
+
"name": "api-tester",
|
|
790
|
+
"file": "workflows/api-tester.md",
|
|
791
|
+
"description": "Multi-stage auth-aware API endpoint testing",
|
|
792
|
+
"routing_domain": "backend",
|
|
793
|
+
"routing_tier": "specialized",
|
|
794
|
+
"trigger_keywords": ["api tester", "endpoint test", "crud test"]
|
|
795
|
+
},
|
|
796
|
+
{
|
|
797
|
+
"command": "/performance-benchmarker",
|
|
798
|
+
"name": "performance-benchmarker",
|
|
799
|
+
"file": "workflows/performance-benchmarker.md",
|
|
800
|
+
"description": "Evidence-based Core Web Vitals measurement",
|
|
801
|
+
"routing_domain": "frontend",
|
|
802
|
+
"routing_tier": "specialized",
|
|
803
|
+
"trigger_keywords": ["performance benchmarker", "lighthouse", "cwv test"]
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
"command": "/minimal",
|
|
807
|
+
"name": "minimal",
|
|
808
|
+
"file": "workflows/minimal.md",
|
|
809
|
+
"description": "Minimal change governance & footprint analyzer",
|
|
810
|
+
"routing_domain": "general",
|
|
811
|
+
"routing_tier": "core",
|
|
812
|
+
"trigger_keywords": ["minimal", "minimality", "change budget", "decision order"]
|
|
813
|
+
},
|
|
814
|
+
{
|
|
815
|
+
"command": "/tribunal-cicd",
|
|
816
|
+
"name": "tribunal-cicd",
|
|
817
|
+
"file": "workflows/tribunal-cicd.md",
|
|
818
|
+
"description": "CI/CD pipeline & GitHub Actions Tribunal audit",
|
|
819
|
+
"routing_domain": "devops",
|
|
820
|
+
"routing_tier": "specialized",
|
|
821
|
+
"trigger_keywords": ["tribunal cicd", "audit pipeline", "github actions audit"]
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"command": "/fix-ci",
|
|
825
|
+
"name": "fix-ci",
|
|
826
|
+
"file": "workflows/fix-ci.md",
|
|
827
|
+
"description": "Automated CI failure diagnosis & log repair loop",
|
|
828
|
+
"routing_domain": "devops",
|
|
829
|
+
"routing_tier": "specialized",
|
|
830
|
+
"trigger_keywords": ["fix ci", "ci failure", "runner error", "pipeline fix"]
|
|
831
|
+
}
|
|
100
832
|
],
|
|
101
833
|
"skills": [
|
|
102
|
-
{
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
{
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
{
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
{
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
{
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
{
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
{
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
{
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
{
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
{
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
{
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
{
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
{
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
{
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
{
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
{
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
{
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
{
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
{
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
{
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
{
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
{
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
{
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
{
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
{
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
834
|
+
{
|
|
835
|
+
"name": "12-principles-of-animation",
|
|
836
|
+
"description": "Application of Disney's 12 Principles of Animation to modern web UI motion.",
|
|
837
|
+
"routing_domain": "motion",
|
|
838
|
+
"routing_tier": "specialized",
|
|
839
|
+
"trigger_keywords": ["animation", "disney", "motion", "squash", "stretch", "ui"]
|
|
840
|
+
},
|
|
841
|
+
{
|
|
842
|
+
"name": "60fps-animation",
|
|
843
|
+
"description": "Web animation performance guidance for avoiding layout thrashing and GPU compositor motion.",
|
|
844
|
+
"routing_domain": "motion",
|
|
845
|
+
"routing_tier": "specialized",
|
|
846
|
+
"trigger_keywords": ["60fps", "animation", "fps", "performance", "transform", "opacity"]
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"name": "Knowledge Graph Analyzer",
|
|
850
|
+
"description": "Understands architecture, blast radius, and dependencies with 27x Context Snapshots.",
|
|
851
|
+
"routing_domain": "general",
|
|
852
|
+
"routing_tier": "core",
|
|
853
|
+
"trigger_keywords": ["knowledge graph", "architecture", "blast radius", "dependencies"]
|
|
854
|
+
},
|
|
855
|
+
{
|
|
856
|
+
"name": "accessible-animation",
|
|
857
|
+
"description": "Tiered reduced-motion patterns for CSS, GSAP, Framer Motion, and View Transitions.",
|
|
858
|
+
"routing_domain": "motion",
|
|
859
|
+
"routing_tier": "specialized",
|
|
860
|
+
"trigger_keywords": ["accessible animation", "prefers-reduced-motion", "a11y", "wcag"]
|
|
861
|
+
},
|
|
862
|
+
{
|
|
863
|
+
"name": "adapt",
|
|
864
|
+
"description": "Adapt designs across breakpoints, devices, platform constraints, and container queries.",
|
|
865
|
+
"routing_domain": "frontend",
|
|
866
|
+
"routing_tier": "specialized",
|
|
867
|
+
"trigger_keywords": ["responsive", "adapt", "breakpoints", "container queries", "mobile"]
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
"name": "advanced-rag-pipelines",
|
|
871
|
+
"description": "Production-grade Retrieval-Augmented Generation (RAG), hybrid search, and reranking.",
|
|
872
|
+
"routing_domain": "ai-llm",
|
|
873
|
+
"routing_tier": "expert",
|
|
874
|
+
"trigger_keywords": ["rag", "vector search", "bm25", "reranking", "embeddings"]
|
|
875
|
+
},
|
|
876
|
+
{
|
|
877
|
+
"name": "agent-organizer",
|
|
878
|
+
"description": "Master Agent orchestration framework, sub-agent coordination, and memory distillation.",
|
|
879
|
+
"routing_domain": "orchestration",
|
|
880
|
+
"routing_tier": "expert",
|
|
881
|
+
"trigger_keywords": ["agent organizer", "subagent", "memory", "coordination"]
|
|
882
|
+
},
|
|
883
|
+
{
|
|
884
|
+
"name": "agentic-patterns",
|
|
885
|
+
"description": "AI agent design principles, agent loops, tool calling, and human-in-the-loop gates.",
|
|
886
|
+
"routing_domain": "ai-llm",
|
|
887
|
+
"routing_tier": "expert",
|
|
888
|
+
"trigger_keywords": ["agentic", "tool calling", "agent loop", "guardrails"]
|
|
889
|
+
},
|
|
890
|
+
{
|
|
891
|
+
"name": "ai-prompt-injection-defense",
|
|
892
|
+
"description": "Prompt Injection defense strategies, XML framing, and LLM circuit breakers.",
|
|
893
|
+
"routing_domain": "security",
|
|
894
|
+
"routing_tier": "expert",
|
|
895
|
+
"trigger_keywords": ["prompt injection", "jailbreak", "sanitization", "xml framing"]
|
|
896
|
+
},
|
|
897
|
+
{
|
|
898
|
+
"name": "animation-on-scroll",
|
|
899
|
+
"description": "Intentional scroll-driven motion using modern CSS view-timeline or GSAP ScrollTrigger.",
|
|
900
|
+
"routing_domain": "motion",
|
|
901
|
+
"routing_tier": "specialized",
|
|
902
|
+
"trigger_keywords": ["scroll animation", "scrolltrigger", "timeline", "parallax"]
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
"name": "animation-systems",
|
|
906
|
+
"description": "Systematize animation tokens across a full codebase for consistent motion design.",
|
|
907
|
+
"routing_domain": "motion",
|
|
908
|
+
"routing_tier": "specialized",
|
|
909
|
+
"trigger_keywords": ["animation system", "tokens", "easing", "duration", "motion"]
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
"name": "antfu-conventions",
|
|
913
|
+
"description": "Anthony Fu's coding conventions and project configuration patterns for TypeScript.",
|
|
914
|
+
"routing_domain": "general",
|
|
915
|
+
"routing_tier": "basic",
|
|
916
|
+
"trigger_keywords": ["antfu", "conventions", "eslint", "typescript"]
|
|
917
|
+
},
|
|
918
|
+
{
|
|
919
|
+
"name": "api-patterns",
|
|
920
|
+
"description": "REST, GraphQL, tRPC, gRPC selection, pagination, rate limiting, and OpenAPI docs.",
|
|
921
|
+
"routing_domain": "backend",
|
|
922
|
+
"routing_tier": "specialized",
|
|
923
|
+
"trigger_keywords": ["api", "rest", "graphql", "trpc", "openapi"]
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
"name": "api-security-auditor",
|
|
927
|
+
"description": "API security auditing, rate limiting, payload validation, IDOR, and mass assignment.",
|
|
928
|
+
"routing_domain": "security",
|
|
929
|
+
"routing_tier": "expert",
|
|
930
|
+
"trigger_keywords": ["api security", "idor", "rate limit", "payload validation"]
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
"name": "app-builder",
|
|
934
|
+
"description": "Main application building orchestrator for full-stack projects.",
|
|
935
|
+
"routing_domain": "general",
|
|
936
|
+
"routing_tier": "core",
|
|
937
|
+
"trigger_keywords": ["app builder", "full stack", "scaffold", "application"]
|
|
938
|
+
},
|
|
939
|
+
{
|
|
940
|
+
"name": "appflow-wireframe",
|
|
941
|
+
"description": "Mermaid.js flowcharting, user journey mapping, and interaction matrices.",
|
|
942
|
+
"routing_domain": "frontend",
|
|
943
|
+
"routing_tier": "specialized",
|
|
944
|
+
"trigger_keywords": ["wireframe", "appflow", "mermaid", "flowchart", "user journey"]
|
|
945
|
+
},
|
|
946
|
+
{
|
|
947
|
+
"name": "apple-design",
|
|
948
|
+
"description": "Apple HIG and Apple-inspired design patterns for web and mobile.",
|
|
949
|
+
"routing_domain": "frontend",
|
|
950
|
+
"routing_tier": "specialized",
|
|
951
|
+
"trigger_keywords": ["apple design", "hig", "ios style", "clean ui"]
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
"name": "architecture",
|
|
955
|
+
"description": "Software architecture mastery, hexagonal architecture, domain-driven design, and ADRs.",
|
|
956
|
+
"routing_domain": "general",
|
|
957
|
+
"routing_tier": "expert",
|
|
958
|
+
"trigger_keywords": ["architecture", "clean architecture", "hexagonal", "ddd", "adr"]
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
"name": "audit-and-fix",
|
|
962
|
+
"description": "Accessibility auditing and remediation workflow for WCAG 2.2 AA compliance.",
|
|
963
|
+
"routing_domain": "frontend",
|
|
964
|
+
"routing_tier": "specialized",
|
|
965
|
+
"trigger_keywords": ["audit fix", "a11y audit", "wcag remediation"]
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
"name": "authentication-best-practices",
|
|
969
|
+
"description": "OAuth2, OpenID Connect, JWT, session management, and RBAC/ABAC.",
|
|
970
|
+
"routing_domain": "security",
|
|
971
|
+
"routing_tier": "expert",
|
|
972
|
+
"trigger_keywords": ["auth", "oauth2", "jwt", "session", "rbac"]
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
"name": "backend-security-expert",
|
|
976
|
+
"description": "Backend security auditing for Next Server Actions, Node APIs, and ORM injection.",
|
|
977
|
+
"routing_domain": "security",
|
|
978
|
+
"routing_tier": "expert",
|
|
979
|
+
"trigger_keywords": ["backend security", "server actions", "orm injection", "rbac"]
|
|
980
|
+
},
|
|
981
|
+
{
|
|
982
|
+
"name": "baseline-ui",
|
|
983
|
+
"description": "Quickly deslop UI code by fixing spacing, hierarchy, typography, and contrast.",
|
|
984
|
+
"routing_domain": "frontend",
|
|
985
|
+
"routing_tier": "basic",
|
|
986
|
+
"trigger_keywords": ["baseline ui", "deslop", "cleanup ui", "spacing"]
|
|
987
|
+
},
|
|
988
|
+
{
|
|
989
|
+
"name": "bash-linux",
|
|
990
|
+
"description": "Bash terminal mastery, shell scripting, piping, AWK, and ripgrep text pipelines.",
|
|
991
|
+
"routing_domain": "devops",
|
|
992
|
+
"routing_tier": "specialized",
|
|
993
|
+
"trigger_keywords": ["bash", "linux", "terminal", "awk", "shell script"]
|
|
994
|
+
},
|
|
995
|
+
{
|
|
996
|
+
"name": "behavioral-modes",
|
|
997
|
+
"description": "AI operational modes (brainstorm, implement, debug, review, teach, ship).",
|
|
998
|
+
"routing_domain": "general",
|
|
999
|
+
"routing_tier": "core",
|
|
1000
|
+
"trigger_keywords": ["behavioral mode", "operational mode", "persona"]
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
"name": "better-colors",
|
|
1004
|
+
"description": "OKLCH color space for web projects, palettes, contrast ratios, and Tailwind v4 themes.",
|
|
1005
|
+
"routing_domain": "frontend",
|
|
1006
|
+
"routing_tier": "specialized",
|
|
1007
|
+
"trigger_keywords": ["oklch", "color palette", "better colors", "tailwind v4"]
|
|
1008
|
+
},
|
|
1009
|
+
{
|
|
1010
|
+
"name": "better-typography",
|
|
1011
|
+
"description": "Advanced web typography scaling, font pairing, optical sizing, and OpenType features.",
|
|
1012
|
+
"routing_domain": "frontend",
|
|
1013
|
+
"routing_tier": "specialized",
|
|
1014
|
+
"trigger_keywords": ["typography", "font pairing", "optical sizing", "tracking"]
|
|
1015
|
+
},
|
|
1016
|
+
{
|
|
1017
|
+
"name": "better-ui",
|
|
1018
|
+
"description": "Design engineering principles for micro-interactions, shadows, borders, and hover states.",
|
|
1019
|
+
"routing_domain": "frontend",
|
|
1020
|
+
"routing_tier": "specialized",
|
|
1021
|
+
"trigger_keywords": ["better ui", "micro-interactions", "shadows", "borders"]
|
|
1022
|
+
},
|
|
1023
|
+
{
|
|
1024
|
+
"name": "bolder",
|
|
1025
|
+
"description": "Increase visual impact, punch, and personality for generic or bland interfaces.",
|
|
1026
|
+
"routing_domain": "frontend",
|
|
1027
|
+
"routing_tier": "specialized",
|
|
1028
|
+
"trigger_keywords": ["bolder", "make it pop", "punchy ui", "character"]
|
|
1029
|
+
},
|
|
1030
|
+
{
|
|
1031
|
+
"name": "brainstorming",
|
|
1032
|
+
"description": "Socratic ideation, architectural exploration, and tradeoff analysis.",
|
|
1033
|
+
"routing_domain": "general",
|
|
1034
|
+
"routing_tier": "core",
|
|
1035
|
+
"trigger_keywords": ["brainstorming", "socratic", "ideation", "exploration"]
|
|
1036
|
+
},
|
|
1037
|
+
{
|
|
1038
|
+
"name": "browser-native-ai",
|
|
1039
|
+
"description": "Browser-native AI, ONNX Runtime Web, WebNN API acceleration, and WebAssembly.",
|
|
1040
|
+
"routing_domain": "ai-llm",
|
|
1041
|
+
"routing_tier": "expert",
|
|
1042
|
+
"trigger_keywords": ["browser native ai", "onnx", "webnn", "wasm ai"]
|
|
1043
|
+
},
|
|
1044
|
+
{
|
|
1045
|
+
"name": "build-primitive",
|
|
1046
|
+
"description": "Build foundational unstyled accessible UI primitives (Dialog, Combobox, Accordion).",
|
|
1047
|
+
"routing_domain": "frontend",
|
|
1048
|
+
"routing_tier": "specialized",
|
|
1049
|
+
"trigger_keywords": ["primitive", "headless ui", "dialog", "combobox", "aria"]
|
|
1050
|
+
},
|
|
1051
|
+
{
|
|
1052
|
+
"name": "building-native-ui",
|
|
1053
|
+
"description": "Cross-platform Native UI (React Native / Expo), 60fps motion, and safe areas.",
|
|
1054
|
+
"routing_domain": "mobile",
|
|
1055
|
+
"routing_tier": "expert",
|
|
1056
|
+
"trigger_keywords": ["native ui", "react native", "expo router", "reanimated"]
|
|
1057
|
+
},
|
|
1058
|
+
{
|
|
1059
|
+
"name": "cicd-pro",
|
|
1060
|
+
"description": "Production CI/CD pipelines, GitHub Actions, automated testing, and zero-downtime deploy.",
|
|
1061
|
+
"routing_domain": "devops",
|
|
1062
|
+
"routing_tier": "expert",
|
|
1063
|
+
"trigger_keywords": ["cicd", "github actions", "pipeline", "zero downtime"]
|
|
1064
|
+
},
|
|
1065
|
+
{
|
|
1066
|
+
"name": "clarify",
|
|
1067
|
+
"description": "Improve UX microcopy, label optimization, error messages, and cognitive clarity.",
|
|
1068
|
+
"routing_domain": "frontend",
|
|
1069
|
+
"routing_tier": "basic",
|
|
1070
|
+
"trigger_keywords": ["clarify", "microcopy", "labels", "ux text"]
|
|
1071
|
+
},
|
|
1072
|
+
{
|
|
1073
|
+
"name": "clean-code",
|
|
1074
|
+
"description": "Clean code naming conventions, DRY/WET balance, SOLID principles, and refactoring.",
|
|
1075
|
+
"routing_domain": "general",
|
|
1076
|
+
"routing_tier": "core",
|
|
1077
|
+
"trigger_keywords": ["clean code", "solid", "dry", "refactoring", "naming"]
|
|
1078
|
+
},
|
|
1079
|
+
{
|
|
1080
|
+
"name": "cloud-architect",
|
|
1081
|
+
"description": "Cloud infrastructure architecture, AWS, multi-region resilience, and cost optimization.",
|
|
1082
|
+
"routing_domain": "devops",
|
|
1083
|
+
"routing_tier": "expert",
|
|
1084
|
+
"trigger_keywords": ["cloud architect", "aws", "infrastructure", "resilience"]
|
|
1085
|
+
},
|
|
1086
|
+
{
|
|
1087
|
+
"name": "cobejs",
|
|
1088
|
+
"description": "Build hardware-accelerated 3D interactive animated globes and web orbs with Cobe WebGL.",
|
|
1089
|
+
"routing_domain": "motion",
|
|
1090
|
+
"routing_tier": "specialized",
|
|
1091
|
+
"trigger_keywords": ["cobejs", "3d globe", "webgl globe", "interactive orb"]
|
|
1092
|
+
},
|
|
1093
|
+
{
|
|
1094
|
+
"name": "code-review-checklist",
|
|
1095
|
+
"description": "Code review guidelines covering logic, security, style, and best practices.",
|
|
1096
|
+
"routing_domain": "general",
|
|
1097
|
+
"routing_tier": "core",
|
|
1098
|
+
"trigger_keywords": ["code review", "checklist", "review guidelines"]
|
|
1099
|
+
},
|
|
1100
|
+
{
|
|
1101
|
+
"name": "codebase-design",
|
|
1102
|
+
"description": "Designing deep modules with small interfaces and clean seams.",
|
|
1103
|
+
"routing_domain": "general",
|
|
1104
|
+
"routing_tier": "expert",
|
|
1105
|
+
"trigger_keywords": ["codebase design", "deep modules", "seams", "interfaces"]
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
"name": "colorize",
|
|
1109
|
+
"description": "Strategic, harmonious, accessible color systems and OKLCH palettes for flat interfaces.",
|
|
1110
|
+
"routing_domain": "frontend",
|
|
1111
|
+
"routing_tier": "specialized",
|
|
1112
|
+
"trigger_keywords": ["colorize", "oklch color", "accessible color", "palette"]
|
|
1113
|
+
},
|
|
1114
|
+
{
|
|
1115
|
+
"name": "compact-landing",
|
|
1116
|
+
"description": "Build compact, premium landing pages with quiet typography and high conversion flow.",
|
|
1117
|
+
"routing_domain": "frontend",
|
|
1118
|
+
"routing_tier": "specialized",
|
|
1119
|
+
"trigger_keywords": ["compact landing", "hero section", "conversion ui"]
|
|
1120
|
+
},
|
|
1121
|
+
{
|
|
1122
|
+
"name": "company-logos",
|
|
1123
|
+
"description": "Social proof rows, logo grids, customer carousels, and trust badges layout rules.",
|
|
1124
|
+
"routing_domain": "frontend",
|
|
1125
|
+
"routing_tier": "basic",
|
|
1126
|
+
"trigger_keywords": ["company logos", "social proof", "logo grid", "trust badges"]
|
|
1127
|
+
},
|
|
1128
|
+
{
|
|
1129
|
+
"name": "config-validator",
|
|
1130
|
+
"description": "Validate tsconfig, eslint, prettier, and build tool configuration schemas.",
|
|
1131
|
+
"routing_domain": "devops",
|
|
1132
|
+
"routing_tier": "basic",
|
|
1133
|
+
"trigger_keywords": ["config validator", "tsconfig", "eslint config"]
|
|
1134
|
+
},
|
|
1135
|
+
{
|
|
1136
|
+
"name": "containerization-pro",
|
|
1137
|
+
"description": "Docker, multi-stage container builds, distroless images, and container security.",
|
|
1138
|
+
"routing_domain": "devops",
|
|
1139
|
+
"routing_tier": "expert",
|
|
1140
|
+
"trigger_keywords": ["docker", "container", "multistage build", "distroless"]
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
"name": "create-design-md",
|
|
1144
|
+
"description": "Create or update DESIGN.md with evidence-based tokens from codebases or sites.",
|
|
1145
|
+
"routing_domain": "frontend",
|
|
1146
|
+
"routing_tier": "specialized",
|
|
1147
|
+
"trigger_keywords": ["design md", "design tokens", "extract design system"]
|
|
1148
|
+
},
|
|
1149
|
+
{
|
|
1150
|
+
"name": "critique",
|
|
1151
|
+
"description": "Evaluate design quality with UX scoring, heuristic analysis, and persona usability checks.",
|
|
1152
|
+
"routing_domain": "frontend",
|
|
1153
|
+
"routing_tier": "specialized",
|
|
1154
|
+
"trigger_keywords": ["critique", "ux scoring", "design audit", "usability"]
|
|
1155
|
+
},
|
|
1156
|
+
{
|
|
1157
|
+
"name": "csharp-developer",
|
|
1158
|
+
"file": "skills/csharp-developer/SKILL.md",
|
|
1159
|
+
"description": "C# 12 and .NET 8/9 specialist for ASP.NET Core, EF Core, and Blazor.",
|
|
1160
|
+
"routing_domain": "backend",
|
|
1161
|
+
"routing_tier": "specialized",
|
|
1162
|
+
"trigger_keywords": ["csharp", "dotnet", "ef core", "blazor"]
|
|
1163
|
+
},
|
|
1164
|
+
{
|
|
1165
|
+
"name": "data-validation-schemas",
|
|
1166
|
+
"description": "Zod, Pydantic, Valibot, and TypeBox data validation patterns.",
|
|
1167
|
+
"routing_domain": "backend",
|
|
1168
|
+
"routing_tier": "specialized",
|
|
1169
|
+
"trigger_keywords": ["zod", "pydantic", "valibot", "schema validation"]
|
|
1170
|
+
},
|
|
1171
|
+
{
|
|
1172
|
+
"name": "database-design",
|
|
1173
|
+
"description": "Relational schema design, normalization, indexing strategies, and ORM mapping.",
|
|
1174
|
+
"routing_domain": "database",
|
|
1175
|
+
"routing_tier": "expert",
|
|
1176
|
+
"trigger_keywords": ["database design", "indexing", "normalization", "schema"]
|
|
1177
|
+
},
|
|
1178
|
+
{
|
|
1179
|
+
"name": "delight",
|
|
1180
|
+
"description": "Inject micro-moments of delight, tactile feedback, and playful UI interactions.",
|
|
1181
|
+
"routing_domain": "frontend",
|
|
1182
|
+
"routing_tier": "specialized",
|
|
1183
|
+
"trigger_keywords": ["delight", "tactile feedback", "confetti", "micro delight"]
|
|
1184
|
+
},
|
|
1185
|
+
{
|
|
1186
|
+
"name": "dependency-ladder",
|
|
1187
|
+
"description": "Framework for minimizing code complexity and enforcing 6 Rungs of the Dependency Ladder.",
|
|
1188
|
+
"routing_domain": "general",
|
|
1189
|
+
"routing_tier": "core",
|
|
1190
|
+
"trigger_keywords": ["dependency ladder", "overengineering", "keep it simple"]
|
|
1191
|
+
},
|
|
1192
|
+
{
|
|
1193
|
+
"name": "deployment-procedures",
|
|
1194
|
+
"description": "Production deployment procedures, rollback baselines, and pre-flight validation.",
|
|
1195
|
+
"routing_domain": "devops",
|
|
1196
|
+
"routing_tier": "specialized",
|
|
1197
|
+
"trigger_keywords": ["deploy procedure", "rollback", "pre-flight checks"]
|
|
1198
|
+
},
|
|
1199
|
+
{
|
|
1200
|
+
"name": "design-lab",
|
|
1201
|
+
"description": "Design laboratory for experimental UI patterns, layout exploration, and visual prototyping.",
|
|
1202
|
+
"routing_domain": "frontend",
|
|
1203
|
+
"routing_tier": "specialized",
|
|
1204
|
+
"trigger_keywords": ["design lab", "experimental ui", "prototyping"]
|
|
1205
|
+
},
|
|
1206
|
+
{
|
|
1207
|
+
"name": "diagnosing-bugs",
|
|
1208
|
+
"description": "Systematic bug diagnosis methodology, root cause isolation, and hypothesis testing.",
|
|
1209
|
+
"routing_domain": "general",
|
|
1210
|
+
"routing_tier": "core",
|
|
1211
|
+
"trigger_keywords": ["diagnosing bugs", "root cause", "hypothesis testing"]
|
|
1212
|
+
},
|
|
1213
|
+
{
|
|
1214
|
+
"name": "distill",
|
|
1215
|
+
"description": "Simplify noisy interfaces by removing non-essential visual and operational complexity.",
|
|
1216
|
+
"routing_domain": "frontend",
|
|
1217
|
+
"routing_tier": "basic",
|
|
1218
|
+
"trigger_keywords": ["distill", "simplify ui", "remove clutter"]
|
|
1219
|
+
},
|
|
1220
|
+
{
|
|
1221
|
+
"name": "documentation-templates",
|
|
1222
|
+
"description": "Documentation templates for READMEs, API docs, code comments, and architecture specs.",
|
|
1223
|
+
"routing_domain": "general",
|
|
1224
|
+
"routing_tier": "basic",
|
|
1225
|
+
"trigger_keywords": ["doc templates", "readme template", "api doc format"]
|
|
1226
|
+
},
|
|
1227
|
+
{
|
|
1228
|
+
"name": "domain-modeling",
|
|
1229
|
+
"description": "Build domain models, ubiquitous language, entity relationships, and bounded contexts.",
|
|
1230
|
+
"routing_domain": "general",
|
|
1231
|
+
"routing_tier": "expert",
|
|
1232
|
+
"trigger_keywords": ["domain modeling", "ubiquitous language", "bounded context"]
|
|
1233
|
+
},
|
|
1234
|
+
{
|
|
1235
|
+
"name": "edge-computing",
|
|
1236
|
+
"description": "Cloudflare Workers, Vercel Edge Functions, Durable Objects, and low latency caching.",
|
|
1237
|
+
"routing_domain": "backend",
|
|
1238
|
+
"routing_tier": "expert",
|
|
1239
|
+
"trigger_keywords": ["edge computing", "cloudflare workers", "edge functions"]
|
|
1240
|
+
},
|
|
1241
|
+
{
|
|
1242
|
+
"name": "emil-design-eng",
|
|
1243
|
+
"description": "Emil Kowalski inspired design engineering micro-interactions and motion polish.",
|
|
1244
|
+
"routing_domain": "motion",
|
|
1245
|
+
"routing_tier": "specialized",
|
|
1246
|
+
"trigger_keywords": ["emil design", "kowalski", "micro-interactions", "motion polish"]
|
|
1247
|
+
},
|
|
1248
|
+
{
|
|
1249
|
+
"name": "error-resilience",
|
|
1250
|
+
"description": "Error handling strategies, circuit breakers, fallback states, and retry loops.",
|
|
1251
|
+
"routing_domain": "backend",
|
|
1252
|
+
"routing_tier": "specialized",
|
|
1253
|
+
"trigger_keywords": ["error resilience", "circuit breaker", "retry loop", "fallback"]
|
|
1254
|
+
},
|
|
1255
|
+
{
|
|
1256
|
+
"name": "extract-design-system",
|
|
1257
|
+
"description": "Extract design tokens, color variables, and typography rules into a reusable system.",
|
|
1258
|
+
"routing_domain": "frontend",
|
|
1259
|
+
"routing_tier": "specialized",
|
|
1260
|
+
"trigger_keywords": ["extract design system", "tokens", "css variables"]
|
|
1261
|
+
},
|
|
1262
|
+
{
|
|
1263
|
+
"name": "fabel-protocol",
|
|
1264
|
+
"description": "Epistemic cognitive check loop and precision budget protocol.",
|
|
1265
|
+
"routing_domain": "general",
|
|
1266
|
+
"routing_tier": "core",
|
|
1267
|
+
"trigger_keywords": ["fabel protocol", "epistemic check", "precision budget"]
|
|
1268
|
+
},
|
|
1269
|
+
{
|
|
1270
|
+
"name": "fixing-accessibility",
|
|
1271
|
+
"description": "Audit and fix HTML accessibility issues including ARIA labels and focus traps.",
|
|
1272
|
+
"routing_domain": "frontend",
|
|
1273
|
+
"routing_tier": "specialized",
|
|
1274
|
+
"trigger_keywords": ["fixing accessibility", "a11y fix", "aria labels", "focus trap"]
|
|
1275
|
+
},
|
|
1276
|
+
{
|
|
1277
|
+
"name": "fixing-metadata",
|
|
1278
|
+
"description": "Audit and fix page metadata, titles, OpenGraph cards, canonical URLs, and JSON-LD.",
|
|
1279
|
+
"routing_domain": "frontend",
|
|
1280
|
+
"routing_tier": "basic",
|
|
1281
|
+
"trigger_keywords": ["fixing metadata", "opengraph", "seo meta", "json-ld"]
|
|
1282
|
+
},
|
|
1283
|
+
{
|
|
1284
|
+
"name": "fixing-motion-performance",
|
|
1285
|
+
"description": "Audit and fix animation performance, layout thrashing, and compositor properties.",
|
|
1286
|
+
"routing_domain": "motion",
|
|
1287
|
+
"routing_tier": "specialized",
|
|
1288
|
+
"trigger_keywords": ["motion perf fix", "layout thrashing", "compositor properties"]
|
|
1289
|
+
},
|
|
1290
|
+
{
|
|
1291
|
+
"name": "framer-motion-expert",
|
|
1292
|
+
"description": "Framer Motion 12+ for React declarative component animations and layout transitions.",
|
|
1293
|
+
"routing_domain": "motion",
|
|
1294
|
+
"routing_tier": "expert",
|
|
1295
|
+
"trigger_keywords": ["framer motion", "animatepresence", "layout animation", "useanimate"]
|
|
1296
|
+
},
|
|
1297
|
+
{
|
|
1298
|
+
"name": "frontend-design",
|
|
1299
|
+
"description": "Design thinking for web UI, micro-interactions, typography, and CSS-first UI logic.",
|
|
1300
|
+
"routing_domain": "frontend",
|
|
1301
|
+
"routing_tier": "specialized",
|
|
1302
|
+
"trigger_keywords": ["frontend design", "visual hierarchy", "css first"]
|
|
1303
|
+
},
|
|
1304
|
+
{
|
|
1305
|
+
"name": "frontend-security-expert",
|
|
1306
|
+
"description": "Frontend security auditing for React/Next.js UI, hydration poisoning, and XSS.",
|
|
1307
|
+
"routing_domain": "security",
|
|
1308
|
+
"routing_tier": "expert",
|
|
1309
|
+
"trigger_keywords": ["frontend security", "xss", "hydration poisoning", "csp"]
|
|
1310
|
+
},
|
|
1311
|
+
{
|
|
1312
|
+
"name": "game-design-expert",
|
|
1313
|
+
"description": "Game mechanics, core loops, game feel, spatial level design, and progression systems.",
|
|
1314
|
+
"routing_domain": "general",
|
|
1315
|
+
"routing_tier": "expert",
|
|
1316
|
+
"trigger_keywords": ["game design", "game mechanics", "game feel", "level design"]
|
|
1317
|
+
},
|
|
1318
|
+
{
|
|
1319
|
+
"name": "game-engineering-expert",
|
|
1320
|
+
"description": "Game engine architecture, entity-component systems (ECS), physics, and loop optimization.",
|
|
1321
|
+
"routing_domain": "general",
|
|
1322
|
+
"routing_tier": "expert",
|
|
1323
|
+
"trigger_keywords": ["game engineering", "ecs", "physics engine", "game loop"]
|
|
1324
|
+
},
|
|
1325
|
+
{
|
|
1326
|
+
"name": "generative-ui-expert",
|
|
1327
|
+
"description": "Vercel AI SDK 3.0+, React Server Components + LLMs, streaming UI elements.",
|
|
1328
|
+
"routing_domain": "ai-llm",
|
|
1329
|
+
"routing_tier": "expert",
|
|
1330
|
+
"trigger_keywords": ["generative ui", "vercel ai sdk", "streaming ui", "tool calling"]
|
|
1331
|
+
},
|
|
1332
|
+
{
|
|
1333
|
+
"name": "geo-fundamentals",
|
|
1334
|
+
"description": "Geospatial data handling, GeoJSON, Turf.js, Leaflet, and Mapbox integrations.",
|
|
1335
|
+
"routing_domain": "general",
|
|
1336
|
+
"routing_tier": "specialized",
|
|
1337
|
+
"trigger_keywords": ["geo", "geojson", "mapbox", "turfjs", "maps"]
|
|
1338
|
+
},
|
|
1339
|
+
{
|
|
1340
|
+
"name": "git-pro",
|
|
1341
|
+
"description": "Git mastery, interactive rebase, cherry-pick, bisect, reflog, and conventional commits.",
|
|
1342
|
+
"routing_domain": "devops",
|
|
1343
|
+
"routing_tier": "specialized",
|
|
1344
|
+
"trigger_keywords": ["git", "rebase", "cherry pick", "bisect", "reflog"]
|
|
1345
|
+
},
|
|
1346
|
+
{
|
|
1347
|
+
"name": "github-operations",
|
|
1348
|
+
"description": "GitHub Actions workflows, PR templates, issue automation, and release management.",
|
|
1349
|
+
"routing_domain": "devops",
|
|
1350
|
+
"routing_tier": "specialized",
|
|
1351
|
+
"trigger_keywords": ["github operations", "github actions", "pr template"]
|
|
1352
|
+
},
|
|
1353
|
+
{
|
|
1354
|
+
"name": "gpt-taste",
|
|
1355
|
+
"description": "High-agency UX/UI skill with strict layout variance and GSAP motion engineering.",
|
|
1356
|
+
"routing_domain": "frontend",
|
|
1357
|
+
"routing_tier": "expert",
|
|
1358
|
+
"trigger_keywords": ["gpt taste", "superior ui", "layout variance"]
|
|
1359
|
+
},
|
|
1360
|
+
{
|
|
1361
|
+
"name": "gsap-core",
|
|
1362
|
+
"description": "GSAP Core animation engine, gsap.to, gsap.from, gsap.fromTo, and easing curves.",
|
|
1363
|
+
"routing_domain": "motion",
|
|
1364
|
+
"routing_tier": "specialized",
|
|
1365
|
+
"trigger_keywords": ["gsap core", "gsap.to", "gsap.from", "easing"]
|
|
1366
|
+
},
|
|
1367
|
+
{
|
|
1368
|
+
"name": "gsap-frameworks",
|
|
1369
|
+
"description": "Integrating GSAP cleanly across Next.js, React, Vue, Svelte, and Nuxt framework contexts.",
|
|
1370
|
+
"routing_domain": "motion",
|
|
1371
|
+
"routing_tier": "specialized",
|
|
1372
|
+
"trigger_keywords": ["gsap frameworks", "gsap react", "gsap vue", "usegsap"]
|
|
1373
|
+
},
|
|
1374
|
+
{
|
|
1375
|
+
"name": "gsap-performance",
|
|
1376
|
+
"description": "Official GSAP skill for performance — transform preference, batching, will-change.",
|
|
1377
|
+
"routing_domain": "motion",
|
|
1378
|
+
"routing_tier": "specialized",
|
|
1379
|
+
"trigger_keywords": ["gsap perf", "transform", "will-change", "gpu compositor"]
|
|
1380
|
+
},
|
|
1381
|
+
{
|
|
1382
|
+
"name": "gsap-plugins",
|
|
1383
|
+
"description": "GSAP official plugins (Flip, MotionPath, Observer, ScrollTo, SplitText, TextPlugin).",
|
|
1384
|
+
"routing_domain": "motion",
|
|
1385
|
+
"routing_tier": "specialized",
|
|
1386
|
+
"trigger_keywords": ["gsap plugins", "flip plugin", "splittext", "observer"]
|
|
1387
|
+
},
|
|
1388
|
+
{
|
|
1389
|
+
"name": "gsap-react",
|
|
1390
|
+
"description": "Official GSAP skill for React — useGSAP hook, refs, gsap.context(), cleanup.",
|
|
1391
|
+
"routing_domain": "motion",
|
|
1392
|
+
"routing_tier": "specialized",
|
|
1393
|
+
"trigger_keywords": ["gsap react", "usegsap", "gsap context", "react animation"]
|
|
1394
|
+
},
|
|
1395
|
+
{
|
|
1396
|
+
"name": "gsap-scrolltrigger",
|
|
1397
|
+
"description": "GSAP ScrollTrigger plugin for scroll-driven animations and pinning.",
|
|
1398
|
+
"routing_domain": "motion",
|
|
1399
|
+
"routing_tier": "specialized",
|
|
1400
|
+
"trigger_keywords": ["scrolltrigger", "pinning", "scroll animation", "scrub"]
|
|
1401
|
+
},
|
|
1402
|
+
{
|
|
1403
|
+
"name": "gsap-timeline",
|
|
1404
|
+
"description": "Official GSAP skill for timelines — position parameter, nesting, and playback control.",
|
|
1405
|
+
"routing_domain": "motion",
|
|
1406
|
+
"routing_tier": "specialized",
|
|
1407
|
+
"trigger_keywords": ["gsap timeline", "sequence animation", "position parameter"]
|
|
1408
|
+
},
|
|
1409
|
+
{
|
|
1410
|
+
"name": "gsap-utils",
|
|
1411
|
+
"description": "Official GSAP skill for gsap.utils — clamp, mapRange, normalize, interpolate, random.",
|
|
1412
|
+
"routing_domain": "motion",
|
|
1413
|
+
"routing_tier": "specialized",
|
|
1414
|
+
"trigger_keywords": ["gsap utils", "clamp", "maprange", "interpolate"]
|
|
1415
|
+
},
|
|
1416
|
+
{
|
|
1417
|
+
"name": "harden",
|
|
1418
|
+
"description": "Make interfaces production-resilient with empty states, loading skeletons, and i18n.",
|
|
1419
|
+
"routing_domain": "frontend",
|
|
1420
|
+
"routing_tier": "specialized",
|
|
1421
|
+
"trigger_keywords": ["harden ui", "empty state", "loading skeleton", "i18n"]
|
|
1422
|
+
},
|
|
1423
|
+
{
|
|
1424
|
+
"name": "harness-protocol",
|
|
1425
|
+
"description": "Rules and guidelines for the Marathon long-running agent harness.",
|
|
1426
|
+
"routing_domain": "orchestration",
|
|
1427
|
+
"routing_tier": "expert",
|
|
1428
|
+
"trigger_keywords": ["harness protocol", "marathon", "long running agent"]
|
|
1429
|
+
},
|
|
1430
|
+
{
|
|
1431
|
+
"name": "i18n-localization",
|
|
1432
|
+
"description": "Internationalization and localization patterns (next-intl, i18next, react-intl).",
|
|
1433
|
+
"routing_domain": "frontend",
|
|
1434
|
+
"routing_tier": "specialized",
|
|
1435
|
+
"trigger_keywords": ["i18n", "localization", "next-intl", "i18next"]
|
|
1436
|
+
},
|
|
1437
|
+
{
|
|
1438
|
+
"name": "impeccable",
|
|
1439
|
+
"description": "Flagship design engineering skill for creating production-grade anti-generic UI.",
|
|
1440
|
+
"routing_domain": "frontend",
|
|
1441
|
+
"routing_tier": "expert",
|
|
1442
|
+
"trigger_keywords": ["impeccable", "flagship ui", "craftsmanship", "anti-generic"]
|
|
1443
|
+
},
|
|
1444
|
+
{
|
|
1445
|
+
"name": "improve-codebase-architecture",
|
|
1446
|
+
"description": "Scans codebase for deepening opportunities and architectural bottlenecks.",
|
|
1447
|
+
"routing_domain": "general",
|
|
1448
|
+
"routing_tier": "expert",
|
|
1449
|
+
"trigger_keywords": ["improve architecture", "architectural debt", "coupling"]
|
|
1450
|
+
},
|
|
1451
|
+
{
|
|
1452
|
+
"name": "improve-ui",
|
|
1453
|
+
"description": "Audit an existing product surface against design evidence and write actionable plans.",
|
|
1454
|
+
"routing_domain": "frontend",
|
|
1455
|
+
"routing_tier": "specialized",
|
|
1456
|
+
"trigger_keywords": ["improve ui", "ui audit", "interface cleanup"]
|
|
1457
|
+
},
|
|
1458
|
+
{
|
|
1459
|
+
"name": "intelligent-routing",
|
|
1460
|
+
"description": "Dynamic request routing and agent selection logic.",
|
|
1461
|
+
"routing_domain": "orchestration",
|
|
1462
|
+
"routing_tier": "expert",
|
|
1463
|
+
"trigger_keywords": ["intelligent routing", "agent selection", "router"]
|
|
1464
|
+
},
|
|
1465
|
+
{
|
|
1466
|
+
"name": "interface-design",
|
|
1467
|
+
"description": "Interface design principles for intuitive and coherent user interfaces.",
|
|
1468
|
+
"routing_domain": "frontend",
|
|
1469
|
+
"routing_tier": "specialized",
|
|
1470
|
+
"trigger_keywords": ["interface design", "ui layout", "visual coherence"]
|
|
1471
|
+
},
|
|
1472
|
+
{
|
|
1473
|
+
"name": "knowledge-graph",
|
|
1474
|
+
"description": "Codebase risk blast radius analysis and dependency topology visualization.",
|
|
1475
|
+
"routing_domain": "general",
|
|
1476
|
+
"routing_tier": "core",
|
|
1477
|
+
"trigger_keywords": ["knowledge graph", "risk blast radius", "codebase map"]
|
|
1478
|
+
},
|
|
1479
|
+
{
|
|
1480
|
+
"name": "landing-page",
|
|
1481
|
+
"description": "High-converting landing page structure, hero section layouts, and feature grid pacing.",
|
|
1482
|
+
"routing_domain": "frontend",
|
|
1483
|
+
"routing_tier": "specialized",
|
|
1484
|
+
"trigger_keywords": ["landing page", "hero section", "cta hierarchy", "conversion"]
|
|
1485
|
+
},
|
|
1486
|
+
{
|
|
1487
|
+
"name": "lint-and-validate",
|
|
1488
|
+
"description": "Linting and validation principles for code quality enforcement.",
|
|
1489
|
+
"routing_domain": "general",
|
|
1490
|
+
"routing_tier": "core",
|
|
1491
|
+
"trigger_keywords": ["lint validate", "eslint", "prettier", "code style"]
|
|
1492
|
+
},
|
|
1493
|
+
{
|
|
1494
|
+
"name": "llm-engineering",
|
|
1495
|
+
"description": "Prompt engineering, RAG pipelines, fine-tuning, function calling, and structured outputs.",
|
|
1496
|
+
"routing_domain": "ai-llm",
|
|
1497
|
+
"routing_tier": "expert",
|
|
1498
|
+
"trigger_keywords": ["llm engineering", "prompt engineering", "structured output"]
|
|
1499
|
+
},
|
|
1500
|
+
{
|
|
1501
|
+
"name": "local-first",
|
|
1502
|
+
"description": "Local-first architecture, CRDTs, optimistic updates, and offline sync engines.",
|
|
1503
|
+
"routing_domain": "backend",
|
|
1504
|
+
"routing_tier": "expert",
|
|
1505
|
+
"trigger_keywords": ["local first", "crdt", "offline sync", "indexeddb"]
|
|
1506
|
+
},
|
|
1507
|
+
{
|
|
1508
|
+
"name": "local-first-architecture",
|
|
1509
|
+
"description": "Local-first architecture guidance for instant web apps, IndexedDB sync engines, and CRDTs.",
|
|
1510
|
+
"routing_domain": "backend",
|
|
1511
|
+
"routing_tier": "expert",
|
|
1512
|
+
"trigger_keywords": ["local first architecture", "instant UI", "offline operation"]
|
|
1513
|
+
},
|
|
1514
|
+
{
|
|
1515
|
+
"name": "lottie-animation",
|
|
1516
|
+
"description": "Lottie and dotLottie integration, playback control, hover triggers, and runtime theming.",
|
|
1517
|
+
"routing_domain": "motion",
|
|
1518
|
+
"routing_tier": "specialized",
|
|
1519
|
+
"trigger_keywords": ["lottie", "dotlottie", "lottie animation", "vector animation"]
|
|
1520
|
+
},
|
|
1521
|
+
{
|
|
1522
|
+
"name": "marquee-loop",
|
|
1523
|
+
"description": "Hardware-accelerated continuous looping marquees for logo rows and testimonials.",
|
|
1524
|
+
"routing_domain": "motion",
|
|
1525
|
+
"routing_tier": "specialized",
|
|
1526
|
+
"trigger_keywords": ["marquee", "loop", "continuous scroll", "logo row"]
|
|
1527
|
+
},
|
|
1528
|
+
{
|
|
1529
|
+
"name": "masked-reveal",
|
|
1530
|
+
"description": "CSS clip-path, SVG masking, and layered entrance reveals for images and text.",
|
|
1531
|
+
"routing_domain": "motion",
|
|
1532
|
+
"routing_tier": "specialized",
|
|
1533
|
+
"trigger_keywords": ["masked reveal", "clip path", "svg mask", "entrance animation"]
|
|
1534
|
+
},
|
|
1535
|
+
{
|
|
1536
|
+
"name": "mcp-builder",
|
|
1537
|
+
"description": "Build Model Context Protocol (MCP) servers and tool schemas.",
|
|
1538
|
+
"routing_domain": "ai-llm",
|
|
1539
|
+
"routing_tier": "expert",
|
|
1540
|
+
"trigger_keywords": ["mcp builder", "model context protocol", "mcp tool"]
|
|
1541
|
+
},
|
|
1542
|
+
{
|
|
1543
|
+
"name": "micro-interaction",
|
|
1544
|
+
"description": "UI motion guidance for hover/press feedback, toggles, toasts, drawers, and modals.",
|
|
1545
|
+
"routing_domain": "motion",
|
|
1546
|
+
"routing_tier": "specialized",
|
|
1547
|
+
"trigger_keywords": ["micro interaction", "press feedback", "toast animation"]
|
|
1548
|
+
},
|
|
1549
|
+
{
|
|
1550
|
+
"name": "mobile-design",
|
|
1551
|
+
"description": "Mobile-first design for iOS, Android, touch interactions, haptics, and Reanimated 3.",
|
|
1552
|
+
"routing_domain": "mobile",
|
|
1553
|
+
"routing_tier": "specialized",
|
|
1554
|
+
"trigger_keywords": ["mobile design", "touch UI", "haptics", "reanimated 3"]
|
|
1555
|
+
},
|
|
1556
|
+
{
|
|
1557
|
+
"name": "monorepo-management",
|
|
1558
|
+
"description": "Monorepo management using Turborepo, Nx, pnpm workspaces, and shared packages.",
|
|
1559
|
+
"routing_domain": "devops",
|
|
1560
|
+
"routing_tier": "expert",
|
|
1561
|
+
"trigger_keywords": ["monorepo", "turborepo", "pnpm workspace", "nx"]
|
|
1562
|
+
},
|
|
1563
|
+
{
|
|
1564
|
+
"name": "morphing-icons",
|
|
1565
|
+
"description": "Build morphing SVG icon components that transition smoothly between states.",
|
|
1566
|
+
"routing_domain": "motion",
|
|
1567
|
+
"routing_tier": "specialized",
|
|
1568
|
+
"trigger_keywords": ["morphing icons", "svg morphing", "icon transition"]
|
|
1569
|
+
},
|
|
1570
|
+
{
|
|
1571
|
+
"name": "motion-engineering",
|
|
1572
|
+
"description": "Motion engineering mastery across Framer Motion, GSAP, WebGL, and CSS keyframes.",
|
|
1573
|
+
"routing_domain": "motion",
|
|
1574
|
+
"routing_tier": "expert",
|
|
1575
|
+
"trigger_keywords": ["motion engineering", "animation strategy", "framer vs gsap"]
|
|
1576
|
+
},
|
|
1577
|
+
{
|
|
1578
|
+
"name": "nextjs-react-expert",
|
|
1579
|
+
"description": "Next.js 15+ App Router, Server Components, Server Actions, PPR, and middleware.",
|
|
1580
|
+
"routing_domain": "frontend",
|
|
1581
|
+
"routing_tier": "expert",
|
|
1582
|
+
"trigger_keywords": ["nextjs expert", "app router", "server actions", "ppr"]
|
|
1583
|
+
},
|
|
1584
|
+
{
|
|
1585
|
+
"name": "nodejs-best-practices",
|
|
1586
|
+
"description": "Node.js production practices, async error handling, clustering, and event loop safety.",
|
|
1587
|
+
"routing_domain": "backend",
|
|
1588
|
+
"routing_tier": "specialized",
|
|
1589
|
+
"trigger_keywords": ["nodejs", "event loop", "async await", "clustering"]
|
|
1590
|
+
},
|
|
1591
|
+
{
|
|
1592
|
+
"name": "observability",
|
|
1593
|
+
"description": "Telemetry, OpenTelemetry, Prometheus metrics, structured JSON logging, and tracing.",
|
|
1594
|
+
"routing_domain": "devops",
|
|
1595
|
+
"routing_tier": "expert",
|
|
1596
|
+
"trigger_keywords": ["observability", "opentelemetry", "metrics", "tracing", "logging"]
|
|
1597
|
+
},
|
|
1598
|
+
{
|
|
1599
|
+
"name": "page-transition-animation",
|
|
1600
|
+
"description": "Page and route transition patterns using View Transitions API and Framer Motion.",
|
|
1601
|
+
"routing_domain": "motion",
|
|
1602
|
+
"routing_tier": "specialized",
|
|
1603
|
+
"trigger_keywords": ["page transition", "view transitions", "route animation"]
|
|
1604
|
+
},
|
|
1605
|
+
{
|
|
1606
|
+
"name": "parallel-agents",
|
|
1607
|
+
"description": "Parallel processing coordination for multi-agent swarms and fan-out/fan-in processing.",
|
|
1608
|
+
"routing_domain": "orchestration",
|
|
1609
|
+
"routing_tier": "expert",
|
|
1610
|
+
"trigger_keywords": ["parallel agents", "swarm fanout", "race condition"]
|
|
1611
|
+
},
|
|
1612
|
+
{
|
|
1613
|
+
"name": "performance-profiling",
|
|
1614
|
+
"description": "CPU profiling, heap snapshot analysis, flame graphs, and memory leak isolation.",
|
|
1615
|
+
"routing_domain": "general",
|
|
1616
|
+
"routing_tier": "expert",
|
|
1617
|
+
"trigger_keywords": ["profiling", "flamegraph", "heap snapshot", "cpu profile"]
|
|
1618
|
+
},
|
|
1619
|
+
{
|
|
1620
|
+
"name": "plan-writing",
|
|
1621
|
+
"description": "Structure comprehensive implementation plans with verification criteria.",
|
|
1622
|
+
"routing_domain": "general",
|
|
1623
|
+
"routing_tier": "core",
|
|
1624
|
+
"trigger_keywords": ["plan writing", "implementation plan", "spec format"]
|
|
1625
|
+
},
|
|
1626
|
+
{
|
|
1627
|
+
"name": "platform-engineer",
|
|
1628
|
+
"description": "Platform engineering, internal developer platforms (IDP), Kubernetes, and IaC.",
|
|
1629
|
+
"routing_domain": "devops",
|
|
1630
|
+
"routing_tier": "expert",
|
|
1631
|
+
"trigger_keywords": ["platform engineer", "idp", "kubernetes", "terraform"]
|
|
1632
|
+
},
|
|
1633
|
+
{
|
|
1634
|
+
"name": "playwright-best-practices",
|
|
1635
|
+
"description": "Playwright End-to-End (E2E) testing mastery, resilient selectors, and network mocking.",
|
|
1636
|
+
"routing_domain": "general",
|
|
1637
|
+
"routing_tier": "specialized",
|
|
1638
|
+
"trigger_keywords": ["playwright", "e2e test", "selectors", "network mock"]
|
|
1639
|
+
},
|
|
1640
|
+
{
|
|
1641
|
+
"name": "polish",
|
|
1642
|
+
"description": "Final production quality pass for spacing, alignment, visual rhythm, and dark mode.",
|
|
1643
|
+
"routing_domain": "frontend",
|
|
1644
|
+
"routing_tier": "specialized",
|
|
1645
|
+
"trigger_keywords": ["polish", "visual rhythm", "alignment", "dark mode check"]
|
|
1646
|
+
},
|
|
1647
|
+
{
|
|
1648
|
+
"name": "powershell-windows",
|
|
1649
|
+
"description": "PowerShell and Windows environment automation, object piping, and ErrorActionPreference.",
|
|
1650
|
+
"routing_domain": "devops",
|
|
1651
|
+
"routing_tier": "specialized",
|
|
1652
|
+
"trigger_keywords": ["powershell", "windows script", "psprovider", "cmdlet"]
|
|
1653
|
+
},
|
|
1654
|
+
{
|
|
1655
|
+
"name": "pricing-page",
|
|
1656
|
+
"description": "SaaS pricing table architecture, billing toggles, feature comparison matrices, and CTA highlight.",
|
|
1657
|
+
"routing_domain": "frontend",
|
|
1658
|
+
"routing_tier": "specialized",
|
|
1659
|
+
"trigger_keywords": ["pricing page", "pricing table", "billing toggle", "saas tier"]
|
|
1660
|
+
},
|
|
1661
|
+
{
|
|
1662
|
+
"name": "product-aware-heuristics",
|
|
1663
|
+
"description": "Product-category UX heuristics for SaaS dashboards, e-commerce, and mobile apps.",
|
|
1664
|
+
"routing_domain": "frontend",
|
|
1665
|
+
"routing_tier": "specialized",
|
|
1666
|
+
"trigger_keywords": ["product heuristics", "saas ux", "ecommerce ux"]
|
|
1667
|
+
},
|
|
1668
|
+
{
|
|
1669
|
+
"name": "progressive-blur",
|
|
1670
|
+
"description": "Smooth progressive backdrop blurs, depth overlays, and modern glassmorphism.",
|
|
1671
|
+
"routing_domain": "frontend",
|
|
1672
|
+
"routing_tier": "specialized",
|
|
1673
|
+
"trigger_keywords": ["progressive blur", "glassmorphism", "backdrop filter"]
|
|
1674
|
+
},
|
|
1675
|
+
{
|
|
1676
|
+
"name": "project-idioms",
|
|
1677
|
+
"description": "Auto-evolved project-specific architectural idioms extracted from codebase decisions.",
|
|
1678
|
+
"routing_domain": "general",
|
|
1679
|
+
"routing_tier": "core",
|
|
1680
|
+
"trigger_keywords": ["project idioms", "team culture", "code conventions"]
|
|
1681
|
+
},
|
|
1682
|
+
{
|
|
1683
|
+
"name": "python-patterns",
|
|
1684
|
+
"description": "Python framework selection, async patterns, type hints, and project structure.",
|
|
1685
|
+
"routing_domain": "backend",
|
|
1686
|
+
"routing_tier": "specialized",
|
|
1687
|
+
"trigger_keywords": ["python patterns", "typing", "dataclasses", "asyncio"]
|
|
1688
|
+
},
|
|
1689
|
+
{
|
|
1690
|
+
"name": "python-pro",
|
|
1691
|
+
"description": "Python 3.12+ specialist, FastAPI, Pydantic v2, asyncio, modern types, and pytest.",
|
|
1692
|
+
"routing_domain": "backend",
|
|
1693
|
+
"routing_tier": "specialized",
|
|
1694
|
+
"trigger_keywords": ["python pro", "fastapi", "pydantic", "pytest"]
|
|
1695
|
+
},
|
|
1696
|
+
{
|
|
1697
|
+
"name": "quieter",
|
|
1698
|
+
"description": "Tone down overly loud, noisy, visually aggressive, or distracting designs.",
|
|
1699
|
+
"routing_domain": "frontend",
|
|
1700
|
+
"routing_tier": "basic",
|
|
1701
|
+
"trigger_keywords": ["quieter", "tone down", "reduce noise", "minimalist"]
|
|
1702
|
+
},
|
|
1703
|
+
{
|
|
1704
|
+
"name": "react-doctor",
|
|
1705
|
+
"description": "Scan React and Next.js applications for security, performance, re-render inefficiencies.",
|
|
1706
|
+
"routing_domain": "frontend",
|
|
1707
|
+
"routing_tier": "specialized",
|
|
1708
|
+
"trigger_keywords": ["react doctor", "re-renders", "react memory leak"]
|
|
1709
|
+
},
|
|
1710
|
+
{
|
|
1711
|
+
"name": "react-specialist",
|
|
1712
|
+
"description": "React 19 specialist, use(), Server/Client Components, Zustand/Jotai, React Query.",
|
|
1713
|
+
"routing_domain": "frontend",
|
|
1714
|
+
"routing_tier": "specialized",
|
|
1715
|
+
"trigger_keywords": ["react specialist", "use hook", "react query", "zustand"]
|
|
1716
|
+
},
|
|
1717
|
+
{
|
|
1718
|
+
"name": "readme-builder",
|
|
1719
|
+
"description": "Interactive README.md generation specialist with badges, installation, and usage.",
|
|
1720
|
+
"routing_domain": "general",
|
|
1721
|
+
"routing_tier": "basic",
|
|
1722
|
+
"trigger_keywords": ["readme builder", "readme generator", "project docs"]
|
|
1723
|
+
},
|
|
1724
|
+
{
|
|
1725
|
+
"name": "realtime-patterns",
|
|
1726
|
+
"description": "Real-time communication patterns (WebSockets, SSE, WebRTC, Long Polling).",
|
|
1727
|
+
"routing_domain": "backend",
|
|
1728
|
+
"routing_tier": "expert",
|
|
1729
|
+
"trigger_keywords": ["realtime", "websockets", "sse", "webrtc"]
|
|
1730
|
+
},
|
|
1731
|
+
{
|
|
1732
|
+
"name": "red-team-tactics",
|
|
1733
|
+
"description": "Red team tactics principles based on MITRE ATT&CK attack phases and detection evasion.",
|
|
1734
|
+
"routing_domain": "security",
|
|
1735
|
+
"routing_tier": "expert",
|
|
1736
|
+
"trigger_keywords": ["red team", "mitre attack", "evasion", "penetration"]
|
|
1737
|
+
},
|
|
1738
|
+
{
|
|
1739
|
+
"name": "redesign-skill",
|
|
1740
|
+
"description": "Audit and upgrade existing interfaces to premium visual quality while preserving logic.",
|
|
1741
|
+
"routing_domain": "frontend",
|
|
1742
|
+
"routing_tier": "specialized",
|
|
1743
|
+
"trigger_keywords": ["redesign", "ui upgrade", "visual enhancement"]
|
|
1744
|
+
},
|
|
1745
|
+
{
|
|
1746
|
+
"name": "review-animations",
|
|
1747
|
+
"description": "Audit web animations for layout thrashing, 60fps performance, and accessibility.",
|
|
1748
|
+
"routing_domain": "motion",
|
|
1749
|
+
"routing_tier": "specialized",
|
|
1750
|
+
"trigger_keywords": ["review animations", "animation audit", "motion performance"]
|
|
1751
|
+
},
|
|
1752
|
+
{
|
|
1753
|
+
"name": "rust-pro",
|
|
1754
|
+
"description": "Master Rust 1.75+ with async Tokio, Axum framework, Serde, and systems programming.",
|
|
1755
|
+
"routing_domain": "backend",
|
|
1756
|
+
"routing_tier": "expert",
|
|
1757
|
+
"trigger_keywords": ["rust pro", "tokio", "axum", "serde", "systems"]
|
|
1758
|
+
},
|
|
1759
|
+
{
|
|
1760
|
+
"name": "seo-fundamentals",
|
|
1761
|
+
"description": "SEO title tags, meta descriptions, OpenGraph, canonical URLs, and structured data.",
|
|
1762
|
+
"routing_domain": "frontend",
|
|
1763
|
+
"routing_tier": "basic",
|
|
1764
|
+
"trigger_keywords": ["seo fundamentals", "meta tags", "opengraph", "sitemap"]
|
|
1765
|
+
},
|
|
1766
|
+
{
|
|
1767
|
+
"name": "server-management",
|
|
1768
|
+
"description": "Production Linux administration, Nginx reverse proxy, UFW firewalls, SSH, systemd.",
|
|
1769
|
+
"routing_domain": "devops",
|
|
1770
|
+
"routing_tier": "expert",
|
|
1771
|
+
"trigger_keywords": ["server management", "nginx", "ufw", "systemd", "linux"]
|
|
1772
|
+
},
|
|
1773
|
+
{
|
|
1774
|
+
"name": "shadcn-ui-expert",
|
|
1775
|
+
"description": "Shadcn UI component library customization and Tailwind integration.",
|
|
1776
|
+
"routing_domain": "frontend",
|
|
1777
|
+
"routing_tier": "specialized",
|
|
1778
|
+
"trigger_keywords": ["shadcn", "shadcn ui", "tailwind components"]
|
|
1779
|
+
},
|
|
1780
|
+
{
|
|
1781
|
+
"name": "shape",
|
|
1782
|
+
"description": "Plan feature UX before writing code via structured Socratic design interviews.",
|
|
1783
|
+
"routing_domain": "frontend",
|
|
1784
|
+
"routing_tier": "specialized",
|
|
1785
|
+
"trigger_keywords": ["shape", "ux planning", "onboarding flow", "design interview"]
|
|
1786
|
+
},
|
|
1787
|
+
{
|
|
1788
|
+
"name": "skill-creator",
|
|
1789
|
+
"description": "Meta-agent specialized in expanding the framework by creating new SKILL.md files.",
|
|
1790
|
+
"routing_domain": "orchestration",
|
|
1791
|
+
"routing_tier": "expert",
|
|
1792
|
+
"trigger_keywords": ["skill creator", "create skill", "new skill md"]
|
|
1793
|
+
},
|
|
1794
|
+
{
|
|
1795
|
+
"name": "soft-skill",
|
|
1796
|
+
"description": "High-end visual design guidance for premium typography, spacing, depth, and animation.",
|
|
1797
|
+
"routing_domain": "frontend",
|
|
1798
|
+
"routing_tier": "specialized",
|
|
1799
|
+
"trigger_keywords": ["soft skill", "premium design", "visual depth"]
|
|
1800
|
+
},
|
|
1801
|
+
{
|
|
1802
|
+
"name": "sounds-on-the-web",
|
|
1803
|
+
"description": "Web Audio API procedural sound synthesis for tactile micro-interaction audio feedback.",
|
|
1804
|
+
"routing_domain": "motion",
|
|
1805
|
+
"routing_tier": "specialized",
|
|
1806
|
+
"trigger_keywords": ["web audio", "sound synthesis", "micro-interaction audio"]
|
|
1807
|
+
},
|
|
1808
|
+
{
|
|
1809
|
+
"name": "sql-pro",
|
|
1810
|
+
"description": "Advanced SQL query optimization, window functions, CTEs, indexing, and query plans.",
|
|
1811
|
+
"routing_domain": "database",
|
|
1812
|
+
"routing_tier": "expert",
|
|
1813
|
+
"trigger_keywords": ["sql pro", "explain analyze", "window functions", "cte"]
|
|
1814
|
+
},
|
|
1815
|
+
{
|
|
1816
|
+
"name": "supabase-postgres-best-practices",
|
|
1817
|
+
"description": "Supabase & PostgreSQL row level security (RLS), edge functions, and performant schema.",
|
|
1818
|
+
"routing_domain": "database",
|
|
1819
|
+
"routing_tier": "expert",
|
|
1820
|
+
"trigger_keywords": ["supabase", "postgres", "rls", "edge functions"]
|
|
1821
|
+
},
|
|
1822
|
+
{
|
|
1823
|
+
"name": "svg-animation",
|
|
1824
|
+
"description": "SVG stroke draw-on effects, path morphing, animated icons, and motion paths.",
|
|
1825
|
+
"routing_domain": "motion",
|
|
1826
|
+
"routing_tier": "specialized",
|
|
1827
|
+
"trigger_keywords": ["svg animation", "path morphing", "stroke draw"]
|
|
1828
|
+
},
|
|
1829
|
+
{
|
|
1830
|
+
"name": "swiftui-expert",
|
|
1831
|
+
"description": "SwiftUI 5+ for iOS/macOS layout, state management, animations, and Swift Concurrency.",
|
|
1832
|
+
"routing_domain": "mobile",
|
|
1833
|
+
"routing_tier": "expert",
|
|
1834
|
+
"trigger_keywords": ["swiftui", "ios app", "swift concurrency", "macos"]
|
|
1835
|
+
},
|
|
1836
|
+
{
|
|
1837
|
+
"name": "swiss-design",
|
|
1838
|
+
"description": "International Typographic Style (Swiss Design) strict grid, bold typographic contrast.",
|
|
1839
|
+
"routing_domain": "frontend",
|
|
1840
|
+
"routing_tier": "specialized",
|
|
1841
|
+
"trigger_keywords": ["swiss design", "grid discipline", "typographic contrast"]
|
|
1842
|
+
},
|
|
1843
|
+
{
|
|
1844
|
+
"name": "system-design-pro",
|
|
1845
|
+
"description": "System design, distributed systems, caching, message queues, and load balancers.",
|
|
1846
|
+
"routing_domain": "general",
|
|
1847
|
+
"routing_tier": "expert",
|
|
1848
|
+
"trigger_keywords": ["system design pro", "load balancer", "redis cache", "kafka"]
|
|
1849
|
+
},
|
|
1850
|
+
{
|
|
1851
|
+
"name": "systematic-debugging",
|
|
1852
|
+
"description": "Systematic debugging framework, root-cause isolation, 4-phase methodology, trace logs.",
|
|
1853
|
+
"routing_domain": "general",
|
|
1854
|
+
"routing_tier": "core",
|
|
1855
|
+
"trigger_keywords": ["systematic debugging", "root cause isolation", "trace log"]
|
|
1856
|
+
},
|
|
1857
|
+
{
|
|
1858
|
+
"name": "tailwind-patterns",
|
|
1859
|
+
"description": "Tailwind CSS v3/v4 design tokens, arbitrary values, plugin ecosystem, and dynamic themes.",
|
|
1860
|
+
"routing_domain": "frontend",
|
|
1861
|
+
"routing_tier": "specialized",
|
|
1862
|
+
"trigger_keywords": ["tailwind patterns", "tailwind v4", "css utilities"]
|
|
1863
|
+
},
|
|
1864
|
+
{
|
|
1865
|
+
"name": "taste-skill",
|
|
1866
|
+
"description": "Senior UI/UX frontend skill enforcing anti-slop design decisions, motion quality, micro-craft.",
|
|
1867
|
+
"routing_domain": "frontend",
|
|
1868
|
+
"routing_tier": "expert",
|
|
1869
|
+
"trigger_keywords": ["taste skill", "anti-slop", "micro craft", "ui quality"]
|
|
1870
|
+
},
|
|
1871
|
+
{
|
|
1872
|
+
"name": "tdd-workflow",
|
|
1873
|
+
"description": "Test-Driven Development (TDD) mastery, Red-Green-Refactor cycles, and behavioral tests.",
|
|
1874
|
+
"routing_domain": "general",
|
|
1875
|
+
"routing_tier": "expert",
|
|
1876
|
+
"trigger_keywords": ["tdd", "test driven development", "red green refactor"]
|
|
1877
|
+
},
|
|
1878
|
+
{
|
|
1879
|
+
"name": "test-result-analyzer",
|
|
1880
|
+
"description": "Ingests test logs and identifies root causes across failing test files with actionable fixes.",
|
|
1881
|
+
"routing_domain": "general",
|
|
1882
|
+
"routing_tier": "specialized",
|
|
1883
|
+
"trigger_keywords": ["test result analyzer", "test logs", "failing tests"]
|
|
1884
|
+
},
|
|
1885
|
+
{
|
|
1886
|
+
"name": "testing-patterns",
|
|
1887
|
+
"description": "Unit, integration, and E2E testing strategies across frontend and backend stacks.",
|
|
1888
|
+
"routing_domain": "general",
|
|
1889
|
+
"routing_tier": "specialized",
|
|
1890
|
+
"trigger_keywords": ["testing patterns", "unit testing", "integration testing"]
|
|
1891
|
+
},
|
|
1892
|
+
{
|
|
1893
|
+
"name": "thermo-nuclear-code-quality-review",
|
|
1894
|
+
"description": "Strict maintainability review for abstraction quality, giant files, and debt growth.",
|
|
1895
|
+
"routing_domain": "general",
|
|
1896
|
+
"routing_tier": "expert",
|
|
1897
|
+
"trigger_keywords": ["thermo nuclear review", "giant file check", "code debt"]
|
|
1898
|
+
},
|
|
1899
|
+
{
|
|
1900
|
+
"name": "thinking-protocol",
|
|
1901
|
+
"description": "Structured thinking protocol for problem decomposition and systematic decision-making.",
|
|
1902
|
+
"routing_domain": "general",
|
|
1903
|
+
"routing_tier": "core",
|
|
1904
|
+
"trigger_keywords": ["thinking protocol", "problem decomposition", "reasoning"]
|
|
1905
|
+
},
|
|
1906
|
+
{
|
|
1907
|
+
"name": "threejs-fundamentals",
|
|
1908
|
+
"description": "Three.js 3D graphics for web, scene setup, lighting, materials, geometries, and WebGL.",
|
|
1909
|
+
"routing_domain": "motion",
|
|
1910
|
+
"routing_tier": "specialized",
|
|
1911
|
+
"trigger_keywords": ["threejs", "webgl 3d", "3d scene", "lighting"]
|
|
1912
|
+
},
|
|
1913
|
+
{
|
|
1914
|
+
"name": "to-spring-or-not-to-spring",
|
|
1915
|
+
"description": "Audit physics-based spring animations vs duration-based cubic-bezier easing curves.",
|
|
1916
|
+
"routing_domain": "motion",
|
|
1917
|
+
"routing_tier": "specialized",
|
|
1918
|
+
"trigger_keywords": ["spring animation", "stiffness damping", "cubic bezier"]
|
|
1919
|
+
},
|
|
1920
|
+
{
|
|
1921
|
+
"name": "transitions-dev",
|
|
1922
|
+
"description": "Production CSS transition patterns for cards, modals, dropdowns, panels, accordions.",
|
|
1923
|
+
"routing_domain": "motion",
|
|
1924
|
+
"routing_tier": "basic",
|
|
1925
|
+
"trigger_keywords": ["css transitions", "modal transition", "dropdown animation"]
|
|
1926
|
+
},
|
|
1927
|
+
{
|
|
1928
|
+
"name": "trend-researcher",
|
|
1929
|
+
"description": "Creative muse and design trend analyzer for modern web/mobile interfaces.",
|
|
1930
|
+
"routing_domain": "frontend",
|
|
1931
|
+
"routing_tier": "specialized",
|
|
1932
|
+
"trigger_keywords": ["trend researcher", "design trends", "ui inspiration"]
|
|
1933
|
+
},
|
|
1934
|
+
{
|
|
1935
|
+
"name": "typeset",
|
|
1936
|
+
"description": "Web typography scaling, font pairing, optical sizing, line height cadence, text wrap balance.",
|
|
1937
|
+
"routing_domain": "frontend",
|
|
1938
|
+
"routing_tier": "specialized",
|
|
1939
|
+
"trigger_keywords": ["typeset", "typography scale", "line height", "text wrap"]
|
|
1940
|
+
},
|
|
1941
|
+
{
|
|
1942
|
+
"name": "typescript-advanced",
|
|
1943
|
+
"description": "Advanced TypeScript types, conditional types, template literals, type guards, brand types.",
|
|
1944
|
+
"routing_domain": "general",
|
|
1945
|
+
"routing_tier": "expert",
|
|
1946
|
+
"trigger_keywords": ["advanced typescript", "generics", "conditional types", "typeguard"]
|
|
1947
|
+
},
|
|
1948
|
+
{
|
|
1949
|
+
"name": "ui-reasoning-engine",
|
|
1950
|
+
"description": "UI reasoning engine for evaluating design decisions against visual hierarchy and spacing.",
|
|
1951
|
+
"routing_domain": "frontend",
|
|
1952
|
+
"routing_tier": "expert",
|
|
1953
|
+
"trigger_keywords": ["ui reasoning engine", "visual hierarchy", "spacing system"]
|
|
1954
|
+
},
|
|
1955
|
+
{
|
|
1956
|
+
"name": "ui-skill-packs",
|
|
1957
|
+
"description": "Mandatory skill loading packs consolidating UI skills into 3 tiered units.",
|
|
1958
|
+
"routing_domain": "frontend",
|
|
1959
|
+
"routing_tier": "core",
|
|
1960
|
+
"trigger_keywords": ["ui skill packs", "skill loading pack", "ui bundle"]
|
|
1961
|
+
},
|
|
1962
|
+
{
|
|
1963
|
+
"name": "ui-skills-root",
|
|
1964
|
+
"description": "Master router skill for design engineering and UI craft.",
|
|
1965
|
+
"routing_domain": "frontend",
|
|
1966
|
+
"routing_tier": "core",
|
|
1967
|
+
"trigger_keywords": ["ui skills root", "design engineering", "ui router"]
|
|
1968
|
+
},
|
|
1969
|
+
{
|
|
1970
|
+
"name": "ui-ux-pro-max",
|
|
1971
|
+
"description": "Plan and implement cutting-edge UI/UX with modular swarm architecture.",
|
|
1972
|
+
"routing_domain": "frontend",
|
|
1973
|
+
"routing_tier": "expert",
|
|
1974
|
+
"trigger_keywords": ["ui ux pro max", "picasso ui", "modular swarm ui"]
|
|
1975
|
+
},
|
|
1976
|
+
{
|
|
1977
|
+
"name": "ui-ux-researcher",
|
|
1978
|
+
"description": "Expert auditor for accessibility, cognitive load, and premium design heuristics.",
|
|
1979
|
+
"routing_domain": "frontend",
|
|
1980
|
+
"routing_tier": "specialized",
|
|
1981
|
+
"trigger_keywords": ["ui ux researcher", "cognitive load", "heuristics audit"]
|
|
1982
|
+
},
|
|
1983
|
+
{
|
|
1984
|
+
"name": "vulnerability-scanner",
|
|
1985
|
+
"description": "Automated security vulnerability scanner for dependencies and code injection vectors.",
|
|
1986
|
+
"routing_domain": "security",
|
|
1987
|
+
"routing_tier": "expert",
|
|
1988
|
+
"trigger_keywords": ["vulnerability scanner", "cve scan", "security audit"]
|
|
1989
|
+
},
|
|
1990
|
+
{
|
|
1991
|
+
"name": "vue-expert",
|
|
1992
|
+
"description": "Vue 3.5+ Composition API, script setup, reactive refs, Pinia, Vue Router 4, Nuxt 4.",
|
|
1993
|
+
"routing_domain": "frontend",
|
|
1994
|
+
"routing_tier": "specialized",
|
|
1995
|
+
"trigger_keywords": ["vue expert", "vue 3", "nuxt 4", "pinia"]
|
|
1996
|
+
},
|
|
1997
|
+
{
|
|
1998
|
+
"name": "web-accessibility-auditor",
|
|
1999
|
+
"description": "Comprehensive WCAG 2.2 AA accessibility auditor for web applications.",
|
|
2000
|
+
"routing_domain": "frontend",
|
|
2001
|
+
"routing_tier": "specialized",
|
|
2002
|
+
"trigger_keywords": ["web a11y auditor", "wcag audit", "accessibility report"]
|
|
2003
|
+
},
|
|
2004
|
+
{
|
|
2005
|
+
"name": "web-design-guidelines",
|
|
2006
|
+
"description": "Review UI code for Next-Generation Web Interface Guidelines compliance.",
|
|
2007
|
+
"routing_domain": "frontend",
|
|
2008
|
+
"routing_tier": "specialized",
|
|
2009
|
+
"trigger_keywords": ["web design guidelines", "ui guidelines", "interface audit"]
|
|
2010
|
+
},
|
|
2011
|
+
{
|
|
2012
|
+
"name": "web-quality-audit",
|
|
2013
|
+
"description": "Lighthouse-style analysis across Performance, Accessibility, Best Practices, SEO.",
|
|
2014
|
+
"routing_domain": "general",
|
|
2015
|
+
"routing_tier": "specialized",
|
|
2016
|
+
"trigger_keywords": ["web quality audit", "lighthouse", "seo audit"]
|
|
2017
|
+
},
|
|
2018
|
+
{
|
|
2019
|
+
"name": "webapp-testing",
|
|
2020
|
+
"description": "Full-stack web application testing, mock servers, fixtures, and CI configuration.",
|
|
2021
|
+
"routing_domain": "general",
|
|
2022
|
+
"routing_tier": "specialized",
|
|
2023
|
+
"trigger_keywords": ["webapp testing", "mock server", "test fixtures"]
|
|
2024
|
+
},
|
|
2025
|
+
{
|
|
2026
|
+
"name": "webgpu-performance",
|
|
2027
|
+
"description": "WebGPU API, WGSL compute shaders, explicit GPU memory, and browser tensor calculations.",
|
|
2028
|
+
"routing_domain": "motion",
|
|
2029
|
+
"routing_tier": "expert",
|
|
2030
|
+
"trigger_keywords": ["webgpu", "wgsl", "compute shaders", "gpu memory"]
|
|
2031
|
+
},
|
|
2032
|
+
{
|
|
2033
|
+
"name": "whimsy-injector",
|
|
2034
|
+
"description": "Micro-delight generator for subtle animations, playful transitions, and tactile feedback.",
|
|
2035
|
+
"routing_domain": "motion",
|
|
2036
|
+
"routing_tier": "specialized",
|
|
2037
|
+
"trigger_keywords": ["whimsy injector", "playful transition", "micro delight"]
|
|
2038
|
+
},
|
|
2039
|
+
{
|
|
2040
|
+
"name": "workflow-optimizer",
|
|
2041
|
+
"description": "Analyzes agent tool-calling patterns and task execution efficiency to suggest improvements.",
|
|
2042
|
+
"routing_domain": "orchestration",
|
|
2043
|
+
"routing_tier": "specialized",
|
|
2044
|
+
"trigger_keywords": ["workflow optimizer", "tool calling efficiency", "agent performance"]
|
|
2045
|
+
}
|
|
275
2046
|
]
|
|
276
2047
|
}
|