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: sounds-on-the-web
|
|
3
3
|
description: Web Audio API procedural sound synthesis for tactile micro-interaction feedback (clicks, pops, success chimes) with mute toggles and accessibility awareness.
|
|
4
|
-
version:
|
|
5
|
-
last-updated: 2026-07
|
|
4
|
+
version: 4.0.0
|
|
5
|
+
last-updated: 2026-09-07
|
|
6
6
|
skills:
|
|
7
7
|
- delight
|
|
8
8
|
- micro-interaction
|
|
@@ -27,6 +27,12 @@ Before implementing web audio feedback, you MUST inspect:
|
|
|
27
27
|
|
|
28
28
|
Synthesize lightweight, zero-dependency tactile sound effects for web micro-interactions.
|
|
29
29
|
|
|
30
|
+
|
|
31
|
+
## Activation Boundaries
|
|
32
|
+
|
|
33
|
+
- **Activate when:** Operating in tasks requiring Web Audio API procedural sound synthesis for tactile micro-interaction feedback (clicks, pops, success chimes) with mute toggles and accessibility awareness..
|
|
34
|
+
- **DO NOT activate when:** The task falls strictly outside sounds-on-the-web domain or belongs to a different dedicated specialist.
|
|
35
|
+
|
|
30
36
|
---
|
|
31
37
|
|
|
32
38
|
## Zero-Asset Web Audio API Click Synthesizer
|
|
@@ -83,28 +89,25 @@ export const soundFX = new SoundFeedback();
|
|
|
83
89
|
|
|
84
90
|
---
|
|
85
91
|
|
|
86
|
-
##
|
|
92
|
+
## ποΈ Tribunal Verification & Guardrails
|
|
87
93
|
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
---
|
|
94
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
95
|
+
**Active reviewers: `logic-reviewer` Β· `security-auditor`**
|
|
92
96
|
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
**
|
|
97
|
+
### β Forbidden AI Tropes
|
|
98
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
99
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
100
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
96
101
|
|
|
97
102
|
### β
Pre-Flight Self-Audit
|
|
98
|
-
|
|
99
103
|
```
|
|
100
|
-
β
|
|
101
|
-
β
Is
|
|
102
|
-
β
|
|
104
|
+
β
Did I rely ONLY on real, verified tools and methods?
|
|
105
|
+
β
Is this solution appropriately scoped to the user's constraints?
|
|
106
|
+
β
Did I handle potential failure modes and edge cases?
|
|
107
|
+
β
Have I avoided generic boilerplate that doesn't add value?
|
|
103
108
|
```
|
|
104
109
|
|
|
105
110
|
### π Verification-Before-Completion (VBC) Protocol
|
|
106
|
-
|
|
107
111
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
108
|
-
|
|
109
112
|
- β **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
110
113
|
- β
**Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
name: sql-pro
|
|
3
3
|
description: Senior SQL developer across major databases (PostgreSQL, MySQL, SQL Server, Oracle). Complex query design with CTEs, window functions, PIVOT, recursive queries, JSON operations, full-text search, performance optimization with EXPLAIN ANALYZE, indexing strategies, partitioning, and schema architecture. Use when writing queries, designing schemas, optimizing performance, or debugging slow queries.
|
|
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
|
- database-design
|
|
9
9
|
- db-latency-auditor
|
|
@@ -21,11 +21,50 @@ scripts-binding:
|
|
|
21
21
|
|
|
22
22
|
Before writing complex SQL queries or optimizing database performance, you MUST inspect:
|
|
23
23
|
|
|
24
|
-
1.
|
|
25
|
-
2.
|
|
26
|
-
3.
|
|
27
|
-
|
|
28
|
-
|
|
24
|
+
1. Parameterized Queries Mandatory β All queries MUST use parameter markers (`$1`, `?`, `:param`); never concatenate raw user input into SQL strings
|
|
25
|
+
2. SARGability Verification β Ensure `WHERE` clauses are SARGable (no functions or expressions wrapping indexed columns)
|
|
26
|
+
3. Keyset Cursor Pagination β Use `WHERE (created_at, id) < ($1, $2) ORDER BY created_at DESC, id DESC LIMIT 50`; ban `OFFSET` on datasets > 1,000 rows
|
|
27
|
+
4. EXPLAIN (ANALYZE, BUFFERS) β Check actual execution plan, shared buffer hits, and sequential scan flags
|
|
28
|
+
|
|
29
|
+
## Activation Boundaries
|
|
30
|
+
|
|
31
|
+
- **Activate when:** Designing complex SQL queries, CTEs, window functions, query performance tuning, index optimization, and debugging slow transactions.
|
|
32
|
+
- **DO NOT activate when:** Writing NoSQL document queries (Mongo/Redis) or handling client-side state.
|
|
33
|
+
|
|
34
|
+
## 2026 SQL Performance & Query Invariants
|
|
35
|
+
|
|
36
|
+
1. **SARGable Date/Time Predicates**:
|
|
37
|
+
```sql
|
|
38
|
+
-- β BAD: Function on column kills index scan (Seq Scan)
|
|
39
|
+
WHERE DATE(created_at) = '2026-01-01'
|
|
40
|
+
-- β
GOOD: Direct range comparison enables Index Scan
|
|
41
|
+
WHERE created_at >= '2026-01-01 00:00:00+00' AND created_at < '2026-01-02 00:00:00+00'
|
|
42
|
+
```
|
|
43
|
+
2. **Keyset Cursor Pagination (O(1) vs O(N) OFFSET)**:
|
|
44
|
+
```sql
|
|
45
|
+
-- β
Instant lookup regardless of page depth
|
|
46
|
+
SELECT id, title, created_at
|
|
47
|
+
FROM articles
|
|
48
|
+
WHERE (created_at, id) < ($last_created_at, $last_id)
|
|
49
|
+
ORDER BY created_at DESC, id DESC
|
|
50
|
+
LIMIT 20;
|
|
51
|
+
```
|
|
52
|
+
3. **CTE Optimization (`AS NOT MATERIALIZED`)**: In PostgreSQL 12+, CTEs inline automatically unless marked `MATERIALIZED`. Explicitly control materialization when CTE contains heavy calculations.
|
|
53
|
+
4. **Batch Upserts with `ON CONFLICT`**:
|
|
54
|
+
```sql
|
|
55
|
+
INSERT INTO metrics (device_id, recorded_at, val)
|
|
56
|
+
VALUES ($1, $2, $3)
|
|
57
|
+
ON CONFLICT (device_id, recorded_at)
|
|
58
|
+
DO UPDATE SET val = EXCLUDED.val;
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
## Hallucination Traps (Read First)
|
|
62
|
+
|
|
63
|
+
- β String-concatenating user input into SQL β β
Always use parameterized queries (`$1`, `?`)
|
|
64
|
+
- β Using `OFFSET 50000` for pagination β β
Use keyset cursor pagination (`WHERE id > $last_id`)
|
|
65
|
+
- β Wrapping indexed columns in functions in WHERE clauses β β
Compare bare column against computed value
|
|
66
|
+
- β `SELECT *` in production queries β β
Select explicit columns to utilize covering indexes
|
|
67
|
+
- β `COUNT(*)` on millions of rows for simple existence check β β
Use `SELECT EXISTS(SELECT 1 FROM ...)`
|
|
29
68
|
|
|
30
69
|
---
|
|
31
70
|
|
|
@@ -608,69 +647,17 @@ AI coding assistants often fall into specific bad habits when dealing with this
|
|
|
608
647
|
|
|
609
648
|
---
|
|
610
649
|
|
|
611
|
-
|
|
612
|
-
**Active reviewers: `logic-reviewer` Β· `security-auditor`**
|
|
613
|
-
|
|
614
|
-
### β Forbidden AI Tropes
|
|
615
|
-
|
|
616
|
-
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
617
|
-
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
618
|
-
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
619
|
-
|
|
620
|
-
Review these questions before confirming output:
|
|
621
|
-
|
|
622
|
-
```
|
|
623
|
-
β
Did I rely ONLY on real, verified tools and methods?
|
|
624
|
-
β
Is this solution appropriately scoped to the user's constraints?
|
|
625
|
-
β
Did I handle potential failure modes and edge cases?
|
|
626
|
-
β
Have I avoided generic boilerplate that doesn't add value?
|
|
627
|
-
```
|
|
628
|
-
|
|
629
|
-
### π Verification-Before-Completion (VBC) Protocol
|
|
630
|
-
|
|
631
|
-
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
632
|
-
|
|
633
|
-
- β **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
634
|
-
- β
**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.
|
|
635
|
-
|
|
636
|
-
## Pre-Flight Checklist
|
|
637
|
-
|
|
638
|
-
- [ ] Have I reviewed the user's specific constraints and requests?
|
|
639
|
-
- [ ] Have I checked the environment for relevant existing implementations?
|
|
640
|
-
|
|
641
|
-
## VBC Protocol (Verification-Before-Completion)
|
|
642
|
-
|
|
643
|
-
You MUST verify existing code signatures and variables before attempting to modify or call them. No hallucination is permitted.
|
|
644
|
-
|
|
645
|
-
---
|
|
646
|
-
|
|
647
|
-
## π€ LLM-Specific Traps
|
|
648
|
-
|
|
649
|
-
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
650
|
-
|
|
651
|
-
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
652
|
-
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
653
|
-
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
654
|
-
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
655
|
-
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
656
|
-
|
|
657
|
-
---
|
|
658
|
-
|
|
659
|
-
## ποΈ Tribunal Integration (Anti-Hallucination)
|
|
650
|
+
## ποΈ Tribunal Verification & Guardrails
|
|
660
651
|
|
|
661
652
|
**Slash command: `/review` or `/tribunal-full`**
|
|
662
653
|
**Active reviewers: `logic-reviewer` Β· `security-auditor`**
|
|
663
654
|
|
|
664
655
|
### β Forbidden AI Tropes
|
|
665
|
-
|
|
666
656
|
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
667
657
|
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
668
658
|
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
669
659
|
|
|
670
660
|
### β
Pre-Flight Self-Audit
|
|
671
|
-
|
|
672
|
-
Review these questions before confirming output:
|
|
673
|
-
|
|
674
661
|
```
|
|
675
662
|
β
Did I rely ONLY on real, verified tools and methods?
|
|
676
663
|
β
Is this solution appropriately scoped to the user's constraints?
|
|
@@ -679,8 +666,6 @@ Review these questions before confirming output:
|
|
|
679
666
|
```
|
|
680
667
|
|
|
681
668
|
### π Verification-Before-Completion (VBC) Protocol
|
|
682
|
-
|
|
683
669
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
684
|
-
|
|
685
670
|
- β **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
686
671
|
- β
**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: supabase-postgres-best-practices
|
|
3
3
|
description: Database architect expert in Supabase and PostgreSQL. Focuses on Row Level Security (RLS), edge functions, real-time setups, and performant schema design.
|
|
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
|
- database-design
|
|
9
9
|
- sql-pro
|
|
@@ -25,6 +25,12 @@ Before engineering Supabase schemas or writing PostgreSQL migrations, you MUST i
|
|
|
25
25
|
2. Direct UID Match RLS Rule (Section 30) β Use direct equality (`auth.uid() = user_id`) in RLS policies; avoid slow `IN` subqueries
|
|
26
26
|
3. SQL Migration File Requirement (Section 38) β Write explicit SQL migration files (`supabase/migrations/`) rather than manual GUI operations
|
|
27
27
|
|
|
28
|
+
|
|
29
|
+
## Activation Boundaries
|
|
30
|
+
|
|
31
|
+
- **Activate when:** Operating in tasks requiring Database architect expert in Supabase and PostgreSQL. Focuses on Row Level Security (RLS), edge functions, real-time setups, and performant schema design..
|
|
32
|
+
- **DO NOT activate when:** The task falls strictly outside supabase-postgres-best-practices domain or belongs to a different dedicated specialist.
|
|
33
|
+
|
|
28
34
|
## Hallucination Traps (Read First)
|
|
29
35
|
|
|
30
36
|
- β Using Supabase without enabling Row Level Security (RLS) -> β
ALL tables MUST have RLS enabled; without it, data is publicly accessible
|
|
@@ -34,8 +40,6 @@ Before engineering Supabase schemas or writing PostgreSQL migrations, you MUST i
|
|
|
34
40
|
|
|
35
41
|
---
|
|
36
42
|
|
|
37
|
-
# Supabase & Postgres Best Practices
|
|
38
|
-
|
|
39
43
|
You are a Supabase Data Architect. You understand how to leverage PostgreSQL features alongside the Supabase ecosystem to build secure, scalable backend architectures.
|
|
40
44
|
|
|
41
45
|
## Core Directives
|
|
@@ -76,69 +80,17 @@ AI coding assistants often fall into specific bad habits when dealing with this
|
|
|
76
80
|
|
|
77
81
|
---
|
|
78
82
|
|
|
79
|
-
|
|
80
|
-
**Active reviewers: `logic-reviewer` Β· `security-auditor`**
|
|
81
|
-
|
|
82
|
-
### β Forbidden AI Tropes
|
|
83
|
-
|
|
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.
|
|
87
|
-
|
|
88
|
-
Review these questions before confirming output:
|
|
89
|
-
|
|
90
|
-
```
|
|
91
|
-
β
Did I rely ONLY on real, verified tools and methods?
|
|
92
|
-
β
Is this solution appropriately scoped to the user's constraints?
|
|
93
|
-
β
Did I handle potential failure modes and edge cases?
|
|
94
|
-
β
Have I avoided generic boilerplate that doesn't add value?
|
|
95
|
-
```
|
|
96
|
-
|
|
97
|
-
### π Verification-Before-Completion (VBC) Protocol
|
|
98
|
-
|
|
99
|
-
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
100
|
-
|
|
101
|
-
- β **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
102
|
-
- β
**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.
|
|
103
|
-
|
|
104
|
-
## Pre-Flight Checklist
|
|
105
|
-
|
|
106
|
-
- [ ] Have I reviewed the user's specific constraints and requests?
|
|
107
|
-
- [ ] Have I checked the environment for relevant existing implementations?
|
|
108
|
-
|
|
109
|
-
## VBC Protocol (Verification-Before-Completion)
|
|
110
|
-
|
|
111
|
-
You MUST verify existing code signatures and variables before attempting to modify or call them. No hallucination is permitted.
|
|
112
|
-
|
|
113
|
-
---
|
|
114
|
-
|
|
115
|
-
## π€ LLM-Specific Traps
|
|
116
|
-
|
|
117
|
-
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
118
|
-
|
|
119
|
-
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
120
|
-
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
121
|
-
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
122
|
-
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
123
|
-
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
124
|
-
|
|
125
|
-
---
|
|
126
|
-
|
|
127
|
-
## ποΈ Tribunal Integration (Anti-Hallucination)
|
|
83
|
+
## ποΈ Tribunal Verification & Guardrails
|
|
128
84
|
|
|
129
85
|
**Slash command: `/review` or `/tribunal-full`**
|
|
130
86
|
**Active reviewers: `logic-reviewer` Β· `security-auditor`**
|
|
131
87
|
|
|
132
88
|
### β Forbidden AI Tropes
|
|
133
|
-
|
|
134
89
|
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
135
90
|
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
136
91
|
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
137
92
|
|
|
138
93
|
### β
Pre-Flight Self-Audit
|
|
139
|
-
|
|
140
|
-
Review these questions before confirming output:
|
|
141
|
-
|
|
142
94
|
```
|
|
143
95
|
β
Did I rely ONLY on real, verified tools and methods?
|
|
144
96
|
β
Is this solution appropriately scoped to the user's constraints?
|
|
@@ -147,8 +99,6 @@ Review these questions before confirming output:
|
|
|
147
99
|
```
|
|
148
100
|
|
|
149
101
|
### π Verification-Before-Completion (VBC) Protocol
|
|
150
|
-
|
|
151
102
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
152
|
-
|
|
153
103
|
- β **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
154
104
|
- β
**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: svg-animation
|
|
3
3
|
description: SVG stroke draw-on effects, path morphing, animated icons, motion paths, and interactive vector graphics.
|
|
4
|
-
version:
|
|
5
|
-
last-updated: 2026-07
|
|
4
|
+
version: 4.0.0
|
|
5
|
+
last-updated: 2026-09-07
|
|
6
6
|
skills:
|
|
7
7
|
- morphing-icons
|
|
8
8
|
- 60fps-animation
|
|
@@ -27,6 +27,12 @@ Before engineering SVG path or stroke animations, you MUST inspect:
|
|
|
27
27
|
|
|
28
28
|
Craft crisp, resolution-independent vector animations using CSS, Framer Motion, or GSAP.
|
|
29
29
|
|
|
30
|
+
|
|
31
|
+
## Activation Boundaries
|
|
32
|
+
|
|
33
|
+
- **Activate when:** Operating in tasks requiring SVG stroke draw-on effects, path morphing, animated icons, motion paths, and interactive vector graphics..
|
|
34
|
+
- **DO NOT activate when:** The task falls strictly outside svg-animation domain or belongs to a different dedicated specialist.
|
|
35
|
+
|
|
30
36
|
---
|
|
31
37
|
|
|
32
38
|
## 3 SVG Motion Techniques
|
|
@@ -83,27 +89,25 @@ gsap.to('#start-shape', {
|
|
|
83
89
|
|
|
84
90
|
---
|
|
85
91
|
|
|
86
|
-
##
|
|
92
|
+
## ποΈ Tribunal Verification & Guardrails
|
|
87
93
|
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
---
|
|
94
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
95
|
+
**Active reviewers: `logic-reviewer` Β· `security-auditor`**
|
|
92
96
|
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
**
|
|
97
|
+
### β Forbidden AI Tropes
|
|
98
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
99
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
100
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
96
101
|
|
|
97
102
|
### β
Pre-Flight Self-Audit
|
|
98
|
-
|
|
99
103
|
```
|
|
100
|
-
β
|
|
101
|
-
β
Is
|
|
104
|
+
β
Did I rely ONLY on real, verified tools and methods?
|
|
105
|
+
β
Is this solution appropriately scoped to the user's constraints?
|
|
106
|
+
β
Did I handle potential failure modes and edge cases?
|
|
107
|
+
β
Have I avoided generic boilerplate that doesn't add value?
|
|
102
108
|
```
|
|
103
109
|
|
|
104
110
|
### π Verification-Before-Completion (VBC) Protocol
|
|
105
|
-
|
|
106
111
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
107
|
-
|
|
108
112
|
- β **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
109
113
|
- β
**Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
name: swiftui-expert
|
|
3
3
|
description: SwiftUI development mastery. View architecture, state management (@State, @Binding, @Environment, @Observable), performance optimization (identifiable loops, implicit vs explicit animations), architectural patterns (MVVM vs TCA), and iOS-native UX paradigms. Use when writing native Apple platforms code.
|
|
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
|
- mobile-design
|
|
9
9
|
- building-native-ui
|
|
@@ -25,6 +25,12 @@ Before writing or refactoring SwiftUI components, you MUST inspect:
|
|
|
25
25
|
2. Identifiable Protocol in ForEach (Section 125) β Conform model types to `Identifiable` for `ForEach`; ban integer index iteration (`0..<items.count`)
|
|
26
26
|
3. NavigationStack Standard (Section 18) β Use `NavigationStack` or `NavigationSplitView`; ban deprecated legacy `NavigationView`
|
|
27
27
|
|
|
28
|
+
|
|
29
|
+
## Activation Boundaries
|
|
30
|
+
|
|
31
|
+
- **Activate when:** Operating in tasks requiring SwiftUI development mastery. View architecture, state management (@State, @Binding, @Environment, @Observable), performance optimization (identifiable loops, implicit vs explicit animations), architectural patterns (MVVM vs TCA), and iOS-native UX paradigms. Use when writing native Apple platforms code..
|
|
32
|
+
- **DO NOT activate when:** The task falls strictly outside swiftui-expert domain or belongs to a different dedicated specialist.
|
|
33
|
+
|
|
28
34
|
## Hallucination Traps (Read First)
|
|
29
35
|
|
|
30
36
|
- β Using `@State` for shared data between views -> β
`@State` is local to a view; use `@Binding`, `@Environment`, or `@Observable` for sharing
|
|
@@ -34,8 +40,6 @@ Before writing or refactoring SwiftUI components, you MUST inspect:
|
|
|
34
40
|
|
|
35
41
|
---
|
|
36
42
|
|
|
37
|
-
# SwiftUI Expert β Native Apple Platforms Mastery
|
|
38
|
-
|
|
39
43
|
---
|
|
40
44
|
|
|
41
45
|
## 1. Modern State Management (iOS 17+ / Swift 5.9+)
|
|
@@ -183,69 +187,17 @@ AI coding assistants often fall into specific bad habits when dealing with this
|
|
|
183
187
|
|
|
184
188
|
---
|
|
185
189
|
|
|
186
|
-
|
|
187
|
-
**Active reviewers: `logic-reviewer` Β· `security-auditor`**
|
|
188
|
-
|
|
189
|
-
### β Forbidden AI Tropes
|
|
190
|
-
|
|
191
|
-
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
192
|
-
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
193
|
-
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
194
|
-
|
|
195
|
-
Review these questions before confirming output:
|
|
196
|
-
|
|
197
|
-
```
|
|
198
|
-
β
Did I rely ONLY on real, verified tools and methods?
|
|
199
|
-
β
Is this solution appropriately scoped to the user's constraints?
|
|
200
|
-
β
Did I handle potential failure modes and edge cases?
|
|
201
|
-
β
Have I avoided generic boilerplate that doesn't add value?
|
|
202
|
-
```
|
|
203
|
-
|
|
204
|
-
### π Verification-Before-Completion (VBC) Protocol
|
|
205
|
-
|
|
206
|
-
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
207
|
-
|
|
208
|
-
- β **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
209
|
-
- β
**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.
|
|
210
|
-
|
|
211
|
-
## Pre-Flight Checklist
|
|
212
|
-
|
|
213
|
-
- [ ] Have I reviewed the user's specific constraints and requests?
|
|
214
|
-
- [ ] Have I checked the environment for relevant existing implementations?
|
|
215
|
-
|
|
216
|
-
## VBC Protocol (Verification-Before-Completion)
|
|
217
|
-
|
|
218
|
-
You MUST verify existing code signatures and variables before attempting to modify or call them. No hallucination is permitted.
|
|
219
|
-
|
|
220
|
-
---
|
|
221
|
-
|
|
222
|
-
## π€ LLM-Specific Traps
|
|
223
|
-
|
|
224
|
-
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
225
|
-
|
|
226
|
-
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
227
|
-
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
228
|
-
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
229
|
-
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
230
|
-
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
231
|
-
|
|
232
|
-
---
|
|
233
|
-
|
|
234
|
-
## ποΈ Tribunal Integration (Anti-Hallucination)
|
|
190
|
+
## ποΈ Tribunal Verification & Guardrails
|
|
235
191
|
|
|
236
192
|
**Slash command: `/review` or `/tribunal-full`**
|
|
237
193
|
**Active reviewers: `logic-reviewer` Β· `security-auditor`**
|
|
238
194
|
|
|
239
195
|
### β Forbidden AI Tropes
|
|
240
|
-
|
|
241
196
|
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
242
197
|
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
243
198
|
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
244
199
|
|
|
245
200
|
### β
Pre-Flight Self-Audit
|
|
246
|
-
|
|
247
|
-
Review these questions before confirming output:
|
|
248
|
-
|
|
249
201
|
```
|
|
250
202
|
β
Did I rely ONLY on real, verified tools and methods?
|
|
251
203
|
β
Is this solution appropriately scoped to the user's constraints?
|
|
@@ -254,8 +206,6 @@ Review these questions before confirming output:
|
|
|
254
206
|
```
|
|
255
207
|
|
|
256
208
|
### π Verification-Before-Completion (VBC) Protocol
|
|
257
|
-
|
|
258
209
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
259
|
-
|
|
260
210
|
- β **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
261
211
|
- β
**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: swiss-design
|
|
3
3
|
description: International Typographic Style (Swiss Design) principles for web interfaces. Strict grid discipline, asymmetric layouts, bold typographic contrast, flush-left un-justified text, and mathematical negative space.
|
|
4
|
-
version:
|
|
5
|
-
last-updated: 2026-07
|
|
4
|
+
version: 4.0.0
|
|
5
|
+
last-updated: 2026-09-07
|
|
6
6
|
skills:
|
|
7
7
|
- typeset
|
|
8
8
|
- baseline-ui
|
|
@@ -27,6 +27,12 @@ Before applying Swiss Design aesthetics, you MUST inspect:
|
|
|
27
27
|
|
|
28
28
|
Architect pristine, print-inspired interfaces grounded in grid discipline, objective clarity, and asymmetric typographic hierarchy.
|
|
29
29
|
|
|
30
|
+
|
|
31
|
+
## Activation Boundaries
|
|
32
|
+
|
|
33
|
+
- **Activate when:** Operating in tasks requiring International Typographic Style (Swiss Design) principles for web interfaces. Strict grid discipline, asymmetric layouts, bold typographic contrast, flush-left un-justified text, and mathematical negative space..
|
|
34
|
+
- **DO NOT activate when:** The task falls strictly outside swiss-design domain or belongs to a different dedicated specialist.
|
|
35
|
+
|
|
30
36
|
---
|
|
31
37
|
|
|
32
38
|
## 4 Swiss Design Pillars
|
|
@@ -51,28 +57,25 @@ Architect pristine, print-inspired interfaces grounded in grid discipline, objec
|
|
|
51
57
|
|
|
52
58
|
---
|
|
53
59
|
|
|
54
|
-
##
|
|
60
|
+
## ποΈ Tribunal Verification & Guardrails
|
|
55
61
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
---
|
|
62
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
63
|
+
**Active reviewers: `logic-reviewer` Β· `security-auditor`**
|
|
60
64
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
**
|
|
65
|
+
### β Forbidden AI Tropes
|
|
66
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
67
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
68
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
64
69
|
|
|
65
70
|
### β
Pre-Flight Self-Audit
|
|
66
|
-
|
|
67
71
|
```
|
|
68
|
-
β
|
|
69
|
-
β
Is
|
|
70
|
-
β
|
|
72
|
+
β
Did I rely ONLY on real, verified tools and methods?
|
|
73
|
+
β
Is this solution appropriately scoped to the user's constraints?
|
|
74
|
+
β
Did I handle potential failure modes and edge cases?
|
|
75
|
+
β
Have I avoided generic boilerplate that doesn't add value?
|
|
71
76
|
```
|
|
72
77
|
|
|
73
78
|
### π Verification-Before-Completion (VBC) Protocol
|
|
74
|
-
|
|
75
79
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
76
|
-
|
|
77
80
|
- β **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
78
81
|
- β
**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: system-design-pro
|
|
3
3
|
description: Industry-level system design mastery for interviews and production. The 6-step design framework, scale estimation (DAUβQPSβstorageβbandwidth), core building blocks (load balancers L4/L7, CDN, caches, queues), database selection matrix, CAP Theorem applied, and reference designs for URL shortener, rate limiter, Twitter feed, distributed cache, and notification system. Use when designing systems for scale, conducting architecture reviews, or preparing system design discussions.
|
|
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
|
- architecture
|
|
9
9
|
- database-design
|
|
@@ -25,6 +25,12 @@ Before designing system architecture or writing scale proposals, you MUST inspec
|
|
|
25
25
|
2. Quantified Scale Estimation (Section 65) β Calculate read/write QPS, storage growth, and bandwidth before selecting database or caching tiers
|
|
26
26
|
3. Monolith First Rule (Section 17) β Start with modular monolith for $<10\text{K}$ RPM; ban introducing microservices or sharding prematurely
|
|
27
27
|
|
|
28
|
+
|
|
29
|
+
## Activation Boundaries
|
|
30
|
+
|
|
31
|
+
- **Activate when:** Operating in tasks requiring Industry-level system design mastery for interviews and production. The 6-step design framework, scale estimation (DAUβQPSβstorageβbandwidth), core building blocks (load balancers L4/L7, CDN, caches, queues), database selection matrix, CAP Theorem applied, and reference designs for URL shortener, rate limiter, Twitter feed, distributed cache, and notification system. Use when designing systems for scale, conducting architecture reviews, or preparing system design discussions..
|
|
32
|
+
- **DO NOT activate when:** The task falls strictly outside system-design-pro domain or belongs to a different dedicated specialist.
|
|
33
|
+
|
|
28
34
|
## Hallucination Traps (Read First)
|
|
29
35
|
|
|
30
36
|
- β "Just use microservices" for <10K RPM β β
Microservices add operational complexity that kills small teams. Start monolith.
|
|
@@ -35,8 +41,6 @@ Before designing system architecture or writing scale proposals, you MUST inspec
|
|
|
35
41
|
|
|
36
42
|
---
|
|
37
43
|
|
|
38
|
-
# System Design Pro β Industry-Level Mastery
|
|
39
|
-
|
|
40
44
|
## 1. The 6-Step Design Framework
|
|
41
45
|
|
|
42
46
|
Use this structure for every system design discussion:
|
|
@@ -325,34 +329,25 @@ Failure handling:
|
|
|
325
329
|
|
|
326
330
|
---
|
|
327
331
|
|
|
328
|
-
##
|
|
329
|
-
|
|
330
|
-
1. **Premature sharding**: Suggesting database sharding before the user has even mentioned scale issues. Sharding is complex; exhaust simpler options first.
|
|
331
|
-
2. **NoSQL for everything**: DynamoDB and MongoDB are not universally better. They sacrifice joins and ACID. Present the tradeoffs honestly.
|
|
332
|
-
3. **Ignoring the 80/20 of read QPS**: Most web apps are 80-95% reads. Design the read path first (caching, CDN, read replicas) before optimizing writes.
|
|
333
|
-
4. **Forgetting the Coordinator Problem**: Distributed systems need coordination (who is the leader?). Mention ZooKeeper/etcd or leaderless designs when relevant.
|
|
334
|
-
5. **Over-specifying CAP**: Real systems pick AP vs CP at the feature level, not the system level. A shopping cart (AP) and payment processing (CP) can coexist.
|
|
335
|
-
|
|
336
|
-
---
|
|
337
|
-
|
|
338
|
-
## ποΈ Tribunal Integration (Anti-Hallucination)
|
|
332
|
+
## ποΈ Tribunal Verification & Guardrails
|
|
339
333
|
|
|
340
334
|
**Slash command: `/review` or `/tribunal-full`**
|
|
341
|
-
**Active reviewers: `logic-reviewer` Β· `
|
|
335
|
+
**Active reviewers: `logic-reviewer` Β· `security-auditor`**
|
|
342
336
|
|
|
343
|
-
###
|
|
337
|
+
### β Forbidden AI Tropes
|
|
338
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
339
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
340
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
344
341
|
|
|
342
|
+
### β
Pre-Flight Self-Audit
|
|
345
343
|
```
|
|
346
|
-
β
Did I
|
|
347
|
-
β
|
|
348
|
-
β
Did I
|
|
349
|
-
β
|
|
350
|
-
β
Did I define a failure mode and mitigation for the primary bottleneck?
|
|
344
|
+
β
Did I rely ONLY on real, verified tools and methods?
|
|
345
|
+
β
Is this solution appropriately scoped to the user's constraints?
|
|
346
|
+
β
Did I handle potential failure modes and edge cases?
|
|
347
|
+
β
Have I avoided generic boilerplate that doesn't add value?
|
|
351
348
|
```
|
|
352
349
|
|
|
353
350
|
### π Verification-Before-Completion (VBC) Protocol
|
|
354
|
-
|
|
355
351
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
356
|
-
|
|
357
|
-
-
|
|
358
|
-
- β
**Required**: Every system design must include: QPS estimates, data model, caching strategy, and at least one identified bottleneck with a scaling plan.
|
|
352
|
+
- β **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
353
|
+
- β
**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.
|