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: trend-researcher
|
|
3
3
|
description: Creative muse and design trend analyzer for modern web/mobile interfaces.
|
|
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
|
- frontend-design
|
|
9
9
|
- web-design-guidelines
|
|
@@ -25,10 +25,14 @@ Before recommending design trends or visual directions, you MUST inspect:
|
|
|
25
25
|
2. WCAG 2.2 AA Contrast Compliance (Section 61) β Calculate HSL palette contrast ($\ge 4.5:1$ text, $\ge 3:1$ large text) before finalizing tokens
|
|
26
26
|
3. Verified Google Fonts Only (Section 175) β Ensure typography recommendations are active in Google Fonts or system defaults
|
|
27
27
|
|
|
28
|
-
# Trend Researcher Skill
|
|
29
|
-
|
|
30
28
|
You are a creative muse and design trend analyst. Your purpose is to bridge the gap between "generic UI" and "stunning, intentional design" by grounding aesthetic decisions in real-world trends, documented design systems, and measurable user impact.
|
|
31
29
|
|
|
30
|
+
|
|
31
|
+
## Activation Boundaries
|
|
32
|
+
|
|
33
|
+
- **Activate when:** Operating in tasks requiring Creative muse and design trend analyzer for modern web/mobile interfaces..
|
|
34
|
+
- **DO NOT activate when:** The task falls strictly outside trend-researcher domain or belongs to a different dedicated specialist.
|
|
35
|
+
|
|
32
36
|
## When to Activate
|
|
33
37
|
|
|
34
38
|
- When asked to "brainstorm for design", "find inspiration", or "select a style guide".
|
|
@@ -219,69 +223,17 @@ AI coding assistants often fall into specific bad habits when dealing with this
|
|
|
219
223
|
|
|
220
224
|
---
|
|
221
225
|
|
|
222
|
-
|
|
223
|
-
**Active reviewers: `logic-reviewer` Β· `security-auditor`**
|
|
224
|
-
|
|
225
|
-
### β Forbidden AI Tropes
|
|
226
|
-
|
|
227
|
-
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
228
|
-
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
229
|
-
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
230
|
-
|
|
231
|
-
Review these questions before confirming output:
|
|
232
|
-
|
|
233
|
-
```
|
|
234
|
-
β
Did I rely ONLY on real, verified tools and methods?
|
|
235
|
-
β
Is this solution appropriately scoped to the user's constraints?
|
|
236
|
-
β
Did I handle potential failure modes and edge cases?
|
|
237
|
-
β
Have I avoided generic boilerplate that doesn't add value?
|
|
238
|
-
```
|
|
239
|
-
|
|
240
|
-
### π Verification-Before-Completion (VBC) Protocol
|
|
241
|
-
|
|
242
|
-
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
243
|
-
|
|
244
|
-
- β **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
245
|
-
- β
**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.
|
|
246
|
-
|
|
247
|
-
## Pre-Flight Checklist
|
|
248
|
-
|
|
249
|
-
- [ ] Have I reviewed the user's specific constraints and requests?
|
|
250
|
-
- [ ] Have I checked the environment for relevant existing implementations?
|
|
251
|
-
|
|
252
|
-
## VBC Protocol (Verification-Before-Completion)
|
|
253
|
-
|
|
254
|
-
You MUST verify existing code signatures and variables before attempting to modify or call them. No hallucination is permitted.
|
|
255
|
-
|
|
256
|
-
---
|
|
257
|
-
|
|
258
|
-
## π€ LLM-Specific Traps
|
|
259
|
-
|
|
260
|
-
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
261
|
-
|
|
262
|
-
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
263
|
-
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
264
|
-
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
265
|
-
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
266
|
-
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
267
|
-
|
|
268
|
-
---
|
|
269
|
-
|
|
270
|
-
## ποΈ Tribunal Integration (Anti-Hallucination)
|
|
226
|
+
## ποΈ Tribunal Verification & Guardrails
|
|
271
227
|
|
|
272
228
|
**Slash command: `/review` or `/tribunal-full`**
|
|
273
229
|
**Active reviewers: `logic-reviewer` Β· `security-auditor`**
|
|
274
230
|
|
|
275
231
|
### β Forbidden AI Tropes
|
|
276
|
-
|
|
277
232
|
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
278
233
|
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
279
234
|
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
280
235
|
|
|
281
236
|
### β
Pre-Flight Self-Audit
|
|
282
|
-
|
|
283
|
-
Review these questions before confirming output:
|
|
284
|
-
|
|
285
237
|
```
|
|
286
238
|
β
Did I rely ONLY on real, verified tools and methods?
|
|
287
239
|
β
Is this solution appropriately scoped to the user's constraints?
|
|
@@ -290,8 +242,6 @@ Review these questions before confirming output:
|
|
|
290
242
|
```
|
|
291
243
|
|
|
292
244
|
### π Verification-Before-Completion (VBC) Protocol
|
|
293
|
-
|
|
294
245
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
295
|
-
|
|
296
246
|
- β **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
297
247
|
- β
**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: typescript-advanced
|
|
3
3
|
description: Advanced TypeScript mastery. Generics with constraints, conditional types, mapped types, template literal types, the satisfies operator, discriminated unions, branded/nominal types, type-level programming, utility type internals, variance annotations, module augmentation, and declaration merging. Use when writing complex type definitions, building type-safe libraries, or solving "how do I type this?" problems.
|
|
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
|
- clean-code
|
|
9
9
|
- data-validation-schemas
|
|
@@ -21,19 +21,30 @@ scripts-binding:
|
|
|
21
21
|
|
|
22
22
|
Before writing complex TypeScript types or library abstractions, you MUST inspect:
|
|
23
23
|
|
|
24
|
-
1. Zero `as any` Cast Rule (Section 15) β Fix the underlying type signature or use `
|
|
24
|
+
1. Zero `as any` Cast Rule (Section 15) β Fix the underlying type signature or use `unknown` with a type guard; ban `as any`
|
|
25
25
|
2. Discriminated Unions for State Machine Modeling (Section 62) β Model multi-state objects with tagged discriminated unions for compile-time exhaustive checks
|
|
26
26
|
3. The `satisfies` Operator vs Type Assertion (Section 193) β Use `satisfies` to validate types without widening object literals
|
|
27
|
+
4. Compiler Memory & Type Instantiation Limits β Avoid recursive conditional types deeper than 5 levels; prefer interface extension over deep `&` intersections
|
|
28
|
+
5. TS 5.5+ Inferred Type Predicates β Leverage native type narrowing in `.filter()` without manual `x is T` boilerplate where possible
|
|
27
29
|
|
|
28
|
-
##
|
|
30
|
+
## Activation Boundaries
|
|
29
31
|
|
|
30
|
-
-
|
|
31
|
-
-
|
|
32
|
-
- β Overcomplicating types β if a type takes 30 seconds to read, simplify it -> β
Types serve the developer, not the other way around
|
|
32
|
+
- **Activate when:** Designing type-safe library APIs, generic utility types, discriminated union state machines, and resolving complex TypeScript compiler errors.
|
|
33
|
+
- **DO NOT activate when:** Writing pure runtime JavaScript without TypeScript, or basic application components with trivial props.
|
|
33
34
|
|
|
34
|
-
|
|
35
|
+
## 2026 TypeScript Performance & Compiler Invariants
|
|
35
36
|
|
|
36
|
-
|
|
37
|
+
1. **Explicit Return Types on Exports (`isolatedDeclarations`)**: Always add explicit return types to exported functions/methods for fast, parallel build compilation.
|
|
38
|
+
2. **Interface Extension Over Deep Intersections**: Use `interface B extends A` instead of `type B = A & { ... }`. Interfaces are cached by TS compiler's internal type-checker, preventing quadratic build slowdowns.
|
|
39
|
+
3. **Safe Indexed Access**: Handle `undefined` when reading objects/arrays under `noUncheckedIndexedAccess`.
|
|
40
|
+
4. **Const Type Parameters**: Use `function parse<const T>(val: T)` to preserve literal types without requiring the caller to write `as const`.
|
|
41
|
+
|
|
42
|
+
## Hallucination Traps (Read First)
|
|
43
|
+
|
|
44
|
+
- β Using `as any` to silence type errors -> β
Fix the type or use `unknown` + type guard; `as any` masks runtime errors
|
|
45
|
+
- β Using deep recursive conditional types that trigger `Type instantiation is excessively deep` -> β
Use iteration or flat lookup tables
|
|
46
|
+
- β Overusing `type X = A & B & C & D` -> β
Use `interface` extension to preserve compiler performance
|
|
47
|
+
- β Manual `x is T` when TS 5.5+ infers the predicate -> β
Write natural predicate functions without unnecessary type assertion casts
|
|
37
48
|
|
|
38
49
|
---
|
|
39
50
|
|
|
@@ -319,69 +330,17 @@ AI coding assistants often fall into specific bad habits when dealing with this
|
|
|
319
330
|
|
|
320
331
|
---
|
|
321
332
|
|
|
322
|
-
|
|
323
|
-
**Active reviewers: `logic-reviewer` Β· `security-auditor`**
|
|
324
|
-
|
|
325
|
-
### β Forbidden AI Tropes
|
|
326
|
-
|
|
327
|
-
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
328
|
-
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
329
|
-
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
330
|
-
|
|
331
|
-
Review these questions before confirming output:
|
|
332
|
-
|
|
333
|
-
```
|
|
334
|
-
β
Did I rely ONLY on real, verified tools and methods?
|
|
335
|
-
β
Is this solution appropriately scoped to the user's constraints?
|
|
336
|
-
β
Did I handle potential failure modes and edge cases?
|
|
337
|
-
β
Have I avoided generic boilerplate that doesn't add value?
|
|
338
|
-
```
|
|
339
|
-
|
|
340
|
-
### π Verification-Before-Completion (VBC) Protocol
|
|
341
|
-
|
|
342
|
-
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
343
|
-
|
|
344
|
-
- β **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
345
|
-
- β
**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.
|
|
346
|
-
|
|
347
|
-
## Pre-Flight Checklist
|
|
348
|
-
|
|
349
|
-
- [ ] Have I reviewed the user's specific constraints and requests?
|
|
350
|
-
- [ ] Have I checked the environment for relevant existing implementations?
|
|
351
|
-
|
|
352
|
-
## VBC Protocol (Verification-Before-Completion)
|
|
353
|
-
|
|
354
|
-
You MUST verify existing code signatures and variables before attempting to modify or call them. No hallucination is permitted.
|
|
355
|
-
|
|
356
|
-
---
|
|
357
|
-
|
|
358
|
-
## π€ LLM-Specific Traps
|
|
359
|
-
|
|
360
|
-
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
361
|
-
|
|
362
|
-
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
363
|
-
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
364
|
-
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
365
|
-
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
366
|
-
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
367
|
-
|
|
368
|
-
---
|
|
369
|
-
|
|
370
|
-
## ποΈ Tribunal Integration (Anti-Hallucination)
|
|
333
|
+
## ποΈ Tribunal Verification & Guardrails
|
|
371
334
|
|
|
372
335
|
**Slash command: `/review` or `/tribunal-full`**
|
|
373
336
|
**Active reviewers: `logic-reviewer` Β· `security-auditor`**
|
|
374
337
|
|
|
375
338
|
### β Forbidden AI Tropes
|
|
376
|
-
|
|
377
339
|
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
378
340
|
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
379
341
|
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
380
342
|
|
|
381
343
|
### β
Pre-Flight Self-Audit
|
|
382
|
-
|
|
383
|
-
Review these questions before confirming output:
|
|
384
|
-
|
|
385
344
|
```
|
|
386
345
|
β
Did I rely ONLY on real, verified tools and methods?
|
|
387
346
|
β
Is this solution appropriately scoped to the user's constraints?
|
|
@@ -390,8 +349,6 @@ Review these questions before confirming output:
|
|
|
390
349
|
```
|
|
391
350
|
|
|
392
351
|
### π Verification-Before-Completion (VBC) Protocol
|
|
393
|
-
|
|
394
352
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
395
|
-
|
|
396
353
|
- β **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
397
354
|
- β
**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: typeset
|
|
3
3
|
description: Professional web typography scaling, font pairing, optical sizing, tracking, line height cadence, text-wrap balance, and OpenType features. Use when refining typography systems or text styling.
|
|
4
|
-
version:
|
|
5
|
-
last-updated: 2026-07
|
|
4
|
+
version: 4.0.0
|
|
5
|
+
last-updated: 2026-09-07
|
|
6
6
|
skills:
|
|
7
7
|
- swiss-design
|
|
8
8
|
- better-ui
|
|
@@ -27,6 +27,12 @@ Before refining typography scales or text styles, you MUST inspect:
|
|
|
27
27
|
|
|
28
28
|
Architect disciplined, optically balanced typography systems across web components.
|
|
29
29
|
|
|
30
|
+
|
|
31
|
+
## Activation Boundaries
|
|
32
|
+
|
|
33
|
+
- **Activate when:** Operating in tasks requiring Professional web typography scaling, font pairing, optical sizing, tracking, line height cadence, text-wrap balance, and OpenType features. Use when refining typography systems or text styling..
|
|
34
|
+
- **DO NOT activate when:** The task falls strictly outside typeset domain or belongs to a different dedicated specialist.
|
|
35
|
+
|
|
30
36
|
---
|
|
31
37
|
|
|
32
38
|
## 4 Typography Rules
|
|
@@ -67,28 +73,25 @@ $$\text{Tracking}(\text{px}) \propto -\log(\text{FontSize})$$
|
|
|
67
73
|
|
|
68
74
|
---
|
|
69
75
|
|
|
70
|
-
##
|
|
76
|
+
## ποΈ Tribunal Verification & Guardrails
|
|
71
77
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
---
|
|
78
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
79
|
+
**Active reviewers: `logic-reviewer` Β· `security-auditor`**
|
|
76
80
|
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
**
|
|
81
|
+
### β Forbidden AI Tropes
|
|
82
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
83
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
84
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
80
85
|
|
|
81
86
|
### β
Pre-Flight Self-Audit
|
|
82
|
-
|
|
83
87
|
```
|
|
84
|
-
β
|
|
85
|
-
β
Is
|
|
86
|
-
β
|
|
88
|
+
β
Did I rely ONLY on real, verified tools and methods?
|
|
89
|
+
β
Is this solution appropriately scoped to the user's constraints?
|
|
90
|
+
β
Did I handle potential failure modes and edge cases?
|
|
91
|
+
β
Have I avoided generic boilerplate that doesn't add value?
|
|
87
92
|
```
|
|
88
93
|
|
|
89
94
|
### π Verification-Before-Completion (VBC) Protocol
|
|
90
|
-
|
|
91
95
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
92
|
-
|
|
93
96
|
- β **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
94
97
|
- β
**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: ui-reasoning-engine
|
|
3
3
|
description: Enforces a structured cognitive pipeline that forces the agent to analyze user goals, information architecture, platform constraints, and design tokens before styling any component.
|
|
4
|
-
version:
|
|
5
|
-
last-updated: 2026-07
|
|
4
|
+
version: 4.0.0
|
|
5
|
+
last-updated: 2026-09-07
|
|
6
6
|
skills:
|
|
7
7
|
- product-aware-heuristics
|
|
8
8
|
- interface-design
|
|
@@ -28,6 +28,12 @@ Before generating UI component code, you MUST inspect:
|
|
|
28
28
|
|
|
29
29
|
To build state-of-the-art interfaces, you must think before you style. This skill enforces a structured reasoning process. Before writing any HTML, CSS, or Component code, you must execute the following 16-step analysis.
|
|
30
30
|
|
|
31
|
+
|
|
32
|
+
## Activation Boundaries
|
|
33
|
+
|
|
34
|
+
- **Activate when:** Operating in tasks requiring Enforces a structured cognitive pipeline that forces the agent to analyze user goals, information architecture, platform constraints, and design tokens before styling any component..
|
|
35
|
+
- **DO NOT activate when:** The task falls strictly outside ui-reasoning-engine domain or belongs to a different dedicated specialist.
|
|
36
|
+
|
|
31
37
|
---
|
|
32
38
|
|
|
33
39
|
## The 16-Step Reasoning Pipeline
|
|
@@ -162,12 +168,25 @@ When building any UI, the Maker Agent must document this reasoning loop before r
|
|
|
162
168
|
|
|
163
169
|
---
|
|
164
170
|
|
|
165
|
-
##
|
|
171
|
+
## ποΈ Tribunal Verification & Guardrails
|
|
166
172
|
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
- [ ] Have I verified touch targets are 24px minimum (and 44px+ for coarse pointers)?
|
|
173
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
174
|
+
**Active reviewers: `logic-reviewer` Β· `security-auditor`**
|
|
170
175
|
|
|
171
|
-
|
|
176
|
+
### β Forbidden AI Tropes
|
|
177
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
178
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
179
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
180
|
+
|
|
181
|
+
### β
Pre-Flight Self-Audit
|
|
182
|
+
```
|
|
183
|
+
β
Did I rely ONLY on real, verified tools and methods?
|
|
184
|
+
β
Is this solution appropriately scoped to the user's constraints?
|
|
185
|
+
β
Did I handle potential failure modes and edge cases?
|
|
186
|
+
β
Have I avoided generic boilerplate that doesn't add value?
|
|
187
|
+
```
|
|
172
188
|
|
|
173
|
-
|
|
189
|
+
### π Verification-Before-Completion (VBC) Protocol
|
|
190
|
+
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
191
|
+
- β **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
192
|
+
- β
**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: ui-skill-packs
|
|
3
3
|
description: Mandatory skill loading packs for UI generation. Consolidates 42+ individual UI skills into 3 tiered packs (Core Craft, Immersive & System, High-End Design) to guarantee non-generic, high-fidelity UI outputs.
|
|
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-colors
|
|
@@ -27,6 +27,12 @@ Before generating UI code, you MUST inspect:
|
|
|
27
27
|
2. `DESIGN.md` / color token definitions β Verify palette rules and dark mode contrast variables
|
|
28
28
|
3. Active UI component target β Assign Pack 1 (Core UI), Pack 2 (System Micro-Interactions), or Pack 3 (Immersive Landing)
|
|
29
29
|
|
|
30
|
+
|
|
31
|
+
## Activation Boundaries
|
|
32
|
+
|
|
33
|
+
- **Activate when:** Operating in tasks requiring Mandatory skill loading packs for UI generation. Consolidates 42+ individual UI skills into 3 tiered packs (Core Craft, Immersive & System, High-End Design) to guarantee non-generic, high-fidelity UI outputs..
|
|
34
|
+
- **DO NOT activate when:** The task falls strictly outside ui-skill-packs domain or belongs to a different dedicated specialist.
|
|
35
|
+
|
|
30
36
|
## 1. Pack Definitions
|
|
31
37
|
|
|
32
38
|
When generating UI code, the agent MUST load the appropriate UI Skill Pack based on the complexity level of the requested interface:
|
|
@@ -62,21 +68,25 @@ Binding skills: taste-skill, better-colors, micro-interaction, impeccable...
|
|
|
62
68
|
|
|
63
69
|
---
|
|
64
70
|
|
|
65
|
-
##
|
|
66
|
-
|
|
67
|
-
Before generating UI component code:
|
|
71
|
+
## ποΈ Tribunal Verification & Guardrails
|
|
68
72
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
3. Ensure color variables use OKLCH color space for accessible contrast ratios.
|
|
72
|
-
4. Verify micro-interaction focus and hover states for keyboard and mouse accessibility.
|
|
73
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
74
|
+
**Active reviewers: `logic-reviewer` Β· `security-auditor`**
|
|
73
75
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
76
|
+
### β Forbidden AI Tropes
|
|
77
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
78
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
79
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
77
80
|
|
|
78
|
-
|
|
81
|
+
### β
Pre-Flight Self-Audit
|
|
82
|
+
```
|
|
83
|
+
β
Did I rely ONLY on real, verified tools and methods?
|
|
84
|
+
β
Is this solution appropriately scoped to the user's constraints?
|
|
85
|
+
β
Did I handle potential failure modes and edge cases?
|
|
86
|
+
β
Have I avoided generic boilerplate that doesn't add value?
|
|
87
|
+
```
|
|
79
88
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
89
|
+
### π Verification-Before-Completion (VBC) Protocol
|
|
90
|
+
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
91
|
+
- β **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
92
|
+
- β
**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: ui-skills-root
|
|
3
3
|
description: Master router skill for design engineering and UI craft. Use when the user needs UI help and you must route by topic, stack, intent, or design discipline to the smallest useful set of UI skills.
|
|
4
|
-
version:
|
|
5
|
-
last-updated: 2026-07
|
|
4
|
+
version: 4.0.0
|
|
5
|
+
last-updated: 2026-09-07
|
|
6
6
|
skills:
|
|
7
7
|
- ui-skill-packs
|
|
8
8
|
- ui-reasoning-engine
|
|
@@ -29,6 +29,12 @@ Before routing UI requests, you MUST inspect:
|
|
|
29
29
|
|
|
30
30
|
The master decision engine for routing user UI requests to the precise set of design-engineering skills.
|
|
31
31
|
|
|
32
|
+
|
|
33
|
+
## Activation Boundaries
|
|
34
|
+
|
|
35
|
+
- **Activate when:** Operating in tasks requiring Master router skill for design engineering and UI craft. Use when the user needs UI help and you must route by topic, stack, intent, or design discipline to the smallest useful set of UI skills..
|
|
36
|
+
- **DO NOT activate when:** The task falls strictly outside ui-skills-root domain or belongs to a different dedicated specialist.
|
|
37
|
+
|
|
32
38
|
---
|
|
33
39
|
|
|
34
40
|
## Intent-Based Skill Routing Matrix
|
|
@@ -76,23 +82,25 @@ When a user asks for UI assistance, identify their core **intent** and dispatch
|
|
|
76
82
|
|
|
77
83
|
---
|
|
78
84
|
|
|
79
|
-
##
|
|
85
|
+
## ποΈ Tribunal Verification & Guardrails
|
|
80
86
|
|
|
81
|
-
|
|
82
|
-
|
|
87
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
88
|
+
**Active reviewers: `logic-reviewer` Β· `security-auditor`**
|
|
83
89
|
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
90
|
+
### β Forbidden AI Tropes
|
|
91
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
92
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
93
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
87
94
|
|
|
88
95
|
### β
Pre-Flight Self-Audit
|
|
89
|
-
|
|
90
96
|
```
|
|
91
|
-
β
Did I
|
|
92
|
-
β
|
|
93
|
-
β
|
|
97
|
+
β
Did I rely ONLY on real, verified tools and methods?
|
|
98
|
+
β
Is this solution appropriately scoped to the user's constraints?
|
|
99
|
+
β
Did I handle potential failure modes and edge cases?
|
|
100
|
+
β
Have I avoided generic boilerplate that doesn't add value?
|
|
94
101
|
```
|
|
95
102
|
|
|
96
103
|
### π Verification-Before-Completion (VBC) Protocol
|
|
97
|
-
|
|
98
|
-
|
|
104
|
+
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
105
|
+
- β **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
106
|
+
- β
**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: ui-ux-pro-max
|
|
3
3
|
description: The Picasso Protocol β Elite UI/UX design mastery. Integrates the 16-step UI Reasoning Engine, Category-Specific Heuristics, and Anti-Pattern controls to generate portfolio-grade interfaces.
|
|
4
|
-
version:
|
|
5
|
-
last-updated: 2026-07
|
|
4
|
+
version: 4.0.0
|
|
5
|
+
last-updated: 2026-09-07
|
|
6
6
|
skills:
|
|
7
7
|
- ui-reasoning-engine
|
|
8
8
|
- product-aware-heuristics
|
|
@@ -22,11 +22,24 @@ scripts-binding:
|
|
|
22
22
|
|
|
23
23
|
Before generating UI designs or front-end components, you MUST inspect:
|
|
24
24
|
|
|
25
|
-
1. Rejection Guardrails
|
|
26
|
-
2. OKLCH Display-P3 Color Science
|
|
27
|
-
3. Fluid Typographic Scaling
|
|
25
|
+
1. Rejection Guardrails β Ban primary purple gradients (`from-purple-600`), Inter/Roboto defaults, left-text/right-image hero layouts, and mesh gradients
|
|
26
|
+
2. OKLCH Display-P3 Color Science β Use OKLCH variables with chroma `0.20`β`0.28` for accents and stepped neutral contrast (`0.04` Lightness increments)
|
|
27
|
+
3. Fluid Typographic Scaling β Apply `clamp()` sizes, tight negative tracking (`-0.04em`), and `text-wrap: balance` on headings
|
|
28
|
+
4. APCA Contrast Compliance β Verify text against APCA contrast thresholds rather than outdated WCAG 2.1 math
|
|
28
29
|
|
|
29
|
-
|
|
30
|
+
## Activation Boundaries
|
|
31
|
+
|
|
32
|
+
- **Activate when:** Creating showcase landing pages, web application dashboards, design systems, design tokens, visual redesigns, and portfolio-grade UI components.
|
|
33
|
+
- **DO NOT activate when:** Writing raw backend SQL queries, server infrastructure Dockerfiles, or CLI terminal utilities.
|
|
34
|
+
|
|
35
|
+
## 2026 Picasso Protocol Design Invariants
|
|
36
|
+
|
|
37
|
+
1. **Anti-ClichΓ© Palette Discipline**:
|
|
38
|
+
Never use purple (#7c3aed / #8b5cf6) as primary brand color. Curate characterful palettes: Obsidian + Signal Orange, Slate + Electric Cyan, or Bone White + Deep Emerald.
|
|
39
|
+
2. **Intentional Typography Pairing**:
|
|
40
|
+
Pair an expressive display font (e.g., Clash Display, Syne, Cabinet Grotesk, Newsreader) with an ultra-readable neutral body font (e.g., Geist Sans, Plus Jakarta Sans, General Sans).
|
|
41
|
+
3. **Fluid Layout Bounds & Asymmetry**:
|
|
42
|
+
Break repetitive bento grids. Use asymmetric column spans (e.g. 7:5 or 8:4), overlapping cards, and ambient grain overlays.
|
|
30
43
|
|
|
31
44
|
---
|
|
32
45
|
|
|
@@ -108,12 +121,25 @@ All buttons and active controls must define styled properties for:
|
|
|
108
121
|
|
|
109
122
|
---
|
|
110
123
|
|
|
111
|
-
##
|
|
124
|
+
## ποΈ Tribunal Verification & Guardrails
|
|
112
125
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
- [ ] Have I verified the design passes the Anti-AI-Slop Checklist?
|
|
126
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
127
|
+
**Active reviewers: `logic-reviewer` Β· `security-auditor`**
|
|
116
128
|
|
|
117
|
-
|
|
129
|
+
### β Forbidden AI Tropes
|
|
130
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
131
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
132
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
133
|
+
|
|
134
|
+
### β
Pre-Flight Self-Audit
|
|
135
|
+
```
|
|
136
|
+
β
Did I rely ONLY on real, verified tools and methods?
|
|
137
|
+
β
Is this solution appropriately scoped to the user's constraints?
|
|
138
|
+
β
Did I handle potential failure modes and edge cases?
|
|
139
|
+
β
Have I avoided generic boilerplate that doesn't add value?
|
|
140
|
+
```
|
|
118
141
|
|
|
119
|
-
|
|
142
|
+
### π Verification-Before-Completion (VBC) Protocol
|
|
143
|
+
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
144
|
+
- β **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
145
|
+
- β
**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.
|