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: architecture
|
|
3
3
|
description: Software architecture mastery. System design patterns, clean architecture, hexagonal/ports-and-adapters, event-driven architecture, microservices vs monolith decision framework, CQRS, domain-driven design, Architecture Decision Records (ADRs), and scalability patterns. Use when making architecture decisions, designing systems, or documenting technical decisions.
|
|
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
|
- domain-modeling
|
|
9
9
|
- codebase-design
|
|
@@ -25,6 +25,12 @@ Before selecting architectural patterns or designing systems, you MUST inspect:
|
|
|
25
25
|
2. Clean Architecture Dependency Direction (Section 50) โ Ensure dependency arrows point strictly inward to Domain; Domain must have zero external infrastructure dependencies
|
|
26
26
|
3. ADR Requirement for Non-Trivial Decisons (Section 135) โ Document every major architectural decision with an ADR in `docs/architecture/`
|
|
27
27
|
|
|
28
|
+
|
|
29
|
+
## Activation Boundaries
|
|
30
|
+
|
|
31
|
+
- **Activate when:** Operating in tasks requiring Software architecture mastery. System design patterns, clean architecture, hexagonal/ports-and-adapters, event-driven architecture, microservices vs monolith decision framework, CQRS, domain-driven design, Architecture Decision Records (ADRs), and scalability patterns. Use when making architecture decisions, designing systems, or documenting technical decisions..
|
|
32
|
+
- **DO NOT activate when:** The task falls strictly outside architecture domain or belongs to a different dedicated specialist.
|
|
33
|
+
|
|
28
34
|
## Hallucination Traps (Read First)
|
|
29
35
|
|
|
30
36
|
- โ Choosing microservices for a team of 1-3 developers -> โ
Start monolith, extract services only when team/scale demands it
|
|
@@ -33,8 +39,6 @@ Before selecting architectural patterns or designing systems, you MUST inspect:
|
|
|
33
39
|
|
|
34
40
|
---
|
|
35
41
|
|
|
36
|
-
# Architecture โ System Design Mastery
|
|
37
|
-
|
|
38
42
|
## Architecture Selection
|
|
39
43
|
|
|
40
44
|
```
|
|
@@ -205,69 +209,17 @@ AI coding assistants often fall into specific bad habits when dealing with this
|
|
|
205
209
|
|
|
206
210
|
---
|
|
207
211
|
|
|
208
|
-
|
|
209
|
-
**Active reviewers: `logic-reviewer` ยท `security-auditor`**
|
|
210
|
-
|
|
211
|
-
### โ Forbidden AI Tropes
|
|
212
|
-
|
|
213
|
-
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
214
|
-
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
215
|
-
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
216
|
-
|
|
217
|
-
Review these questions before confirming output:
|
|
218
|
-
|
|
219
|
-
```
|
|
220
|
-
โ
Did I rely ONLY on real, verified tools and methods?
|
|
221
|
-
โ
Is this solution appropriately scoped to the user's constraints?
|
|
222
|
-
โ
Did I handle potential failure modes and edge cases?
|
|
223
|
-
โ
Have I avoided generic boilerplate that doesn't add value?
|
|
224
|
-
```
|
|
225
|
-
|
|
226
|
-
### ๐ Verification-Before-Completion (VBC) Protocol
|
|
227
|
-
|
|
228
|
-
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
229
|
-
|
|
230
|
-
- โ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
231
|
-
- โ
**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.
|
|
232
|
-
|
|
233
|
-
## Pre-Flight Checklist
|
|
234
|
-
|
|
235
|
-
- [ ] Have I reviewed the user's specific constraints and requests?
|
|
236
|
-
- [ ] Have I checked the environment for relevant existing implementations?
|
|
237
|
-
|
|
238
|
-
## VBC Protocol (Verification-Before-Completion)
|
|
239
|
-
|
|
240
|
-
You MUST verify existing code signatures and variables before attempting to modify or call them. No hallucination is permitted.
|
|
241
|
-
|
|
242
|
-
---
|
|
243
|
-
|
|
244
|
-
## ๐ค LLM-Specific Traps
|
|
245
|
-
|
|
246
|
-
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
247
|
-
|
|
248
|
-
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
249
|
-
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
250
|
-
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
251
|
-
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
252
|
-
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
253
|
-
|
|
254
|
-
---
|
|
255
|
-
|
|
256
|
-
## ๐๏ธ Tribunal Integration (Anti-Hallucination)
|
|
212
|
+
## ๐๏ธ Tribunal Verification & Guardrails
|
|
257
213
|
|
|
258
214
|
**Slash command: `/review` or `/tribunal-full`**
|
|
259
215
|
**Active reviewers: `logic-reviewer` ยท `security-auditor`**
|
|
260
216
|
|
|
261
217
|
### โ Forbidden AI Tropes
|
|
262
|
-
|
|
263
218
|
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
264
219
|
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
265
220
|
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
266
221
|
|
|
267
222
|
### โ
Pre-Flight Self-Audit
|
|
268
|
-
|
|
269
|
-
Review these questions before confirming output:
|
|
270
|
-
|
|
271
223
|
```
|
|
272
224
|
โ
Did I rely ONLY on real, verified tools and methods?
|
|
273
225
|
โ
Is this solution appropriately scoped to the user's constraints?
|
|
@@ -276,8 +228,6 @@ Review these questions before confirming output:
|
|
|
276
228
|
```
|
|
277
229
|
|
|
278
230
|
### ๐ Verification-Before-Completion (VBC) Protocol
|
|
279
|
-
|
|
280
231
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
281
|
-
|
|
282
232
|
- โ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
283
233
|
- โ
**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: audit-and-fix
|
|
3
3
|
description: Accessibility auditing and remediation workflow combining detection, prioritization, and practical code fixes for WCAG 2.2 AA compliance issues.
|
|
4
|
-
version:
|
|
5
|
-
last-updated: 2026-07
|
|
4
|
+
version: 4.0.0
|
|
5
|
+
last-updated: 2026-09-07
|
|
6
6
|
skills:
|
|
7
7
|
- fixing-accessibility
|
|
8
8
|
- build-primitive
|
|
@@ -27,6 +27,12 @@ Before performing accessibility audits or fixes, you MUST inspect:
|
|
|
27
27
|
|
|
28
28
|
Systematically audit HTML/JSX markup against WCAG 2.2 AA standards, prioritize accessibility violations, and apply verified code fixes.
|
|
29
29
|
|
|
30
|
+
|
|
31
|
+
## Activation Boundaries
|
|
32
|
+
|
|
33
|
+
- **Activate when:** Operating in tasks requiring Accessibility auditing and remediation workflow combining detection, prioritization, and practical code fixes for WCAG 2.2 AA compliance issues..
|
|
34
|
+
- **DO NOT activate when:** The task falls strictly outside audit-and-fix domain or belongs to a different dedicated specialist.
|
|
35
|
+
|
|
30
36
|
---
|
|
31
37
|
|
|
32
38
|
## 4-Step Remediation Pipeline
|
|
@@ -68,28 +74,25 @@ Scan component code for:
|
|
|
68
74
|
|
|
69
75
|
---
|
|
70
76
|
|
|
71
|
-
##
|
|
77
|
+
## ๐๏ธ Tribunal Verification & Guardrails
|
|
72
78
|
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
---
|
|
79
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
80
|
+
**Active reviewers: `logic-reviewer` ยท `security-auditor`**
|
|
77
81
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
**
|
|
82
|
+
### โ Forbidden AI Tropes
|
|
83
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
84
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
85
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
81
86
|
|
|
82
87
|
### โ
Pre-Flight Self-Audit
|
|
83
|
-
|
|
84
88
|
```
|
|
85
|
-
โ
|
|
86
|
-
โ
|
|
87
|
-
โ
|
|
89
|
+
โ
Did I rely ONLY on real, verified tools and methods?
|
|
90
|
+
โ
Is this solution appropriately scoped to the user's constraints?
|
|
91
|
+
โ
Did I handle potential failure modes and edge cases?
|
|
92
|
+
โ
Have I avoided generic boilerplate that doesn't add value?
|
|
88
93
|
```
|
|
89
94
|
|
|
90
95
|
### ๐ Verification-Before-Completion (VBC) Protocol
|
|
91
|
-
|
|
92
96
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
93
|
-
|
|
94
97
|
- โ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
95
98
|
- โ
**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: authentication-best-practices
|
|
3
3
|
description: Authentication and Authorization mastery. Best practices for OAuth2, OpenID Connect, JWT (JSON Web Tokens), session management, password hashing, MFA (Multi-Factor Authentication), RBAC/ABAC, SSO, and secure credential storage. Use when auditing or implementing login flows, identity systems, or access control.
|
|
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
|
- backend-security-expert
|
|
9
9
|
- api-security-auditor
|
|
@@ -25,7 +25,11 @@ Before implementing authentication or session flows, you MUST inspect:
|
|
|
25
25
|
2. Token Storage Separation (Section 83) โ Keep short-lived access tokens in JS memory and long-lived refresh tokens in `HttpOnly`, `SameSite=Lax/Strict` cookies
|
|
26
26
|
3. OAuth PKCE Flow Requirement (Section 109) โ Enforce Authorization Code Flow with PKCE for all single-page and mobile apps; ban deprecated Implicit Flow
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
|
|
29
|
+
## Activation Boundaries
|
|
30
|
+
|
|
31
|
+
- **Activate when:** Operating in tasks requiring Authentication and Authorization mastery. Best practices for OAuth2, OpenID Connect, JWT (JSON Web Tokens), session management, password hashing, MFA (Multi-Factor Authentication), RBAC/ABAC, SSO, and secure credential storage. Use when auditing or implementing login flows, identity systems, or access control..
|
|
32
|
+
- **DO NOT activate when:** The task falls strictly outside authentication-best-practices domain or belongs to a different dedicated specialist.
|
|
29
33
|
|
|
30
34
|
---
|
|
31
35
|
|
|
@@ -176,69 +180,17 @@ AI coding assistants often fall into specific bad habits when dealing with this
|
|
|
176
180
|
|
|
177
181
|
---
|
|
178
182
|
|
|
179
|
-
|
|
180
|
-
**Active reviewers: `logic-reviewer` ยท `security-auditor`**
|
|
181
|
-
|
|
182
|
-
### โ Forbidden AI Tropes
|
|
183
|
-
|
|
184
|
-
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
185
|
-
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
186
|
-
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
187
|
-
|
|
188
|
-
Review these questions before confirming output:
|
|
189
|
-
|
|
190
|
-
```
|
|
191
|
-
โ
Did I rely ONLY on real, verified tools and methods?
|
|
192
|
-
โ
Is this solution appropriately scoped to the user's constraints?
|
|
193
|
-
โ
Did I handle potential failure modes and edge cases?
|
|
194
|
-
โ
Have I avoided generic boilerplate that doesn't add value?
|
|
195
|
-
```
|
|
196
|
-
|
|
197
|
-
### ๐ Verification-Before-Completion (VBC) Protocol
|
|
198
|
-
|
|
199
|
-
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
200
|
-
|
|
201
|
-
- โ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
202
|
-
- โ
**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.
|
|
203
|
-
|
|
204
|
-
## Pre-Flight Checklist
|
|
205
|
-
|
|
206
|
-
- [ ] Have I reviewed the user's specific constraints and requests?
|
|
207
|
-
- [ ] Have I checked the environment for relevant existing implementations?
|
|
208
|
-
|
|
209
|
-
## VBC Protocol (Verification-Before-Completion)
|
|
210
|
-
|
|
211
|
-
You MUST verify existing code signatures and variables before attempting to modify or call them. No hallucination is permitted.
|
|
212
|
-
|
|
213
|
-
---
|
|
214
|
-
|
|
215
|
-
## ๐ค LLM-Specific Traps
|
|
216
|
-
|
|
217
|
-
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
218
|
-
|
|
219
|
-
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
220
|
-
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
221
|
-
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
222
|
-
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
223
|
-
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
224
|
-
|
|
225
|
-
---
|
|
226
|
-
|
|
227
|
-
## ๐๏ธ Tribunal Integration (Anti-Hallucination)
|
|
183
|
+
## ๐๏ธ Tribunal Verification & Guardrails
|
|
228
184
|
|
|
229
185
|
**Slash command: `/review` or `/tribunal-full`**
|
|
230
186
|
**Active reviewers: `logic-reviewer` ยท `security-auditor`**
|
|
231
187
|
|
|
232
188
|
### โ Forbidden AI Tropes
|
|
233
|
-
|
|
234
189
|
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
235
190
|
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
236
191
|
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
237
192
|
|
|
238
193
|
### โ
Pre-Flight Self-Audit
|
|
239
|
-
|
|
240
|
-
Review these questions before confirming output:
|
|
241
|
-
|
|
242
194
|
```
|
|
243
195
|
โ
Did I rely ONLY on real, verified tools and methods?
|
|
244
196
|
โ
Is this solution appropriately scoped to the user's constraints?
|
|
@@ -247,8 +199,6 @@ Review these questions before confirming output:
|
|
|
247
199
|
```
|
|
248
200
|
|
|
249
201
|
### ๐ Verification-Before-Completion (VBC) Protocol
|
|
250
|
-
|
|
251
202
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
252
|
-
|
|
253
203
|
- โ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
254
204
|
- โ
**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: backend-security-expert
|
|
3
3
|
description: Backend security auditing for modern server-side architectures. Focuses on Next.js Server Actions, Node.js/Edge APIs, JWT & Session architectures, ORM injection (Prisma/Drizzle), and RBAC implementation.
|
|
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-security-expert
|
|
9
9
|
- api-security-auditor
|
|
@@ -21,18 +21,39 @@ scripts-binding:
|
|
|
21
21
|
|
|
22
22
|
Before auditing or writing backend server code, you MUST inspect:
|
|
23
23
|
|
|
24
|
-
1. Server Action
|
|
25
|
-
2.
|
|
26
|
-
3. IDOR &
|
|
24
|
+
1. Server Action Public Surface โ Treat Next.js Server Actions as public endpoints: authenticate session, rate-limit, and parse input with Zod/Valibot at entry
|
|
25
|
+
2. Timing Attacks in Auth Verification โ Use `crypto.timingSafeEqual()` for API key, hash, or token comparisons; ban bare `===` strings
|
|
26
|
+
3. IDOR & Tenant Scoping โ Verify resource ownership in the query predicate (`WHERE id = $1 AND tenant_id = $session_tenant_id`)
|
|
27
|
+
4. SSRF Defense on Outbound Requests โ Validate user-supplied webhook URLs against internal private IP ranges (127.0.0.1, 10.0.0.0/8, 169.254.169.254)
|
|
27
28
|
|
|
28
|
-
|
|
29
|
+
## Activation Boundaries
|
|
30
|
+
|
|
31
|
+
- **Activate when:** Auditing server-side security, designing authentication/authorization (JWT, OAuth, Sessions, RBAC), protecting database boundaries, and securing webhooks.
|
|
32
|
+
- **DO NOT activate when:** Writing pure client-side styling, UI animations, or client-side form rendering.
|
|
33
|
+
|
|
34
|
+
## 2026 Backend Security & Cryptography Invariants
|
|
35
|
+
|
|
36
|
+
1. **Timing-Safe Equality**:
|
|
37
|
+
```ts
|
|
38
|
+
import { timingSafeEqual } from 'node:crypto';
|
|
39
|
+
function verifySecret(provided: string, expected: string): boolean {
|
|
40
|
+
const bufA = Buffer.from(provided);
|
|
41
|
+
const bufB = Buffer.from(expected);
|
|
42
|
+
if (bufA.length !== bufB.length) return false;
|
|
43
|
+
return timingSafeEqual(bufA, bufB);
|
|
44
|
+
}
|
|
45
|
+
```
|
|
46
|
+
2. **SSRF Guardrails on Webhooks**: Never allow user-submitted URLs to hit AWS/GCP metadata services (`169.254.169.254`) or loopback (`localhost`). Validate IP address after DNS resolution before connecting.
|
|
47
|
+
3. **Mass Assignment Prevention**: Never pass `req.body` directly into database inserts. Explicitly pick allowed attributes via Zod schemas (`schema.parse(req.body)`).
|
|
48
|
+
4. **JWT Verification Security**: Always specify `algorithms: ['HS256']` explicitly to prevent the notorious `alg: "none"` vulnerability.
|
|
29
49
|
|
|
30
50
|
## Hallucination Traps (Read First)
|
|
31
51
|
|
|
32
|
-
- โ Recommending session tokens without algorithm enforcement โ โ
Always verify JWT algorithms (`alg: "HS256"`)
|
|
33
|
-
- โ
|
|
34
|
-
- โ
|
|
35
|
-
- โ
|
|
52
|
+
- โ Recommending session tokens without algorithm enforcement โ โ
Always verify JWT algorithms (`alg: "HS256"`)
|
|
53
|
+
- โ String equality `token === expectedToken` โ โ
Use `crypto.timingSafeEqual` to prevent timing attacks
|
|
54
|
+
- โ Treating ORMs as automatically injection-proof โ โ
Prisma and Drizzle are vulnerable if raw SQL is dynamically interpolated
|
|
55
|
+
- โ Assuming Next.js Server Actions are private internal functions โ โ
Server Actions are public HTTP endpoints
|
|
56
|
+
- โ Fetching user-supplied URLs without private IP filtering โ โ
Block RFC 1918 and link-local ranges to prevent SSRF
|
|
36
57
|
|
|
37
58
|
---
|
|
38
59
|
|
|
@@ -73,69 +94,17 @@ AI coding assistants often fall into specific bad habits when dealing with this
|
|
|
73
94
|
|
|
74
95
|
---
|
|
75
96
|
|
|
76
|
-
|
|
77
|
-
**Active reviewers: `logic-reviewer` ยท `security-auditor`**
|
|
78
|
-
|
|
79
|
-
### โ Forbidden AI Tropes
|
|
80
|
-
|
|
81
|
-
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
82
|
-
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
83
|
-
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
84
|
-
|
|
85
|
-
Review these questions before confirming output:
|
|
86
|
-
|
|
87
|
-
```
|
|
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?
|
|
92
|
-
```
|
|
93
|
-
|
|
94
|
-
### ๐ Verification-Before-Completion (VBC) Protocol
|
|
95
|
-
|
|
96
|
-
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
97
|
-
|
|
98
|
-
- โ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
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.
|
|
100
|
-
|
|
101
|
-
## Pre-Flight Checklist
|
|
102
|
-
|
|
103
|
-
- [ ] Have I reviewed the user's specific constraints and requests?
|
|
104
|
-
- [ ] Have I checked the environment for relevant existing implementations?
|
|
105
|
-
|
|
106
|
-
## VBC Protocol (Verification-Before-Completion)
|
|
107
|
-
|
|
108
|
-
You MUST verify existing code signatures and variables before attempting to modify or call them. No hallucination is permitted.
|
|
109
|
-
|
|
110
|
-
---
|
|
111
|
-
|
|
112
|
-
## ๐ค LLM-Specific Traps
|
|
113
|
-
|
|
114
|
-
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
115
|
-
|
|
116
|
-
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
117
|
-
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
118
|
-
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
119
|
-
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
120
|
-
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
121
|
-
|
|
122
|
-
---
|
|
123
|
-
|
|
124
|
-
## ๐๏ธ Tribunal Integration (Anti-Hallucination)
|
|
97
|
+
## ๐๏ธ Tribunal Verification & Guardrails
|
|
125
98
|
|
|
126
99
|
**Slash command: `/review` or `/tribunal-full`**
|
|
127
100
|
**Active reviewers: `logic-reviewer` ยท `security-auditor`**
|
|
128
101
|
|
|
129
102
|
### โ Forbidden AI Tropes
|
|
130
|
-
|
|
131
103
|
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
132
104
|
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
133
105
|
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
134
106
|
|
|
135
107
|
### โ
Pre-Flight Self-Audit
|
|
136
|
-
|
|
137
|
-
Review these questions before confirming output:
|
|
138
|
-
|
|
139
108
|
```
|
|
140
109
|
โ
Did I rely ONLY on real, verified tools and methods?
|
|
141
110
|
โ
Is this solution appropriately scoped to the user's constraints?
|
|
@@ -144,8 +113,6 @@ Review these questions before confirming output:
|
|
|
144
113
|
```
|
|
145
114
|
|
|
146
115
|
### ๐ Verification-Before-Completion (VBC) Protocol
|
|
147
|
-
|
|
148
116
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
149
|
-
|
|
150
117
|
- โ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
151
118
|
- โ
**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: baseline-ui
|
|
3
3
|
description: Quickly deslop UI code by fixing spacing, hierarchy, typography, contrast, and small layout issues. Use when the interface needs a fast cleanup or polish pass.
|
|
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
|
- frontend-design
|
|
@@ -27,6 +27,12 @@ Before cleaning up UI styles, you MUST inspect:
|
|
|
27
27
|
|
|
28
28
|
Enforces an opinionated UI baseline to clean up sloppy code and prevent AI-generated interface slop without changing product architecture or feature scope.
|
|
29
29
|
|
|
30
|
+
|
|
31
|
+
## Activation Boundaries
|
|
32
|
+
|
|
33
|
+
- **Activate when:** Operating in tasks requiring Quickly deslop UI code by fixing spacing, hierarchy, typography, contrast, and small layout issues. Use when the interface needs a fast cleanup or polish pass..
|
|
34
|
+
- **DO NOT activate when:** The task falls strictly outside baseline-ui domain or belongs to a different dedicated specialist.
|
|
35
|
+
|
|
30
36
|
---
|
|
31
37
|
|
|
32
38
|
## 1. Stack & System Constraints
|
|
@@ -62,23 +68,25 @@ Enforces an opinionated UI baseline to clean up sloppy code and prevent AI-gener
|
|
|
62
68
|
|
|
63
69
|
---
|
|
64
70
|
|
|
65
|
-
##
|
|
71
|
+
## ๐๏ธ Tribunal Verification & Guardrails
|
|
66
72
|
|
|
67
|
-
|
|
68
|
-
|
|
73
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
74
|
+
**Active reviewers: `logic-reviewer` ยท `security-auditor`**
|
|
69
75
|
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
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.
|
|
73
80
|
|
|
74
81
|
### โ
Pre-Flight Self-Audit
|
|
75
|
-
|
|
76
82
|
```
|
|
77
|
-
โ
Did I
|
|
78
|
-
โ
|
|
79
|
-
โ
|
|
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?
|
|
80
87
|
```
|
|
81
88
|
|
|
82
89
|
### ๐ Verification-Before-Completion (VBC) Protocol
|
|
83
|
-
|
|
84
|
-
|
|
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.
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
name: bash-linux
|
|
3
3
|
description: Bash/Linux terminal mastery. Shell scripting, piping, stream redirection, process substitution, strict mode (set -euo pipefail), AWK, ripgrep parsing, and robust error handling. Use when writing CI scripts, debugging POSIX environments, or manipulating text pipelines.
|
|
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
|
- server-management
|
|
9
9
|
- devops-engineer
|
|
@@ -25,6 +25,12 @@ Before writing Bash scripts or terminal automation pipelines, you MUST inspect:
|
|
|
25
25
|
2. Variable Quoting Safeguards (Section 122) โ Double-quote all path and string variables (`"$FILE"`, `"${FILES[@]}"`) to prevent whitespace expansion bugs
|
|
26
26
|
3. Modern CLI Efficiency Rules (Section 102) โ Prefer `rg` over `grep`, `fd` over `find`, `jq` over regex JSON parsing for performance and safety
|
|
27
27
|
|
|
28
|
+
|
|
29
|
+
## Activation Boundaries
|
|
30
|
+
|
|
31
|
+
- **Activate when:** Operating in tasks requiring Bash/Linux terminal mastery. Shell scripting, piping, stream redirection, process substitution, strict mode (set -euo pipefail), AWK, ripgrep parsing, and robust error handling. Use when writing CI scripts, debugging POSIX environments, or manipulating text pipelines..
|
|
32
|
+
- **DO NOT activate when:** The task falls strictly outside bash-linux domain or belongs to a different dedicated specialist.
|
|
33
|
+
|
|
28
34
|
## Hallucination Traps (Read First)
|
|
29
35
|
|
|
30
36
|
- โ Scripts without `set -euo pipefail` -> โ
Always enable strict mode to catch silent failures
|
|
@@ -34,8 +40,6 @@ Before writing Bash scripts or terminal automation pipelines, you MUST inspect:
|
|
|
34
40
|
|
|
35
41
|
---
|
|
36
42
|
|
|
37
|
-
# Bash & Linux โ Shell Scripting Mastery
|
|
38
|
-
|
|
39
43
|
---
|
|
40
44
|
|
|
41
45
|
## 1. Bash Strict Mode (Mandatory)
|
|
@@ -158,69 +162,17 @@ AI coding assistants often fall into specific bad habits when dealing with this
|
|
|
158
162
|
|
|
159
163
|
---
|
|
160
164
|
|
|
161
|
-
|
|
162
|
-
**Active reviewers: `logic-reviewer` ยท `security-auditor`**
|
|
163
|
-
|
|
164
|
-
### โ Forbidden AI Tropes
|
|
165
|
-
|
|
166
|
-
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
167
|
-
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
168
|
-
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
169
|
-
|
|
170
|
-
Review these questions before confirming output:
|
|
171
|
-
|
|
172
|
-
```
|
|
173
|
-
โ
Did I rely ONLY on real, verified tools and methods?
|
|
174
|
-
โ
Is this solution appropriately scoped to the user's constraints?
|
|
175
|
-
โ
Did I handle potential failure modes and edge cases?
|
|
176
|
-
โ
Have I avoided generic boilerplate that doesn't add value?
|
|
177
|
-
```
|
|
178
|
-
|
|
179
|
-
### ๐ Verification-Before-Completion (VBC) Protocol
|
|
180
|
-
|
|
181
|
-
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
182
|
-
|
|
183
|
-
- โ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
184
|
-
- โ
**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.
|
|
185
|
-
|
|
186
|
-
## Pre-Flight Checklist
|
|
187
|
-
|
|
188
|
-
- [ ] Have I reviewed the user's specific constraints and requests?
|
|
189
|
-
- [ ] Have I checked the environment for relevant existing implementations?
|
|
190
|
-
|
|
191
|
-
## VBC Protocol (Verification-Before-Completion)
|
|
192
|
-
|
|
193
|
-
You MUST verify existing code signatures and variables before attempting to modify or call them. No hallucination is permitted.
|
|
194
|
-
|
|
195
|
-
---
|
|
196
|
-
|
|
197
|
-
## ๐ค LLM-Specific Traps
|
|
198
|
-
|
|
199
|
-
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
200
|
-
|
|
201
|
-
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
202
|
-
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
203
|
-
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
204
|
-
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
205
|
-
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
206
|
-
|
|
207
|
-
---
|
|
208
|
-
|
|
209
|
-
## ๐๏ธ Tribunal Integration (Anti-Hallucination)
|
|
165
|
+
## ๐๏ธ Tribunal Verification & Guardrails
|
|
210
166
|
|
|
211
167
|
**Slash command: `/review` or `/tribunal-full`**
|
|
212
168
|
**Active reviewers: `logic-reviewer` ยท `security-auditor`**
|
|
213
169
|
|
|
214
170
|
### โ Forbidden AI Tropes
|
|
215
|
-
|
|
216
171
|
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
217
172
|
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
218
173
|
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
219
174
|
|
|
220
175
|
### โ
Pre-Flight Self-Audit
|
|
221
|
-
|
|
222
|
-
Review these questions before confirming output:
|
|
223
|
-
|
|
224
176
|
```
|
|
225
177
|
โ
Did I rely ONLY on real, verified tools and methods?
|
|
226
178
|
โ
Is this solution appropriately scoped to the user's constraints?
|
|
@@ -229,8 +181,6 @@ Review these questions before confirming output:
|
|
|
229
181
|
```
|
|
230
182
|
|
|
231
183
|
### ๐ Verification-Before-Completion (VBC) Protocol
|
|
232
|
-
|
|
233
184
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
234
|
-
|
|
235
185
|
- โ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
236
186
|
- โ
**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.
|