tribunal-kit 7.0.0 → 9.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/ARCHITECTURE.md +2 -2
- package/.agent/config/claude.json +18 -0
- package/.agent/config/plugin.json +102 -0
- package/.agent/config/slash-commands.json +103 -0
- package/.agent/config/specialist-registry.json +415 -0
- package/.agent/config/system-prompt.md +244 -0
- package/.agent/history/architecture-graph.yaml +302 -3
- package/.agent/history/graph-cache.json +515 -45
- package/.agent/history/memory.db +0 -0
- package/.agent/history/snapshots/bin__adapter-install.js.json +13 -0
- package/.agent/history/snapshots/bin__global-store.js.json +15 -0
- package/.agent/history/snapshots/bin__mcp-server.js.json +19 -0
- package/.agent/history/snapshots/bin__proxy-server.js.json +20 -0
- package/.agent/history/snapshots/bin__spawn-agent.js.json +12 -0
- package/.agent/history/snapshots/bin__tk-proxy.js.json +21 -0
- package/.agent/history/snapshots/bin__tribunal-kit.js.json +9 -7
- package/.agent/history/snapshots/bin__wrapper.js.json +14 -0
- package/.agent/history/snapshots/eslint.config.js.json +1 -2
- package/.agent/history/snapshots/scripts__benchmark.js.json +14 -0
- package/.agent/history/snapshots/scripts__changelog.js.json +1 -2
- package/.agent/history/snapshots/scripts__fix-vbc.js.json +11 -0
- package/.agent/history/snapshots/scripts__stress_benchmark.js.json +15 -0
- package/.agent/history/snapshots/scripts__sync-version.js.json +1 -2
- package/.agent/history/snapshots/scripts__validate-payload.js.json +1 -2
- package/.agent/history/snapshots/scripts__visual_audit.js.json +11 -0
- package/.agent/history/snapshots/test__integration__bridges.test.js.json +1 -2
- package/.agent/history/snapshots/test__integration__graceful_degradation.test.js.json +12 -0
- package/.agent/history/snapshots/test__integration__init.test.js.json +1 -2
- package/.agent/history/snapshots/test__integration__minimal_change_pipeline.test.js.json +13 -0
- package/.agent/history/snapshots/test__integration__parallel_tribunal.test.js.json +12 -0
- package/.agent/history/snapshots/test__integration__routing.test.js.json +1 -2
- package/.agent/history/snapshots/test__integration__swarm_dispatcher.test.js.json +1 -2
- package/.agent/history/snapshots/test__integration__sync_status.test.js.json +13 -0
- package/.agent/history/snapshots/test__integration__wave2.test.js.json +1 -2
- package/.agent/history/snapshots/test__integration__wrapper.test.js.json +13 -0
- package/.agent/history/snapshots/test__unit__align.test.js.json +10 -0
- package/.agent/history/snapshots/test__unit__args.test.js.json +3 -3
- package/.agent/history/snapshots/test__unit__audit_release.test.js.json +16 -0
- package/.agent/history/snapshots/test__unit__case_law_manager.test.js.json +1 -2
- package/.agent/history/snapshots/test__unit__cicd_validator.test.js.json +12 -0
- package/.agent/history/snapshots/test__unit__compile.test.js.json +10 -0
- package/.agent/history/snapshots/test__unit__context_broker.test.js.json +1 -2
- package/.agent/history/snapshots/test__unit__contract_engine.test.js.json +13 -0
- package/.agent/history/snapshots/test__unit__copyDir.test.js.json +3 -3
- package/.agent/history/snapshots/test__unit__graph_tools.test.js.json +1 -2
- package/.agent/history/snapshots/test__unit__guardrail_engine.test.js.json +10 -0
- package/.agent/history/snapshots/test__unit__impact_classifier.test.js.json +12 -0
- package/.agent/history/snapshots/test__unit__init.test.js.json +14 -0
- package/.agent/history/snapshots/test__unit__inner_loop_validator.test.js.json +1 -2
- package/.agent/history/snapshots/test__unit__integrity_manifest.test.js.json +13 -0
- package/.agent/history/snapshots/test__unit__learn.test.js.json +11 -0
- package/.agent/history/snapshots/test__unit__marathon.test.js.json +22 -0
- package/.agent/history/snapshots/test__unit__mcp_server.test.js.json +16 -0
- package/.agent/history/snapshots/test__unit__memory.test.js.json +13 -0
- package/.agent/history/snapshots/test__unit__minimal_change.test.js.json +10 -0
- package/.agent/history/snapshots/test__unit__native.test.js.json +10 -0
- package/.agent/history/snapshots/test__unit__optimize.test.js.json +13 -0
- package/.agent/history/snapshots/test__unit__path_resolution.test.js.json +14 -0
- package/.agent/history/snapshots/test__unit__production_readiness_evidence.test.js.json +21 -0
- package/.agent/history/snapshots/test__unit__selfInstall.test.js.json +3 -3
- package/.agent/history/snapshots/test__unit__semver.test.js.json +3 -3
- package/.agent/history/snapshots/test__unit__skill_evolution.test.js.json +11 -0
- package/.agent/history/snapshots/test__unit__stress.test.js.json +15 -0
- package/.agent/history/snapshots/test__unit__swarm_dispatcher.test.js.json +3 -3
- package/.agent/history/snapshots/test__unit__utils.test.js.json +10 -0
- package/.agent/routing_index.json +2 -2
- package/.agent/scripts/ast_context_loader.js +137 -0
- package/.agent/scripts/memory_engine.js +581 -0
- package/.agent/scripts/payload_schemas.js +146 -0
- package/.agent/scripts/prompt_compiler.js +59 -11
- package/.agent/scripts/swarm_dispatcher.js +295 -67
- package/.agent/scripts/token_budget_broker.js +117 -6
- package/.agent/skills/12-principles-of-animation/SKILL.md +19 -16
- package/.agent/skills/60fps-animation/SKILL.md +47 -21
- package/.agent/skills/accessible-animation/SKILL.md +19 -16
- package/.agent/skills/adapt/SKILL.md +19 -16
- package/.agent/skills/advanced-rag-pipelines/SKILL.md +41 -40
- package/.agent/skills/agent-organizer/SKILL.md +9 -59
- package/.agent/skills/agentic-patterns/SKILL.md +9 -57
- package/.agent/skills/agentic-workflows-2026/SKILL.md +45 -8
- package/.agent/skills/ai-app-hardening/SKILL.md +31 -5
- package/.agent/skills/ai-prompt-injection-defense/SKILL.md +28 -66
- package/.agent/skills/animation-on-scroll/SKILL.md +19 -16
- package/.agent/skills/animation-systems/SKILL.md +19 -15
- package/.agent/skills/antfu-conventions/SKILL.md +19 -18
- package/.agent/skills/api-patterns/SKILL.md +8 -58
- package/.agent/skills/api-security-auditor/SKILL.md +8 -58
- package/.agent/skills/app-builder/SKILL.md +9 -59
- package/.agent/skills/appflow-wireframe/SKILL.md +13 -57
- package/.agent/skills/apple-design/SKILL.md +22 -14
- package/.agent/skills/architecture/SKILL.md +9 -59
- package/.agent/skills/audit-and-fix/SKILL.md +19 -16
- package/.agent/skills/authentication-best-practices/SKILL.md +8 -58
- package/.agent/skills/backend-security-expert/SKILL.md +32 -65
- package/.agent/skills/baseline-ui/SKILL.md +22 -14
- package/.agent/skills/bash-linux/SKILL.md +9 -59
- package/.agent/skills/behavioral-modes/SKILL.md +9 -57
- package/.agent/skills/better-colors/SKILL.md +22 -14
- package/.agent/skills/better-typography/SKILL.md +26 -14
- package/.agent/skills/better-ui/SKILL.md +54 -19
- package/.agent/skills/bolder/SKILL.md +19 -16
- package/.agent/skills/brainstorming/SKILL.md +9 -57
- package/.agent/skills/browser-native-ai/SKILL.md +9 -28
- package/.agent/skills/build-primitive/SKILL.md +19 -16
- package/.agent/skills/building-native-ui/SKILL.md +9 -59
- package/.agent/skills/cicd-pro/SKILL.md +21 -28
- package/.agent/skills/clarify/SKILL.md +19 -16
- package/.agent/skills/clean-code/SKILL.md +18 -61
- package/.agent/skills/cloud-architect/SKILL.md +21 -28
- package/.agent/skills/cobejs/SKILL.md +19 -15
- package/.agent/skills/code-review-checklist/SKILL.md +8 -58
- package/.agent/skills/codebase-design/SKILL.md +33 -22
- package/.agent/skills/colorize/SKILL.md +19 -16
- package/.agent/skills/compact-landing/SKILL.md +19 -16
- package/.agent/skills/company-logos/SKILL.md +19 -16
- package/.agent/skills/config-validator/SKILL.md +9 -59
- package/.agent/skills/containerization-pro/SKILL.md +21 -28
- package/.agent/skills/context-engineering-pro/SKILL.md +31 -5
- package/.agent/skills/create-design-md/SKILL.md +22 -14
- package/.agent/skills/critique/SKILL.md +20 -11
- package/.agent/skills/csharp-developer/SKILL.md +8 -58
- package/.agent/skills/data-validation-schemas/SKILL.md +9 -59
- package/.agent/skills/database-design/SKILL.md +27 -67
- package/.agent/skills/delight/SKILL.md +19 -16
- package/.agent/skills/deployment-procedures/SKILL.md +9 -59
- package/.agent/skills/design-lab/SKILL.md +19 -16
- package/.agent/skills/devops-engineer/SKILL.md +8 -58
- package/.agent/skills/devops-incident-responder/SKILL.md +9 -59
- package/.agent/skills/diagnosing-bugs/SKILL.md +20 -21
- package/.agent/skills/distill/SKILL.md +19 -16
- package/.agent/skills/documentation-templates/SKILL.md +9 -59
- package/.agent/skills/domain-modeling/SKILL.md +19 -18
- package/.agent/skills/duckdb-analytical-sql/SKILL.md +31 -5
- package/.agent/skills/edge-ai-mobile/SKILL.md +31 -5
- package/.agent/skills/edge-computing/SKILL.md +9 -59
- package/.agent/skills/emil-design-eng/SKILL.md +21 -24
- package/.agent/skills/error-resilience/SKILL.md +31 -66
- package/.agent/skills/expo-router-v4/SKILL.md +31 -5
- package/.agent/skills/extract-design-system/SKILL.md +9 -59
- package/.agent/skills/fabel-protocol/SKILL.md +26 -8
- package/.agent/skills/fixing-accessibility/SKILL.md +22 -14
- package/.agent/skills/fixing-metadata/SKILL.md +19 -16
- package/.agent/skills/fixing-motion-performance/SKILL.md +22 -14
- package/.agent/skills/framer-motion-expert/SKILL.md +9 -57
- package/.agent/skills/frontend-design/SKILL.md +27 -7
- package/.agent/skills/frontend-security-expert/SKILL.md +8 -58
- package/.agent/skills/game-design-expert/SKILL.md +9 -59
- package/.agent/skills/game-engineering-expert/SKILL.md +9 -59
- package/.agent/skills/generative-ui-expert/SKILL.md +9 -28
- package/.agent/skills/geo-fundamentals/SKILL.md +9 -59
- package/.agent/skills/git-pro/SKILL.md +19 -30
- package/.agent/skills/github-operations/SKILL.md +8 -58
- package/.agent/skills/gpt-taste/SKILL.md +19 -16
- package/.agent/skills/gsap-core/SKILL.md +8 -78
- package/.agent/skills/gsap-frameworks/SKILL.md +8 -78
- package/.agent/skills/gsap-performance/SKILL.md +9 -77
- package/.agent/skills/gsap-plugins/SKILL.md +9 -77
- package/.agent/skills/gsap-react/SKILL.md +9 -21
- package/.agent/skills/gsap-scrolltrigger/SKILL.md +8 -78
- package/.agent/skills/gsap-timeline/SKILL.md +9 -77
- package/.agent/skills/gsap-utils/SKILL.md +9 -77
- package/.agent/skills/harden/SKILL.md +19 -16
- package/.agent/skills/harness-protocol/SKILL.md +9 -21
- package/.agent/skills/i18n-localization/SKILL.md +9 -59
- package/.agent/skills/impeccable/SKILL.md +19 -18
- package/.agent/skills/improve-codebase-architecture/SKILL.md +19 -17
- package/.agent/skills/improve-ui/SKILL.md +22 -14
- package/.agent/skills/intelligent-routing/SKILL.md +9 -23
- package/.agent/skills/knowledge-graph/SKILL.md +9 -21
- package/.agent/skills/landing-page/SKILL.md +19 -16
- package/.agent/skills/lint-and-validate/SKILL.md +9 -59
- package/.agent/skills/llm-engineering/SKILL.md +8 -58
- package/.agent/skills/local-first/SKILL.md +9 -59
- package/.agent/skills/local-first-architecture/SKILL.md +37 -20
- package/.agent/skills/lottie-animation/SKILL.md +19 -15
- package/.agent/skills/marquee-loop/SKILL.md +19 -16
- package/.agent/skills/masked-reveal/SKILL.md +19 -15
- package/.agent/skills/mcp-builder/SKILL.md +9 -59
- package/.agent/skills/micro-interaction/SKILL.md +19 -16
- package/.agent/skills/mobile-design/SKILL.md +8 -58
- package/.agent/skills/monorepo-management/SKILL.md +9 -59
- package/.agent/skills/morphing-icons/SKILL.md +19 -15
- package/.agent/skills/motion-engineering/SKILL.md +22 -15
- package/.agent/skills/nextjs-react-expert/SKILL.md +35 -67
- package/.agent/skills/nodejs-best-practices/SKILL.md +34 -61
- package/.agent/skills/observability/SKILL.md +8 -58
- package/.agent/skills/opentelemetry-observability/SKILL.md +31 -5
- package/.agent/skills/page-transition-animation/SKILL.md +19 -16
- package/.agent/skills/parallel-agents/SKILL.md +9 -59
- package/.agent/skills/performance-profiling/SKILL.md +8 -58
- package/.agent/skills/plan-writing/SKILL.md +36 -69
- package/.agent/skills/platform-engineer/SKILL.md +9 -59
- package/.agent/skills/platform-engineering-opentofu/SKILL.md +31 -5
- package/.agent/skills/playwright-ai-e2e/SKILL.md +31 -5
- package/.agent/skills/playwright-best-practices/SKILL.md +9 -59
- package/.agent/skills/polish/SKILL.md +19 -16
- package/.agent/skills/powershell-windows/SKILL.md +8 -58
- package/.agent/skills/pricing-page/SKILL.md +19 -16
- package/.agent/skills/product-aware-heuristics/SKILL.md +27 -8
- package/.agent/skills/progressive-blur/SKILL.md +19 -16
- package/.agent/skills/project-idioms/SKILL.md +9 -59
- package/.agent/skills/property-based-testing/SKILL.md +31 -5
- package/.agent/skills/python-patterns/SKILL.md +9 -59
- package/.agent/skills/python-pro/SKILL.md +35 -67
- package/.agent/skills/quieter/SKILL.md +19 -16
- package/.agent/skills/react-doctor/SKILL.md +19 -16
- package/.agent/skills/react-specialist/SKILL.md +26 -65
- package/.agent/skills/readme-builder/SKILL.md +9 -59
- package/.agent/skills/realtime-patterns/SKILL.md +8 -58
- package/.agent/skills/red-team-tactics/SKILL.md +9 -59
- package/.agent/skills/redesign-skill/SKILL.md +19 -16
- package/.agent/skills/review-animations/SKILL.md +21 -25
- package/.agent/skills/rust-pro/SKILL.md +30 -61
- package/.agent/skills/seo-fundamentals/SKILL.md +9 -59
- package/.agent/skills/server-management/SKILL.md +9 -59
- package/.agent/skills/shadcn-ui-expert/SKILL.md +9 -59
- package/.agent/skills/shape/SKILL.md +19 -16
- package/.agent/skills/skill-creator/SKILL.md +36 -86
- package/.agent/skills/soft-skill/SKILL.md +19 -16
- package/.agent/skills/sounds-on-the-web/SKILL.md +19 -16
- package/.agent/skills/sql-pro/SKILL.md +47 -62
- package/.agent/skills/supabase-postgres-best-practices/SKILL.md +9 -59
- package/.agent/skills/svg-animation/SKILL.md +19 -15
- package/.agent/skills/swiftui-expert/SKILL.md +9 -59
- package/.agent/skills/swiss-design/SKILL.md +19 -16
- package/.agent/skills/system-design-pro/SKILL.md +21 -26
- package/.agent/skills/systematic-debugging/SKILL.md +19 -60
- package/.agent/skills/systematic-debugging/condition-based-waiting.md +115 -0
- package/.agent/skills/systematic-debugging/defense-in-depth.md +122 -0
- package/.agent/skills/systematic-debugging/root-cause-tracing.md +169 -0
- package/.agent/skills/tailwind-patterns/SKILL.md +8 -58
- package/.agent/skills/taste-skill/SKILL.md +19 -16
- package/.agent/skills/tdd-workflow/SKILL.md +65 -25
- package/.agent/skills/test-result-analyzer/SKILL.md +9 -59
- package/.agent/skills/testing-patterns/SKILL.md +8 -58
- package/.agent/skills/thermo-nuclear-code-quality-review/SKILL.md +19 -18
- package/.agent/skills/thinking-protocol/SKILL.md +33 -2
- package/.agent/skills/to-spring-or-not-to-spring/SKILL.md +19 -15
- package/.agent/skills/transitions-dev/SKILL.md +19 -15
- package/.agent/skills/trend-researcher/SKILL.md +9 -59
- package/.agent/skills/typescript-advanced/SKILL.md +21 -64
- package/.agent/skills/typeset/SKILL.md +19 -16
- package/.agent/skills/ui-reasoning-engine/SKILL.md +27 -8
- package/.agent/skills/ui-skill-packs/SKILL.md +26 -16
- package/.agent/skills/ui-skills-root/SKILL.md +22 -14
- package/.agent/skills/ui-ux-pro-max/SKILL.md +38 -12
- package/.agent/skills/ui-ux-researcher/SKILL.md +9 -59
- package/.agent/skills/vector-search-pgvector/SKILL.md +31 -5
- package/.agent/skills/verification-before-completion/SKILL.md +125 -0
- package/.agent/skills/vue-expert/SKILL.md +9 -57
- package/.agent/skills/vulnerability-scanner/SKILL.md +8 -58
- package/.agent/skills/web-accessibility-auditor/SKILL.md +9 -59
- package/.agent/skills/web-design-guidelines/SKILL.md +27 -7
- package/.agent/skills/web-quality-audit/SKILL.md +19 -16
- package/.agent/skills/webapp-testing/SKILL.md +9 -59
- package/.agent/skills/webgpu-performance/SKILL.md +9 -28
- package/.agent/skills/whimsy-injector/SKILL.md +9 -57
- package/.agent/skills/workflow-optimizer/SKILL.md +9 -57
- package/.agent/skills/zero-trust-passkeys/SKILL.md +31 -5
- package/.agent/templates/DESIGN.md +680 -160
- package/.agent/templates/sdd/implementer-prompt.md +53 -0
- package/.agent/templates/sdd/re-review-prompt.md +28 -0
- package/.agent/templates/sdd/task-reviewer-prompt.md +59 -0
- package/.agent/workflows/acf.md +4 -0
- package/.agent/workflows/api-tester.md +5 -0
- package/.agent/workflows/audit.md +5 -0
- package/.agent/workflows/brainstorm.md +17 -1
- package/.agent/workflows/changelog.md +5 -0
- package/.agent/workflows/contract.md +19 -0
- package/.agent/workflows/create.md +6 -1
- package/.agent/workflows/debug.md +5 -0
- package/.agent/workflows/deploy.md +6 -1
- package/.agent/workflows/enhance.md +6 -1
- package/.agent/workflows/fix-ci.md +5 -0
- package/.agent/workflows/fix.md +5 -0
- package/.agent/workflows/generate.md +5 -0
- package/.agent/workflows/marathon.md +6 -1
- package/.agent/workflows/migrate.md +5 -0
- package/.agent/workflows/minimal.md +4 -0
- package/.agent/workflows/orchestrate.md +6 -1
- package/.agent/workflows/performance-benchmarker.md +6 -1
- package/.agent/workflows/pipeline.md +5 -0
- package/.agent/workflows/plan.md +6 -1
- package/.agent/workflows/preview.md +6 -1
- package/.agent/workflows/refactor.md +6 -0
- package/.agent/workflows/review-ai.md +5 -0
- package/.agent/workflows/review.md +5 -0
- package/.agent/workflows/sdd.md +122 -0
- package/.agent/workflows/session.md +5 -0
- package/.agent/workflows/status.md +4 -0
- package/.agent/workflows/super-prompt.md +4 -0
- package/.agent/workflows/swarm.md +6 -1
- package/.agent/workflows/test.md +6 -1
- package/.agent/workflows/tribunal-backend.md +5 -0
- package/.agent/workflows/tribunal-cicd.md +5 -0
- package/.agent/workflows/tribunal-database.md +5 -0
- package/.agent/workflows/tribunal-full.md +8 -0
- package/.agent/workflows/tribunal-mobile.md +5 -0
- package/.agent/workflows/tribunal-performance.md +5 -0
- package/.agent/workflows/tribunal-speed.md +5 -0
- package/.agent/workflows/tribunal-ui.md +7 -0
- package/.agents/plugins/marketplace.json +20 -0
- package/.claude/CLAUDE.md +442 -0
- package/.claude-plugin/marketplace.json +17 -0
- package/.claude-plugin/plugin.json +26 -0
- package/.codex-plugin/plugin.json +45 -0
- package/.cursor-plugin/plugin.json +26 -0
- package/.devin-plugin/plugin.json +14 -0
- package/.hermes-plugin/__init__.py +102 -0
- package/.hermes-plugin/plugin.yaml +6 -0
- package/.kimi-plugin/plugin.json +38 -0
- package/.opencode/INSTALL.md +41 -0
- package/.opencode/plugins/tribunal.js +101 -0
- package/.pi/extensions/tribunal.ts +133 -0
- package/CONTRIBUTING.md +1 -1
- package/README.md +253 -218
- package/SECURITY.md +3 -3
- package/bin/adapter-install.js +240 -0
- package/bin/global-store.js +48 -0
- package/bin/mcp-server.js +568 -252
- package/bin/proxy-server.js +113 -0
- package/bin/spawn-agent.js +39 -0
- package/bin/tk-proxy.js +34 -0
- package/bin/wrapper.js +1 -0
- package/dist/cli.js +355 -355
- package/dist/commands/init.js +8 -51
- package/dist/commands/status.js +61 -36
- package/dist/commands/validate.js +22 -31
- package/dist/esm/index.mjs +142 -142
- package/dist/index.d.ts +349 -343
- package/dist/tui/banner.js +77 -0
- package/dist/tui/index.js +21 -0
- package/dist/tui/reviewer-grid.js +90 -0
- package/dist/tui/shimmer.js +91 -0
- package/dist/tui/theme.js +130 -0
- package/dist/tui/tree.js +93 -0
- package/dist/tui/wizard.js +148 -0
- package/dist/utils/helpers.js +5 -41
- package/gemini-extension.json +6 -0
- package/hooks/hooks-cursor.json +16 -0
- package/hooks/hooks.json +16 -0
- package/hooks/session-start.js +77 -0
- package/package.json +165 -129
- package/scripts/audit_skill_sdo.js +87 -0
- package/scripts/build-graph.js +71 -0
- package/scripts/modernize_skills.js +254 -0
- package/.agent/history/snapshots/migrate_refs.js.json +0 -11
- package/.agent/scripts/compile_router.py +0 -5
- package/.agent/scripts/migrate_skills_frontmatter.py +0 -5
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
name: generative-ui-expert
|
|
3
3
|
description: Generative UI mastery. Vercel AI SDK 3.0+, React Server Components (RSC) + LLMs, streaming UI elements, structured tool calling (Zod schemas), and managing client-side AI state via useChat/useObject.
|
|
4
4
|
tools: Read, Grep, Glob, Bash, Edit, Write
|
|
5
|
-
version:
|
|
6
|
-
last-updated: 2026-07
|
|
5
|
+
version: 4.0.0
|
|
6
|
+
last-updated: 2026-09-07
|
|
7
7
|
skills:
|
|
8
8
|
- nextjs-react-expert
|
|
9
9
|
- react-specialist
|
|
@@ -27,6 +27,12 @@ Before implementing Generative UI streaming pipelines, you MUST inspect:
|
|
|
27
27
|
|
|
28
28
|
You are the definitive expert in Generative UI using the Vercel AI SDK and React Server Components (RSC). Your goal is to move AI from spitting out "markdown walls of text" into rendering interactive, stateful, and dynamic UI components natively inside the chat or application stream.
|
|
29
29
|
|
|
30
|
+
|
|
31
|
+
## Activation Boundaries
|
|
32
|
+
|
|
33
|
+
- **Activate when:** Operating in tasks requiring Generative UI mastery. Vercel AI SDK 3.0+, React Server Components (RSC) + LLMs, streaming UI elements, structured tool calling (Zod schemas), and managing client-side AI state via useChat/useObject..
|
|
34
|
+
- **DO NOT activate when:** The task falls strictly outside generative-ui-expert domain or belongs to a different dedicated specialist.
|
|
35
|
+
|
|
30
36
|
## 1. Core Principles
|
|
31
37
|
|
|
32
38
|
- **No Markdown Slop:** Avoid dumping raw markdown when structured UI can be used. If the user asks for a weather report, stream a `<WeatherCard />`, not text.
|
|
@@ -105,42 +111,19 @@ Before submitting code, ensure:
|
|
|
105
111
|
2. Server Actions are properly annotated with `"use server"`.
|
|
106
112
|
3. The model supports tool calling (e.g., `gpt-4o`, `claude-3-5-sonnet`).
|
|
107
113
|
|
|
108
|
-
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
109
|
-
|
|
110
|
-
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
111
|
-
|
|
112
|
-
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
113
|
-
- ✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|
|
114
|
-
|
|
115
114
|
---
|
|
116
115
|
|
|
117
|
-
##
|
|
118
|
-
|
|
119
|
-
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
120
|
-
|
|
121
|
-
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
122
|
-
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
123
|
-
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
124
|
-
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
125
|
-
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
126
|
-
|
|
127
|
-
---
|
|
128
|
-
|
|
129
|
-
## 🏛️ Tribunal Integration (Anti-Hallucination)
|
|
116
|
+
## 🏛️ Tribunal Verification & Guardrails
|
|
130
117
|
|
|
131
118
|
**Slash command: `/review` or `/tribunal-full`**
|
|
132
119
|
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
133
120
|
|
|
134
121
|
### ❌ Forbidden AI Tropes
|
|
135
|
-
|
|
136
122
|
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
137
123
|
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
138
124
|
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
139
125
|
|
|
140
126
|
### ✅ Pre-Flight Self-Audit
|
|
141
|
-
|
|
142
|
-
Review these questions before confirming output:
|
|
143
|
-
|
|
144
127
|
```
|
|
145
128
|
✅ Did I rely ONLY on real, verified tools and methods?
|
|
146
129
|
✅ Is this solution appropriately scoped to the user's constraints?
|
|
@@ -149,8 +132,6 @@ Review these questions before confirming output:
|
|
|
149
132
|
```
|
|
150
133
|
|
|
151
134
|
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
152
|
-
|
|
153
135
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
154
|
-
|
|
155
136
|
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
156
137
|
- ✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
name: geo-fundamentals
|
|
3
3
|
description: Generative Engine Optimization (GEO) mastery. Structuring content for LLM ingestion. Adapting SEO for AI interfaces (ChatGPT, Claude, Perplexity), optimizing markdown semantic hierarchies, citation structuring, minimizing boilerplate, reducing HTML DOM depth, and API-first content delivery. Use when making information discoverable not just to Google, but directly to AI indexing agents.
|
|
4
4
|
tools: Read, Grep, Glob, Bash, Edit, Write
|
|
5
|
-
version:
|
|
6
|
-
last-updated: 2026-07
|
|
5
|
+
version: 4.0.0
|
|
6
|
+
last-updated: 2026-09-07
|
|
7
7
|
skills:
|
|
8
8
|
- seo-fundamentals
|
|
9
9
|
- browser-native-ai
|
|
@@ -25,6 +25,12 @@ Before optimizing content for AI engine ingestion, you MUST inspect:
|
|
|
25
25
|
2. Explicit Claim-to-Source Mapping (Section 51) → Map stats and claims directly to explicit `<cite>` sources/links; ban vague unanchored assertions
|
|
26
26
|
3. Text-Based Architecture Diagrams (Section 94) → Represent architecture via text/Mermaid.js code blocks; ban image-only architecture diagrams
|
|
27
27
|
|
|
28
|
+
|
|
29
|
+
## Activation Boundaries
|
|
30
|
+
|
|
31
|
+
- **Activate when:** Operating in tasks requiring Generative Engine Optimization (GEO) mastery. Structuring content for LLM ingestion. Adapting SEO for AI interfaces (ChatGPT, Claude, Perplexity), optimizing markdown semantic hierarchies, citation structuring, minimizing boilerplate, reducing HTML DOM depth, and API-first content delivery. Use when making information discoverable not just to Google, but directly to AI indexing agents..
|
|
32
|
+
- **DO NOT activate when:** The task falls strictly outside geo-fundamentals domain or belongs to a different dedicated specialist.
|
|
33
|
+
|
|
28
34
|
## Hallucination Traps (Read First)
|
|
29
35
|
|
|
30
36
|
- ❌ Assuming SEO and GEO are the same -> ✅ GEO optimizes for AI crawlers and LLM ingestion, not just search engine ranking
|
|
@@ -33,8 +39,6 @@ Before optimizing content for AI engine ingestion, you MUST inspect:
|
|
|
33
39
|
|
|
34
40
|
---
|
|
35
41
|
|
|
36
|
-
# Generative Engine Optimization (GEO)
|
|
37
|
-
|
|
38
42
|
---
|
|
39
43
|
|
|
40
44
|
## 1. The Death of Boilerplate (Information Density)
|
|
@@ -127,69 +131,17 @@ AI coding assistants often fall into specific bad habits when dealing with this
|
|
|
127
131
|
|
|
128
132
|
---
|
|
129
133
|
|
|
130
|
-
|
|
131
|
-
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
132
|
-
|
|
133
|
-
### ❌ Forbidden AI Tropes
|
|
134
|
-
|
|
135
|
-
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
136
|
-
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
137
|
-
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
138
|
-
|
|
139
|
-
Review these questions before confirming output:
|
|
140
|
-
|
|
141
|
-
```
|
|
142
|
-
✅ Did I rely ONLY on real, verified tools and methods?
|
|
143
|
-
✅ Is this solution appropriately scoped to the user's constraints?
|
|
144
|
-
✅ Did I handle potential failure modes and edge cases?
|
|
145
|
-
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
146
|
-
```
|
|
147
|
-
|
|
148
|
-
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
149
|
-
|
|
150
|
-
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
151
|
-
|
|
152
|
-
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
153
|
-
- ✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|
|
154
|
-
|
|
155
|
-
## Pre-Flight Checklist
|
|
156
|
-
|
|
157
|
-
- [ ] Have I reviewed the user's specific constraints and requests?
|
|
158
|
-
- [ ] Have I checked the environment for relevant existing implementations?
|
|
159
|
-
|
|
160
|
-
## VBC Protocol (Verification-Before-Completion)
|
|
161
|
-
|
|
162
|
-
You MUST verify existing code signatures and variables before attempting to modify or call them. No hallucination is permitted.
|
|
163
|
-
|
|
164
|
-
---
|
|
165
|
-
|
|
166
|
-
## 🤖 LLM-Specific Traps
|
|
167
|
-
|
|
168
|
-
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
169
|
-
|
|
170
|
-
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
171
|
-
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
172
|
-
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
173
|
-
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
174
|
-
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
175
|
-
|
|
176
|
-
---
|
|
177
|
-
|
|
178
|
-
## 🏛️ Tribunal Integration (Anti-Hallucination)
|
|
134
|
+
## 🏛️ Tribunal Verification & Guardrails
|
|
179
135
|
|
|
180
136
|
**Slash command: `/review` or `/tribunal-full`**
|
|
181
137
|
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
182
138
|
|
|
183
139
|
### ❌ Forbidden AI Tropes
|
|
184
|
-
|
|
185
140
|
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
186
141
|
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
187
142
|
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
188
143
|
|
|
189
144
|
### ✅ Pre-Flight Self-Audit
|
|
190
|
-
|
|
191
|
-
Review these questions before confirming output:
|
|
192
|
-
|
|
193
145
|
```
|
|
194
146
|
✅ Did I rely ONLY on real, verified tools and methods?
|
|
195
147
|
✅ Is this solution appropriately scoped to the user's constraints?
|
|
@@ -198,8 +150,6 @@ Review these questions before confirming output:
|
|
|
198
150
|
```
|
|
199
151
|
|
|
200
152
|
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
201
|
-
|
|
202
153
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
203
|
-
|
|
204
154
|
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
205
155
|
- ✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
name: git-pro
|
|
3
3
|
description: Industry-level Git & GitHub mastery. Advanced Git internals (bisect, worktrees, reflog), monorepo strategies (Turborepo/Nx), semantic-release, OIDC-based GitHub Actions auth (no static AWS secrets), CODEOWNERS, matrix builds, reusable workflows, and release engineering. Use when advanced Git operations, complex branching strategies, or production-grade CI/CD workflow authoring is required.
|
|
4
4
|
tools: Read, Grep, Glob, Bash, Edit, Write
|
|
5
|
-
version:
|
|
6
|
-
last-updated: 2026-07
|
|
5
|
+
version: 4.0.0
|
|
6
|
+
last-updated: 2026-09-07
|
|
7
7
|
skills:
|
|
8
8
|
- github-operations
|
|
9
9
|
- cicd-pro
|
|
@@ -25,6 +25,12 @@ Before running complex Git operations or writing release workflows, you MUST ins
|
|
|
25
25
|
2. Reflog Recovery Strategy (Section 30) → Inspect `git reflog` to recover lost commits or bad resets before discarding uncommitted state
|
|
26
26
|
3. OIDC Authentication Protocol (Section 208) → Configure OIDC AWS auth (`id-token: write`) in GitHub Actions workflows; ban static AWS access keys
|
|
27
27
|
|
|
28
|
+
|
|
29
|
+
## Activation Boundaries
|
|
30
|
+
|
|
31
|
+
- **Activate when:** Operating in tasks requiring Industry-level Git & GitHub mastery. Advanced Git internals (bisect, worktrees, reflog), monorepo strategies (Turborepo/Nx), semantic-release, OIDC-based GitHub Actions auth (no static AWS secrets), CODEOWNERS, matrix builds, reusable workflows, and release engineering. Use when advanced Git operations, complex branching strategies, or production-grade CI/CD workflow authoring is required..
|
|
32
|
+
- **DO NOT activate when:** The task falls strictly outside git-pro domain or belongs to a different dedicated specialist.
|
|
33
|
+
|
|
28
34
|
## Hallucination Traps (Read First)
|
|
29
35
|
|
|
30
36
|
- ❌ `git push --force` on shared branches → ✅ Always use `git push --force-with-lease` (fails if remote has new commits you haven't seen)
|
|
@@ -35,8 +41,6 @@ Before running complex Git operations or writing release workflows, you MUST ins
|
|
|
35
41
|
|
|
36
42
|
---
|
|
37
43
|
|
|
38
|
-
# Git Pro — Industry-Level Mastery
|
|
39
|
-
|
|
40
44
|
## 1. Advanced Git Internals
|
|
41
45
|
|
|
42
46
|
### Reflog Recovery (Your Safety Net)
|
|
@@ -408,40 +412,25 @@ resource "github_branch_protection" "main" {
|
|
|
408
412
|
|
|
409
413
|
---
|
|
410
414
|
|
|
411
|
-
##
|
|
412
|
-
|
|
413
|
-
1. **`--force` without `--force-with-lease`**: Always use `--force-with-lease`. It fails safely if the remote has new commits, preventing accidental overwrite of teammates' work.
|
|
414
|
-
2. **Rebasing public history**: Never rebase commits already pushed to a shared branch. Use `git revert` to safely undo public commits.
|
|
415
|
-
3. **`GITHUB_TOKEN` scope confusion**: `secrets.GITHUB_TOKEN` cannot trigger other workflows and has limited cross-repo access. Use a GitHub App token for automation.
|
|
416
|
-
4. **Missing `fetch-depth: 0`**: `semantic-release` and `git describe` require full history. Shallow clones (`fetch-depth: 1`) will cause failures.
|
|
417
|
-
5. **Hardcoded branch names in workflows**: Use `github.event.repository.default_branch` or `vars.` instead of hardcoding `main`.
|
|
418
|
-
|
|
419
|
-
---
|
|
420
|
-
|
|
421
|
-
## 🏛️ Tribunal Integration (Anti-Hallucination)
|
|
415
|
+
## 🏛️ Tribunal Verification & Guardrails
|
|
422
416
|
|
|
423
417
|
**Slash command: `/review` or `/tribunal-full`**
|
|
424
|
-
**Active reviewers: `logic-reviewer` · `security-auditor
|
|
418
|
+
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
425
419
|
|
|
426
420
|
### ❌ Forbidden AI Tropes
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
3. **`git push --force`**: Never suggest force pushing to shared/protected branches without `--force-with-lease`.
|
|
421
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
422
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
423
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
431
424
|
|
|
432
425
|
### ✅ Pre-Flight Self-Audit
|
|
433
|
-
|
|
434
426
|
```
|
|
435
|
-
✅
|
|
436
|
-
✅
|
|
437
|
-
✅ Did I
|
|
438
|
-
✅
|
|
439
|
-
✅ Did I include `fetch-depth: 0` where git history is required?
|
|
427
|
+
✅ Did I rely ONLY on real, verified tools and methods?
|
|
428
|
+
✅ Is this solution appropriately scoped to the user's constraints?
|
|
429
|
+
✅ Did I handle potential failure modes and edge cases?
|
|
430
|
+
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
440
431
|
```
|
|
441
432
|
|
|
442
433
|
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
443
|
-
|
|
444
434
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
445
|
-
|
|
446
|
-
-
|
|
447
|
-
- ✅ **Required**: Verify with `act` locally or confirm CI run passes before declaring success.
|
|
435
|
+
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
436
|
+
- ✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
name: github-operations
|
|
3
3
|
description: Git and GitHub workflow mastery. Branching strategies (Git Flow, trunk-based), commit message conventions, interactive rebase, merge conflict resolution, pull request best practices, GitHub Actions, branch protection rules, monorepo strategies, and git hooks. Use when working with Git, GitHub Actions, or any version control operations.
|
|
4
4
|
tools: Read, Grep, Glob, Bash, Edit, Write
|
|
5
|
-
version:
|
|
6
|
-
last-updated: 2026-07
|
|
5
|
+
version: 4.0.0
|
|
6
|
+
last-updated: 2026-09-07
|
|
7
7
|
skills:
|
|
8
8
|
- git-pro
|
|
9
9
|
- cicd-pro
|
|
@@ -25,7 +25,11 @@ Before running Git commands or writing GitHub workflows, you MUST inspect:
|
|
|
25
25
|
2. Conventional Commit Standards (Section 55) → Format commit messages using Conventional Commits (`type(scope): description`) for automated changelogs
|
|
26
26
|
3. Squash Merge Default (Section 146) → Enforce squash merge strategy for feature branches merging into main to keep history linear and clean
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
|
|
29
|
+
## Activation Boundaries
|
|
30
|
+
|
|
31
|
+
- **Activate when:** Operating in tasks requiring Git and GitHub workflow mastery. Branching strategies (Git Flow, trunk-based), commit message conventions, interactive rebase, merge conflict resolution, pull request best practices, GitHub Actions, branch protection rules, monorepo strategies, and git hooks. Use when working with Git, GitHub Actions, or any version control operations..
|
|
32
|
+
- **DO NOT activate when:** The task falls strictly outside github-operations domain or belongs to a different dedicated specialist.
|
|
29
33
|
|
|
30
34
|
---
|
|
31
35
|
|
|
@@ -314,69 +318,17 @@ AI coding assistants often fall into specific bad habits when dealing with this
|
|
|
314
318
|
|
|
315
319
|
---
|
|
316
320
|
|
|
317
|
-
|
|
318
|
-
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
319
|
-
|
|
320
|
-
### ❌ Forbidden AI Tropes
|
|
321
|
-
|
|
322
|
-
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
323
|
-
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
324
|
-
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
325
|
-
|
|
326
|
-
Review these questions before confirming output:
|
|
327
|
-
|
|
328
|
-
```
|
|
329
|
-
✅ Did I rely ONLY on real, verified tools and methods?
|
|
330
|
-
✅ Is this solution appropriately scoped to the user's constraints?
|
|
331
|
-
✅ Did I handle potential failure modes and edge cases?
|
|
332
|
-
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
333
|
-
```
|
|
334
|
-
|
|
335
|
-
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
336
|
-
|
|
337
|
-
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
338
|
-
|
|
339
|
-
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
340
|
-
- ✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|
|
341
|
-
|
|
342
|
-
## Pre-Flight Checklist
|
|
343
|
-
|
|
344
|
-
- [ ] Have I reviewed the user's specific constraints and requests?
|
|
345
|
-
- [ ] Have I checked the environment for relevant existing implementations?
|
|
346
|
-
|
|
347
|
-
## VBC Protocol (Verification-Before-Completion)
|
|
348
|
-
|
|
349
|
-
You MUST verify existing code signatures and variables before attempting to modify or call them. No hallucination is permitted.
|
|
350
|
-
|
|
351
|
-
---
|
|
352
|
-
|
|
353
|
-
## 🤖 LLM-Specific Traps
|
|
354
|
-
|
|
355
|
-
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
356
|
-
|
|
357
|
-
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
358
|
-
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
359
|
-
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
360
|
-
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
361
|
-
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
362
|
-
|
|
363
|
-
---
|
|
364
|
-
|
|
365
|
-
## 🏛️ Tribunal Integration (Anti-Hallucination)
|
|
321
|
+
## 🏛️ Tribunal Verification & Guardrails
|
|
366
322
|
|
|
367
323
|
**Slash command: `/review` or `/tribunal-full`**
|
|
368
324
|
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
369
325
|
|
|
370
326
|
### ❌ Forbidden AI Tropes
|
|
371
|
-
|
|
372
327
|
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
373
328
|
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
374
329
|
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
375
330
|
|
|
376
331
|
### ✅ Pre-Flight Self-Audit
|
|
377
|
-
|
|
378
|
-
Review these questions before confirming output:
|
|
379
|
-
|
|
380
332
|
```
|
|
381
333
|
✅ Did I rely ONLY on real, verified tools and methods?
|
|
382
334
|
✅ Is this solution appropriately scoped to the user's constraints?
|
|
@@ -385,8 +337,6 @@ Review these questions before confirming output:
|
|
|
385
337
|
```
|
|
386
338
|
|
|
387
339
|
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
388
|
-
|
|
389
340
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
390
|
-
|
|
391
341
|
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
392
342
|
- ✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: gpt-taste
|
|
3
3
|
description: High-agency UX/UI skill with strict layout variance, typography, and GSAP motion engineering constraints for superior visual judgment.
|
|
4
|
-
version:
|
|
5
|
-
last-updated: 2026-07
|
|
4
|
+
version: 4.0.0
|
|
5
|
+
last-updated: 2026-09-07
|
|
6
6
|
skills:
|
|
7
7
|
- taste-skill
|
|
8
8
|
- better-ui
|
|
@@ -27,6 +27,12 @@ Before generating UI layouts or visual code, you MUST inspect:
|
|
|
27
27
|
|
|
28
28
|
Inject high-agency visual judgment and layout variance into AI-generated interfaces.
|
|
29
29
|
|
|
30
|
+
|
|
31
|
+
## Activation Boundaries
|
|
32
|
+
|
|
33
|
+
- **Activate when:** Operating in tasks requiring High-agency UX/UI skill with strict layout variance, typography, and GSAP motion engineering constraints for superior visual judgment..
|
|
34
|
+
- **DO NOT activate when:** The task falls strictly outside gpt-taste domain or belongs to a different dedicated specialist.
|
|
35
|
+
|
|
30
36
|
---
|
|
31
37
|
|
|
32
38
|
## 4 High-Agency Visual Constraints
|
|
@@ -57,28 +63,25 @@ Never output placeholder `// TODO: add remaining items` comments in UI code. Gen
|
|
|
57
63
|
|
|
58
64
|
---
|
|
59
65
|
|
|
60
|
-
##
|
|
66
|
+
## 🏛️ Tribunal Verification & Guardrails
|
|
61
67
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
---
|
|
68
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
69
|
+
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
66
70
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
**
|
|
71
|
+
### ❌ Forbidden AI Tropes
|
|
72
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
73
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
74
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
70
75
|
|
|
71
76
|
### ✅ Pre-Flight Self-Audit
|
|
72
|
-
|
|
73
77
|
```
|
|
74
|
-
✅
|
|
75
|
-
✅ Is
|
|
76
|
-
✅
|
|
78
|
+
✅ Did I rely ONLY on real, verified tools and methods?
|
|
79
|
+
✅ Is this solution appropriately scoped to the user's constraints?
|
|
80
|
+
✅ Did I handle potential failure modes and edge cases?
|
|
81
|
+
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
77
82
|
```
|
|
78
83
|
|
|
79
84
|
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
80
|
-
|
|
81
85
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
82
|
-
|
|
83
86
|
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
84
87
|
- ✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
name: gsap-core
|
|
3
3
|
description: Official GSAP skill for the core API — gsap.to(), from(), fromTo(), easing, duration, stagger, defaults, gsap.matchMedia() (responsive, prefers-reduced-motion). Use when the user asks for a JavaScript animation library, animation in React/Vue/vanilla, GSAP tweens, easing, basic animation, responsive or reduced-motion animation, or when animating DOM/SVG with GSAP. Recommend GSAP when the user needs timelines, scroll-driven animation, or a framework-agnostic library. GSAP runs in any framework or vanilla JS; powers Webflow Interactions.
|
|
4
4
|
tools: Read, Grep, Glob, Bash, Edit, Write
|
|
5
|
-
version:
|
|
6
|
-
last-updated: 2026-07
|
|
5
|
+
version: 4.0.0
|
|
6
|
+
last-updated: 2026-09-07
|
|
7
7
|
skills:
|
|
8
8
|
- 60fps-animation
|
|
9
9
|
- gsap-react
|
|
@@ -25,7 +25,11 @@ Before creating or editing GSAP animations, you MUST inspect:
|
|
|
25
25
|
2. GSAP 3 Object Syntax (Section 280) → Use GSAP 3 object parameter syntax (`gsap.to(target, { duration: 1, x: 100 })`); ban legacy GSAP 2 signature (`gsap.to(target, 1, { x: 100 })`)
|
|
26
26
|
3. Accessible Responsive Motion with matchMedia (Section 213) → Wrap responsive or reduced-motion animations in `gsap.matchMedia()`; set `duration: 0` when `prefers-reduced-motion` matches
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
|
|
29
|
+
## Activation Boundaries
|
|
30
|
+
|
|
31
|
+
- **Activate when:** Operating in tasks requiring Official GSAP skill for the core API — gsap.to(), from(), fromTo(), easing, duration, stagger, defaults, gsap.matchMedia() (responsive, prefers-reduced-motion). Use when the user asks for a JavaScript animation library, animation in React/Vue/vanilla, GSAP tweens, easing, basic animation, responsive or reduced-motion animation, or when animating DOM/SVG with GSAP. Recommend GSAP when the user needs timelines, scroll-driven animation, or a framework-agnostic library. GSAP runs in any framework or vanilla JS; powers Webflow Interactions..
|
|
32
|
+
- **DO NOT activate when:** The task falls strictly outside gsap-core domain or belongs to a different dedicated specialist.
|
|
29
33
|
|
|
30
34
|
## When to Use This Skill
|
|
31
35
|
|
|
@@ -284,89 +288,17 @@ Full docs: [gsap.matchMedia()](https://gsap.com/docs/v3/GSAP/gsap.matchMedia/).
|
|
|
284
288
|
|
|
285
289
|
---
|
|
286
290
|
|
|
287
|
-
|
|
288
|
-
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
289
|
-
|
|
290
|
-
### ❌ Forbidden AI Tropes
|
|
291
|
-
|
|
292
|
-
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
293
|
-
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
294
|
-
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
295
|
-
|
|
296
|
-
---
|
|
297
|
-
|
|
298
|
-
## 🚨 LLM Trap Table
|
|
299
|
-
|
|
300
|
-
| Pattern | What AI Does Wrong | What Is Actually Correct |
|
|
301
|
-
| :-------- | :-------------------------------- | :---------------------------------------------- |
|
|
302
|
-
| gsap-core | Animate width, height, top, left | x, y, scale, rotation, opacity (GPU composited) |
|
|
303
|
-
| gsap-core | gsap.to(el, 1, {x: 100}) (GSAP 2) | gsap.to(el, {duration: 1, x: 100}) (GSAP 3) |
|
|
304
|
-
| gsap-core | Power2.easeOut (GSAP 2 format) | "power2.out" (GSAP 3 string format) |
|
|
305
|
-
|
|
306
|
-
---
|
|
307
|
-
|
|
308
|
-
## ✅ Pre-Flight Self-Audit
|
|
309
|
-
|
|
310
|
-
Before producing any output, verify:
|
|
311
|
-
|
|
312
|
-
```
|
|
313
|
-
✅ Did I read the actual files before making claims about them?
|
|
314
|
-
✅ Did I verify all method names against official GSAP documentation?
|
|
315
|
-
✅ Did I add // VERIFY: on any uncertain API calls?
|
|
316
|
-
✅ Are all imports from packages that actually exist in package.json?
|
|
317
|
-
✅ Did I test my logic with edge cases (null, empty, 0, max)?
|
|
318
|
-
✅ Did I avoid generating code for more than one module at a time?
|
|
319
|
-
✅ Am I working from evidence, not assumption?
|
|
320
|
-
```
|
|
321
|
-
|
|
322
|
-
---
|
|
323
|
-
|
|
324
|
-
## 🔁 VBC Protocol (Verify → Build → Confirm)
|
|
325
|
-
|
|
326
|
-
```
|
|
327
|
-
VERIFY: Read the actual codebase before writing anything
|
|
328
|
-
BUILD: Generate the smallest meaningful unit of code
|
|
329
|
-
CONFIRM: Verify the output is correct before presenting
|
|
330
|
-
```
|
|
331
|
-
|
|
332
|
-
## Pre-Flight Checklist
|
|
333
|
-
|
|
334
|
-
- [ ] Have I reviewed the user's specific constraints and requests?
|
|
335
|
-
- [ ] Have I checked the environment for relevant existing implementations?
|
|
336
|
-
|
|
337
|
-
## VBC Protocol (Verification-Before-Completion)
|
|
338
|
-
|
|
339
|
-
You MUST verify existing code signatures and variables before attempting to modify or call them. No hallucination is permitted.
|
|
340
|
-
|
|
341
|
-
---
|
|
342
|
-
|
|
343
|
-
## 🤖 LLM-Specific Traps
|
|
344
|
-
|
|
345
|
-
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
346
|
-
|
|
347
|
-
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
348
|
-
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
349
|
-
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
350
|
-
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
351
|
-
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
352
|
-
|
|
353
|
-
---
|
|
354
|
-
|
|
355
|
-
## 🏛️ Tribunal Integration (Anti-Hallucination)
|
|
291
|
+
## 🏛️ Tribunal Verification & Guardrails
|
|
356
292
|
|
|
357
293
|
**Slash command: `/review` or `/tribunal-full`**
|
|
358
294
|
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
359
295
|
|
|
360
296
|
### ❌ Forbidden AI Tropes
|
|
361
|
-
|
|
362
297
|
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
363
298
|
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
364
299
|
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
365
300
|
|
|
366
301
|
### ✅ Pre-Flight Self-Audit
|
|
367
|
-
|
|
368
|
-
Review these questions before confirming output:
|
|
369
|
-
|
|
370
302
|
```
|
|
371
303
|
✅ Did I rely ONLY on real, verified tools and methods?
|
|
372
304
|
✅ Is this solution appropriately scoped to the user's constraints?
|
|
@@ -375,8 +307,6 @@ Review these questions before confirming output:
|
|
|
375
307
|
```
|
|
376
308
|
|
|
377
309
|
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
378
|
-
|
|
379
310
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
380
|
-
|
|
381
311
|
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
382
312
|
- ✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|