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
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: taste-skill
|
|
3
3
|
description: Senior UI/UX frontend skill that enforces anti-slop design decisions, motion quality, visual rhythm, micro-craft, and architectural discipline.
|
|
4
|
-
version:
|
|
5
|
-
last-updated: 2026-07
|
|
4
|
+
version: 4.0.0
|
|
5
|
+
last-updated: 2026-09-07
|
|
6
6
|
skills:
|
|
7
7
|
- better-ui
|
|
8
8
|
- impeccable
|
|
@@ -27,6 +27,12 @@ Before rendering UI components, you MUST inspect:
|
|
|
27
27
|
|
|
28
28
|
Enforce senior-level design taste, anti-slop constraints, and visual craft across every component.
|
|
29
29
|
|
|
30
|
+
|
|
31
|
+
## Activation Boundaries
|
|
32
|
+
|
|
33
|
+
- **Activate when:** Operating in tasks requiring Senior UI/UX frontend skill that enforces anti-slop design decisions, motion quality, visual rhythm, micro-craft, and architectural discipline..
|
|
34
|
+
- **DO NOT activate when:** The task falls strictly outside taste-skill domain or belongs to a different dedicated specialist.
|
|
35
|
+
|
|
30
36
|
---
|
|
31
37
|
|
|
32
38
|
## The 5 Rules of Design Taste
|
|
@@ -59,28 +65,25 @@ Enforce senior-level design taste, anti-slop constraints, and visual craft acros
|
|
|
59
65
|
|
|
60
66
|
---
|
|
61
67
|
|
|
62
|
-
##
|
|
68
|
+
## 🏛️ Tribunal Verification & Guardrails
|
|
63
69
|
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
---
|
|
70
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
71
|
+
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
68
72
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
**
|
|
73
|
+
### ❌ Forbidden AI Tropes
|
|
74
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
75
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
76
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
72
77
|
|
|
73
78
|
### ✅ Pre-Flight Self-Audit
|
|
74
|
-
|
|
75
79
|
```
|
|
76
|
-
✅
|
|
77
|
-
✅ Is
|
|
78
|
-
✅
|
|
80
|
+
✅ Did I rely ONLY on real, verified tools and methods?
|
|
81
|
+
✅ Is this solution appropriately scoped to the user's constraints?
|
|
82
|
+
✅ Did I handle potential failure modes and edge cases?
|
|
83
|
+
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
79
84
|
```
|
|
80
85
|
|
|
81
86
|
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
82
|
-
|
|
83
87
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
84
|
-
|
|
85
88
|
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
86
89
|
- ✅ **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: tdd-workflow
|
|
3
3
|
description: Test-Driven Development (TDD) mastery. Red-Green-Refactor cycles, behavior-driven design (BDD), strict mutation coverage, test doubles (mocks/stubs/spies), and avoiding test-induced design damage. Use when building complex algorithms, deep business logic, or strictly regulated systems.
|
|
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
|
- testing-patterns
|
|
9
9
|
- clean-code
|
|
@@ -21,23 +21,66 @@ scripts-binding:
|
|
|
21
21
|
|
|
22
22
|
Before implementing feature logic or writing unit tests, you MUST inspect:
|
|
23
23
|
|
|
24
|
-
1. Red-Green-Refactor Cycle
|
|
25
|
-
2. Behavior-First Assertion Rule
|
|
26
|
-
3.
|
|
24
|
+
1. Red-Green-Refactor Cycle → Write failing test FIRST (Red) → minimal passing code SECOND (Green) → cleanup THIRD (Refactor)
|
|
25
|
+
2. Behavior-First Assertion Rule → Assert public contract results (GIVEN/WHEN/THEN); ban asserting internal private fields or private state
|
|
26
|
+
3. I/O Boundary-Only Mocking → Mock ONLY un-owned external boundaries (database I/O, network fetch); ban mocking pure domain utilities or internal classes
|
|
27
|
+
4. Fast Deterministic Test Runner → Tests must execute in memory in < 100ms per file; avoid unneeded sleep delays or live network connections
|
|
27
28
|
|
|
28
|
-
|
|
29
|
+
## Activation Boundaries
|
|
30
|
+
|
|
31
|
+
- **Activate when:** Developing new algorithms, complex business logic, financial calculations, state machine transitions, and fixing bugs via regression reproduction.
|
|
32
|
+
- **DO NOT activate when:** Writing disposable prototype scripts, pure visual CSS layouts, or static documentation.
|
|
33
|
+
|
|
34
|
+
## 2026 TDD & Verification Invariants
|
|
35
|
+
|
|
36
|
+
1. **Bug Fix Regression Test First**:
|
|
37
|
+
Never fix a bug directly in production code. First write a test reproducing the exact failure case (Red), then apply the minimal fix (Green).
|
|
38
|
+
2. **Deterministic Time & Clocks**:
|
|
39
|
+
Never use real `Date.now()` or `setTimeout()` in unit tests. Use fake timers (`vi.useFakeTimers()` or `jest.useFakeTimers()`) for instant, deterministic clock control.
|
|
40
|
+
3. **Property-Based Testing Integration**:
|
|
41
|
+
For complex parsing or serialization algorithms, complement example-based unit tests with generative property-based tests (e.g. `fast-check` / `hypothesis`).
|
|
42
|
+
|
|
43
|
+
## Hallucination Traps (Read First)
|
|
44
|
+
|
|
45
|
+
- ❌ Writing tests after all code is written → ✅ Write the test first to prove the test actually fails
|
|
46
|
+
- ❌ Testing implementation details (e.g. testing private methods) → ✅ Test public interface behavior
|
|
47
|
+
- ❌ Mocking what you own → ✅ Use real domain objects in tests; mock only external network/DB I/O
|
|
48
|
+
- ❌ Writing 5 assertions testing 5 unrelated things in one test → ✅ One logical behavior per test
|
|
49
|
+
|
|
50
|
+
## The Iron Law of TDD
|
|
51
|
+
|
|
52
|
+
```
|
|
53
|
+
NO PRODUCTION CODE WITHOUT A FAILING TEST FIRST
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
Write code before the test? **Delete it. Start over.**
|
|
57
|
+
No exceptions:
|
|
58
|
+
- Don't keep it as "reference"
|
|
59
|
+
- Don't "adapt" it while writing tests
|
|
60
|
+
- Delete means delete. Implement fresh from tests.
|
|
61
|
+
|
|
62
|
+
## Anti-Rationalization Table
|
|
29
63
|
|
|
30
|
-
|
|
64
|
+
| Thought | Reality |
|
|
65
|
+
|---------|---------|
|
|
66
|
+
| "This is simple, I'll write tests after" | Simple tasks develop subtle edge cases. Write the test first. |
|
|
67
|
+
| "I know the implementation already" | Knowing it makes writing the failing test take 30 seconds. Write it. |
|
|
68
|
+
| "I'll just keep the code as a reference" | Keeping it biases your tests to match your bugs. Delete it. |
|
|
69
|
+
| "Mocking the whole service is faster" | Mocking what you own tests your mocks, not your software. |
|
|
31
70
|
|
|
32
71
|
---
|
|
33
72
|
|
|
34
73
|
## The 3-Phase TDD Cycle
|
|
35
74
|
|
|
36
75
|
```
|
|
37
|
-
[ 1. RED ]
|
|
38
|
-
|
|
39
|
-
[
|
|
40
|
-
|
|
76
|
+
[ 1. RED ] Write a failing behavioral test for the minimal next requirement.
|
|
77
|
+
↓
|
|
78
|
+
[ VERIFY RED ] Watch it fail for the expected reason (mandatory).
|
|
79
|
+
↓
|
|
80
|
+
[ 2. GREEN ] Write the simplest production code to make the test pass.
|
|
81
|
+
↓
|
|
82
|
+
[ VERIFY GREEN] Run test suite and confirm 0 failures.
|
|
83
|
+
↓
|
|
41
84
|
[ 3. REFACTOR ] Clean up code & duplicate logic while ensuring tests stay green.
|
|
42
85
|
```
|
|
43
86
|
|
|
@@ -71,28 +114,25 @@ expect(calculator.add(40, 2)).toBe(42);
|
|
|
71
114
|
|
|
72
115
|
---
|
|
73
116
|
|
|
74
|
-
##
|
|
117
|
+
## 🏛️ Tribunal Verification & Guardrails
|
|
75
118
|
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
---
|
|
119
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
120
|
+
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
80
121
|
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
**
|
|
122
|
+
### ❌ Forbidden AI Tropes
|
|
123
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
124
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
125
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
84
126
|
|
|
85
127
|
### ✅ Pre-Flight Self-Audit
|
|
86
|
-
|
|
87
128
|
```
|
|
88
|
-
✅
|
|
89
|
-
✅
|
|
90
|
-
✅
|
|
129
|
+
✅ Did I rely ONLY on real, verified tools and methods?
|
|
130
|
+
✅ Is this solution appropriately scoped to the user's constraints?
|
|
131
|
+
✅ Did I handle potential failure modes and edge cases?
|
|
132
|
+
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
91
133
|
```
|
|
92
134
|
|
|
93
135
|
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
94
|
-
|
|
95
136
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
96
|
-
|
|
97
137
|
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
98
138
|
- ✅ **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: test-result-analyzer
|
|
3
3
|
description: Ingests test logs and identifies root causes across multiple failing test files. Provides actionable fix recommendations.
|
|
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
|
- systematic-debugging
|
|
9
9
|
- testing-patterns
|
|
@@ -25,10 +25,14 @@ Before analyzing failing test logs or output traces, you MUST inspect:
|
|
|
25
25
|
2. Cluster Categorization Rule (Section 88) → Group failures by shared module/error type to resolve dozens of failures via single root fixes
|
|
26
26
|
3. Literal Trace Extract Discipline (Section 257) → Quote exact Expected/Received values and line numbers strictly from actual logs; ban guessing assertion details
|
|
27
27
|
|
|
28
|
-
# Test Result Analyzer Skill
|
|
29
|
-
|
|
30
28
|
You are a specialist in analyzing test output — not writing tests, but _understanding why tests fail_. You turn walls of red error text into a prioritized action plan.
|
|
31
29
|
|
|
30
|
+
|
|
31
|
+
## Activation Boundaries
|
|
32
|
+
|
|
33
|
+
- **Activate when:** Operating in tasks requiring Ingests test logs and identifies root causes across multiple failing test files. Provides actionable fix recommendations..
|
|
34
|
+
- **DO NOT activate when:** The task falls strictly outside test-result-analyzer domain or belongs to a different dedicated specialist.
|
|
35
|
+
|
|
32
36
|
## When to Activate
|
|
33
37
|
|
|
34
38
|
- After a test run with multiple failures.
|
|
@@ -290,69 +294,17 @@ AI coding assistants often fall into specific bad habits when dealing with this
|
|
|
290
294
|
|
|
291
295
|
---
|
|
292
296
|
|
|
293
|
-
|
|
294
|
-
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
295
|
-
|
|
296
|
-
### ❌ Forbidden AI Tropes
|
|
297
|
-
|
|
298
|
-
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
299
|
-
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
300
|
-
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
301
|
-
|
|
302
|
-
Review these questions before confirming output:
|
|
303
|
-
|
|
304
|
-
```
|
|
305
|
-
✅ Did I rely ONLY on real, verified tools and methods?
|
|
306
|
-
✅ Is this solution appropriately scoped to the user's constraints?
|
|
307
|
-
✅ Did I handle potential failure modes and edge cases?
|
|
308
|
-
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
309
|
-
```
|
|
310
|
-
|
|
311
|
-
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
312
|
-
|
|
313
|
-
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
314
|
-
|
|
315
|
-
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
316
|
-
- ✅ **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.
|
|
317
|
-
|
|
318
|
-
## Pre-Flight Checklist
|
|
319
|
-
|
|
320
|
-
- [ ] Have I reviewed the user's specific constraints and requests?
|
|
321
|
-
- [ ] Have I checked the environment for relevant existing implementations?
|
|
322
|
-
|
|
323
|
-
## VBC Protocol (Verification-Before-Completion)
|
|
324
|
-
|
|
325
|
-
You MUST verify existing code signatures and variables before attempting to modify or call them. No hallucination is permitted.
|
|
326
|
-
|
|
327
|
-
---
|
|
328
|
-
|
|
329
|
-
## 🤖 LLM-Specific Traps
|
|
330
|
-
|
|
331
|
-
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
332
|
-
|
|
333
|
-
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
334
|
-
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
335
|
-
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
336
|
-
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
337
|
-
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
338
|
-
|
|
339
|
-
---
|
|
340
|
-
|
|
341
|
-
## 🏛️ Tribunal Integration (Anti-Hallucination)
|
|
297
|
+
## 🏛️ Tribunal Verification & Guardrails
|
|
342
298
|
|
|
343
299
|
**Slash command: `/review` or `/tribunal-full`**
|
|
344
300
|
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
345
301
|
|
|
346
302
|
### ❌ Forbidden AI Tropes
|
|
347
|
-
|
|
348
303
|
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
349
304
|
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
350
305
|
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
351
306
|
|
|
352
307
|
### ✅ Pre-Flight Self-Audit
|
|
353
|
-
|
|
354
|
-
Review these questions before confirming output:
|
|
355
|
-
|
|
356
308
|
```
|
|
357
309
|
✅ Did I rely ONLY on real, verified tools and methods?
|
|
358
310
|
✅ Is this solution appropriately scoped to the user's constraints?
|
|
@@ -361,8 +313,6 @@ Review these questions before confirming output:
|
|
|
361
313
|
```
|
|
362
314
|
|
|
363
315
|
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
364
|
-
|
|
365
316
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
366
|
-
|
|
367
317
|
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
368
318
|
- ✅ **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: testing-patterns
|
|
3
3
|
description: Testing mastery across stacks. Unit testing with Jest/Vitest/pytest, integration testing, E2E with Playwright, mocking strategies, test architecture (AAA, Given-When-Then), code coverage, snapshot testing, API testing, component testing with Testing Library, and TDD workflow. Use when writing tests, designing test architecture, or improving test coverage.
|
|
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
|
- tdd-workflow
|
|
9
9
|
- test-result-analyzer
|
|
@@ -25,7 +25,11 @@ Before writing unit, integration, or component tests, you MUST inspect:
|
|
|
25
25
|
2. Accessibility-First Query Hierarchy (Section 343) → Query React components by `getByRole` or `getByLabelText`; ban default `getByTestId` queries
|
|
26
26
|
3. Dependency Injection Over Global Mocks (Section 268) → Prefer constructor dependency injection over global `vi.mock()` to prevent cross-test state leakage
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
|
|
29
|
+
## Activation Boundaries
|
|
30
|
+
|
|
31
|
+
- **Activate when:** Operating in tasks requiring Testing mastery across stacks. Unit testing with Jest/Vitest/pytest, integration testing, E2E with Playwright, mocking strategies, test architecture (AAA, Given-When-Then), code coverage, snapshot testing, API testing, component testing with Testing Library, and TDD workflow. Use when writing tests, designing test architecture, or improving test coverage..
|
|
32
|
+
- **DO NOT activate when:** The task falls strictly outside testing-patterns domain or belongs to a different dedicated specialist.
|
|
29
33
|
|
|
30
34
|
---
|
|
31
35
|
|
|
@@ -552,69 +556,17 @@ AI coding assistants often fall into specific bad habits when dealing with this
|
|
|
552
556
|
|
|
553
557
|
---
|
|
554
558
|
|
|
555
|
-
|
|
556
|
-
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
557
|
-
|
|
558
|
-
### ❌ Forbidden AI Tropes
|
|
559
|
-
|
|
560
|
-
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
561
|
-
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
562
|
-
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
563
|
-
|
|
564
|
-
Review these questions before confirming output:
|
|
565
|
-
|
|
566
|
-
```
|
|
567
|
-
✅ Did I rely ONLY on real, verified tools and methods?
|
|
568
|
-
✅ Is this solution appropriately scoped to the user's constraints?
|
|
569
|
-
✅ Did I handle potential failure modes and edge cases?
|
|
570
|
-
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
571
|
-
```
|
|
572
|
-
|
|
573
|
-
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
574
|
-
|
|
575
|
-
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
576
|
-
|
|
577
|
-
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
578
|
-
- ✅ **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.
|
|
579
|
-
|
|
580
|
-
## Pre-Flight Checklist
|
|
581
|
-
|
|
582
|
-
- [ ] Have I reviewed the user's specific constraints and requests?
|
|
583
|
-
- [ ] Have I checked the environment for relevant existing implementations?
|
|
584
|
-
|
|
585
|
-
## VBC Protocol (Verification-Before-Completion)
|
|
586
|
-
|
|
587
|
-
You MUST verify existing code signatures and variables before attempting to modify or call them. No hallucination is permitted.
|
|
588
|
-
|
|
589
|
-
---
|
|
590
|
-
|
|
591
|
-
## 🤖 LLM-Specific Traps
|
|
592
|
-
|
|
593
|
-
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
594
|
-
|
|
595
|
-
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
596
|
-
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
597
|
-
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
598
|
-
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
599
|
-
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
600
|
-
|
|
601
|
-
---
|
|
602
|
-
|
|
603
|
-
## 🏛️ Tribunal Integration (Anti-Hallucination)
|
|
559
|
+
## 🏛️ Tribunal Verification & Guardrails
|
|
604
560
|
|
|
605
561
|
**Slash command: `/review` or `/tribunal-full`**
|
|
606
562
|
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
607
563
|
|
|
608
564
|
### ❌ Forbidden AI Tropes
|
|
609
|
-
|
|
610
565
|
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
611
566
|
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
612
567
|
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
613
568
|
|
|
614
569
|
### ✅ Pre-Flight Self-Audit
|
|
615
|
-
|
|
616
|
-
Review these questions before confirming output:
|
|
617
|
-
|
|
618
570
|
```
|
|
619
571
|
✅ Did I rely ONLY on real, verified tools and methods?
|
|
620
572
|
✅ Is this solution appropriately scoped to the user's constraints?
|
|
@@ -623,8 +575,6 @@ Review these questions before confirming output:
|
|
|
623
575
|
```
|
|
624
576
|
|
|
625
577
|
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
626
|
-
|
|
627
578
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
628
|
-
|
|
629
579
|
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
630
580
|
- ✅ **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: thermo-nuclear-code-quality-review
|
|
3
3
|
description: Run an extremely strict maintainability review for abstraction quality, giant files, spaghetti-condition growth, and architectural debt.
|
|
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
|
- codebase-design
|
|
@@ -25,10 +25,14 @@ Before performing ultra-strict maintainability code audits, you MUST inspect:
|
|
|
25
25
|
2. Cyclomatic Nesting Limit (3 levels max) (Section 27) → Flag nested conditionals >3 levels deep; require early guard clause returns
|
|
26
26
|
3. Direct Dependency Coupling Ban (Section 53) → Flag domain logic directly importing vendor SDKs or DB models instead of interface adapters
|
|
27
27
|
|
|
28
|
-
# Thermo-Nuclear Code Quality Review — Zero-Tolerance Maintainability Audit
|
|
29
|
-
|
|
30
28
|
Execute a ruthless, zero-tolerance code maintainability audit targeting abstraction leaks, file bloat, and spaghetti conditionals.
|
|
31
29
|
|
|
30
|
+
|
|
31
|
+
## Activation Boundaries
|
|
32
|
+
|
|
33
|
+
- **Activate when:** Operating in tasks requiring Run an extremely strict maintainability review for abstraction quality, giant files, spaghetti-condition growth, and architectural debt..
|
|
34
|
+
- **DO NOT activate when:** The task falls strictly outside thermo-nuclear-code-quality-review domain or belongs to a different dedicated specialist.
|
|
35
|
+
|
|
32
36
|
---
|
|
33
37
|
|
|
34
38
|
## 5 Zero-Tolerance Audit Rules
|
|
@@ -71,28 +75,25 @@ function processOrder(order: Order) {
|
|
|
71
75
|
|
|
72
76
|
---
|
|
73
77
|
|
|
74
|
-
##
|
|
78
|
+
## 🏛️ Tribunal Verification & Guardrails
|
|
75
79
|
|
|
76
|
-
|
|
77
|
-
|
|
80
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
81
|
+
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
78
82
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
**Active reviewers: `complexity-reviewer` · `logic-reviewer` · `type-safety`**
|
|
83
|
+
### ❌ Forbidden AI Tropes
|
|
84
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
85
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
86
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
84
87
|
|
|
85
88
|
### ✅ Pre-Flight Self-Audit
|
|
86
|
-
|
|
87
89
|
```
|
|
88
|
-
✅
|
|
89
|
-
✅
|
|
90
|
-
✅
|
|
90
|
+
✅ Did I rely ONLY on real, verified tools and methods?
|
|
91
|
+
✅ Is this solution appropriately scoped to the user's constraints?
|
|
92
|
+
✅ Did I handle potential failure modes and edge cases?
|
|
93
|
+
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
91
94
|
```
|
|
92
95
|
|
|
93
96
|
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
94
|
-
|
|
95
97
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
96
|
-
|
|
97
98
|
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
98
99
|
- ✅ **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: thinking-protocol
|
|
3
3
|
description: Tribunal Agent Kit thinking and cognitive reasoning rules. Helps agents structure their thoughts and follow protocols.
|
|
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
|
- fabel-protocol
|
|
9
9
|
- behavioral-modes
|
|
@@ -27,6 +27,12 @@ Before beginning any cognitive reasoning loop, you MUST inspect:
|
|
|
27
27
|
|
|
28
28
|
Guidelines for structural reasoning and cognitive loop execution.
|
|
29
29
|
|
|
30
|
+
|
|
31
|
+
## Activation Boundaries
|
|
32
|
+
|
|
33
|
+
- **Activate when:** Operating in tasks requiring Tribunal Agent Kit thinking and cognitive reasoning rules. Helps agents structure their thoughts and follow protocols..
|
|
34
|
+
- **DO NOT activate when:** The task falls strictly outside thinking-protocol domain or belongs to a different dedicated specialist.
|
|
35
|
+
|
|
30
36
|
## Pre-Flight Checklist
|
|
31
37
|
|
|
32
38
|
Before generating any output or proposing code modifications:
|
|
@@ -40,3 +46,28 @@ Before completing a task, confirm:
|
|
|
40
46
|
|
|
41
47
|
- Syntax, structure, and type safety constraints are met.
|
|
42
48
|
- Relevant tests have been run and passed successfully.
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
## 🏛️ Tribunal Verification & Guardrails
|
|
53
|
+
|
|
54
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
55
|
+
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
56
|
+
|
|
57
|
+
### ❌ Forbidden AI Tropes
|
|
58
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
59
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
60
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
61
|
+
|
|
62
|
+
### ✅ Pre-Flight Self-Audit
|
|
63
|
+
```
|
|
64
|
+
✅ Did I rely ONLY on real, verified tools and methods?
|
|
65
|
+
✅ Is this solution appropriately scoped to the user's constraints?
|
|
66
|
+
✅ Did I handle potential failure modes and edge cases?
|
|
67
|
+
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
71
|
+
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
72
|
+
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
73
|
+
- ✅ **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: to-spring-or-not-to-spring
|
|
3
3
|
description: Audit and decide when to use physics-based spring animations (stiffness, damping, mass) vs duration-based cubic-bezier easing curves.
|
|
4
|
-
version:
|
|
5
|
-
last-updated: 2026-07
|
|
4
|
+
version: 4.0.0
|
|
5
|
+
last-updated: 2026-09-07
|
|
6
6
|
skills:
|
|
7
7
|
- motion-engineering
|
|
8
8
|
- framer-motion-expert
|
|
@@ -27,6 +27,12 @@ Before selecting animation model (Spring vs Cubic-Bezier), you MUST inspect:
|
|
|
27
27
|
|
|
28
28
|
Decide when to use physics-driven spring models (Framer Motion / Reanimated) vs duration-based cubic-bezier easing curves.
|
|
29
29
|
|
|
30
|
+
|
|
31
|
+
## Activation Boundaries
|
|
32
|
+
|
|
33
|
+
- **Activate when:** Operating in tasks requiring Audit and decide when to use physics-based spring animations (stiffness, damping, mass) vs duration-based cubic-bezier easing curves..
|
|
34
|
+
- **DO NOT activate when:** The task falls strictly outside to-spring-or-not-to-spring domain or belongs to a different dedicated specialist.
|
|
35
|
+
|
|
30
36
|
---
|
|
31
37
|
|
|
32
38
|
## Spring vs Duration Decision Matrix
|
|
@@ -50,27 +56,25 @@ Decide when to use physics-driven spring models (Framer Motion / Reanimated) vs
|
|
|
50
56
|
|
|
51
57
|
---
|
|
52
58
|
|
|
53
|
-
##
|
|
59
|
+
## 🏛️ Tribunal Verification & Guardrails
|
|
54
60
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
---
|
|
61
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
62
|
+
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
59
63
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
**
|
|
64
|
+
### ❌ Forbidden AI Tropes
|
|
65
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
66
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
67
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
63
68
|
|
|
64
69
|
### ✅ Pre-Flight Self-Audit
|
|
65
|
-
|
|
66
70
|
```
|
|
67
|
-
✅
|
|
68
|
-
✅
|
|
71
|
+
✅ Did I rely ONLY on real, verified tools and methods?
|
|
72
|
+
✅ Is this solution appropriately scoped to the user's constraints?
|
|
73
|
+
✅ Did I handle potential failure modes and edge cases?
|
|
74
|
+
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
69
75
|
```
|
|
70
76
|
|
|
71
77
|
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
72
|
-
|
|
73
78
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
74
|
-
|
|
75
79
|
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
76
80
|
- ✅ **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: transitions-dev
|
|
3
3
|
description: Production-ready CSS transition patterns for web apps with drop-in snippets for cards, modals, dropdowns, panels, and accordions.
|
|
4
|
-
version:
|
|
5
|
-
last-updated: 2026-07
|
|
4
|
+
version: 4.0.0
|
|
5
|
+
last-updated: 2026-09-07
|
|
6
6
|
skills:
|
|
7
7
|
- better-ui
|
|
8
8
|
- micro-interaction
|
|
@@ -27,6 +27,12 @@ Before implementing CSS transitions, you MUST inspect:
|
|
|
27
27
|
|
|
28
28
|
Drop-in, hardware-accelerated CSS transition utility classes for modern web components.
|
|
29
29
|
|
|
30
|
+
|
|
31
|
+
## Activation Boundaries
|
|
32
|
+
|
|
33
|
+
- **Activate when:** Operating in tasks requiring Production-ready CSS transition patterns for web apps with drop-in snippets for cards, modals, dropdowns, panels, and accordions..
|
|
34
|
+
- **DO NOT activate when:** The task falls strictly outside transitions-dev domain or belongs to a different dedicated specialist.
|
|
35
|
+
|
|
30
36
|
---
|
|
31
37
|
|
|
32
38
|
## 4 Production Snippets
|
|
@@ -97,27 +103,25 @@ Animate element height smoothly without hardcoding fixed pixel heights:
|
|
|
97
103
|
|
|
98
104
|
---
|
|
99
105
|
|
|
100
|
-
##
|
|
106
|
+
## 🏛️ Tribunal Verification & Guardrails
|
|
101
107
|
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
---
|
|
108
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
109
|
+
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
106
110
|
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
**
|
|
111
|
+
### ❌ Forbidden AI Tropes
|
|
112
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
113
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
114
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
110
115
|
|
|
111
116
|
### ✅ Pre-Flight Self-Audit
|
|
112
|
-
|
|
113
117
|
```
|
|
114
|
-
✅
|
|
115
|
-
✅
|
|
118
|
+
✅ Did I rely ONLY on real, verified tools and methods?
|
|
119
|
+
✅ Is this solution appropriately scoped to the user's constraints?
|
|
120
|
+
✅ Did I handle potential failure modes and edge cases?
|
|
121
|
+
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
116
122
|
```
|
|
117
123
|
|
|
118
124
|
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
119
|
-
|
|
120
125
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
121
|
-
|
|
122
126
|
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
123
127
|
- ✅ **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.
|