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: antfu-conventions
|
|
3
3
|
description: Anthony Fu's opinionated tooling and conventions for JavaScript/TypeScript projects: ESM-first, zero-config, type-safe, and clean tooling standards.
|
|
4
4
|
tools: Read, Grep, Glob, Bash, Edit, Write
|
|
5
|
-
version:
|
|
6
|
-
last-updated: 2026-07
|
|
5
|
+
version: 4.0.0
|
|
6
|
+
last-updated: 2026-09-07
|
|
7
7
|
skills:
|
|
8
8
|
- clean-code
|
|
9
9
|
- typescript-advanced
|
|
@@ -25,10 +25,14 @@ Before configuring JS/TS tooling or lint rules, you MUST inspect:
|
|
|
25
25
|
2. ESLint Flat Config (`eslint.config.js`) (Section 28) → Use `@antfu/eslint-config` with flat config format; ban legacy `.eslintrc.json`
|
|
26
26
|
3. Explicit Type Imports (`import type`) (Section 45) → Enforce `import type` for type-only symbols to allow clean tree-shaking compilation
|
|
27
27
|
|
|
28
|
-
# Antfu Conventions — ESM-First & Opinionated Modern Tooling
|
|
29
|
-
|
|
30
28
|
Enforce Anthony Fu's modern JavaScript/TypeScript engineering conventions: ESM-first, zero-config, pnpm workspaces, and strict type safety.
|
|
31
29
|
|
|
30
|
+
|
|
31
|
+
## Activation Boundaries
|
|
32
|
+
|
|
33
|
+
- **Activate when:** Operating in tasks requiring Anthony Fu's opinionated tooling and conventions for JavaScript/TypeScript projects: ESM-first, zero-config, type-safe, and clean tooling standards..
|
|
34
|
+
- **DO NOT activate when:** The task falls strictly outside antfu-conventions domain or belongs to a different dedicated specialist.
|
|
35
|
+
|
|
32
36
|
---
|
|
33
37
|
|
|
34
38
|
## 4 Core Tooling Conventions
|
|
@@ -63,28 +67,25 @@ export default antfu({
|
|
|
63
67
|
|
|
64
68
|
---
|
|
65
69
|
|
|
66
|
-
##
|
|
70
|
+
## 🏛️ Tribunal Verification & Guardrails
|
|
67
71
|
|
|
68
|
-
|
|
69
|
-
|
|
72
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
73
|
+
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
70
74
|
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
**Active reviewers: `type-safety` · `dependency-reviewer`**
|
|
75
|
+
### ❌ Forbidden AI Tropes
|
|
76
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
77
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
78
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
76
79
|
|
|
77
80
|
### ✅ Pre-Flight Self-Audit
|
|
78
|
-
|
|
79
81
|
```
|
|
80
|
-
✅
|
|
81
|
-
✅
|
|
82
|
-
✅
|
|
82
|
+
✅ Did I rely ONLY on real, verified tools and methods?
|
|
83
|
+
✅ Is this solution appropriately scoped to the user's constraints?
|
|
84
|
+
✅ Did I handle potential failure modes and edge cases?
|
|
85
|
+
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
83
86
|
```
|
|
84
87
|
|
|
85
88
|
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
86
|
-
|
|
87
89
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
88
|
-
|
|
89
90
|
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
90
91
|
- ✅ **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: api-patterns
|
|
3
3
|
description: API design mastery. REST, GraphQL, tRPC, and gRPC selection. Request/response design, pagination (cursor/offset), filtering, versioning, rate limiting, error formats (RFC 9457), authentication (JWT/OAuth2/API keys), idempotency, file uploads, webhooks, and OpenAPI documentation. Use when designing APIs, choosing protocols, or implementing API standards.
|
|
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
|
- api-security-auditor
|
|
9
9
|
- backend-security-expert
|
|
@@ -25,7 +25,11 @@ Before designing or implementing API endpoints, you MUST inspect:
|
|
|
25
25
|
2. Cursor-Based Pagination (Section 19) → Use cursor pagination for datasets >10K rows to eliminate `OFFSET N` performance degradation
|
|
26
26
|
3. Idempotency Header for Mutations (Section 21) → Require `Idempotency-Key` headers for state-changing `POST` or `PATCH` retry operations
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
|
|
29
|
+
## Activation Boundaries
|
|
30
|
+
|
|
31
|
+
- **Activate when:** Operating in tasks requiring API design mastery. REST, GraphQL, tRPC, and gRPC selection. Request/response design, pagination (cursor/offset), filtering, versioning, rate limiting, error formats (RFC 9457), authentication (JWT/OAuth2/API keys), idempotency, file uploads, webhooks, and OpenAPI documentation. Use when designing APIs, choosing protocols, or implementing API standards..
|
|
32
|
+
- **DO NOT activate when:** The task falls strictly outside api-patterns domain or belongs to a different dedicated specialist.
|
|
29
33
|
|
|
30
34
|
## Hallucination Traps (Read First)
|
|
31
35
|
|
|
@@ -235,69 +239,17 @@ AI coding assistants often fall into specific bad habits when dealing with this
|
|
|
235
239
|
|
|
236
240
|
---
|
|
237
241
|
|
|
238
|
-
|
|
239
|
-
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
240
|
-
|
|
241
|
-
### ❌ Forbidden AI Tropes
|
|
242
|
-
|
|
243
|
-
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
244
|
-
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
245
|
-
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
246
|
-
|
|
247
|
-
Review these questions before confirming output:
|
|
248
|
-
|
|
249
|
-
```
|
|
250
|
-
✅ Did I rely ONLY on real, verified tools and methods?
|
|
251
|
-
✅ Is this solution appropriately scoped to the user's constraints?
|
|
252
|
-
✅ Did I handle potential failure modes and edge cases?
|
|
253
|
-
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
254
|
-
```
|
|
255
|
-
|
|
256
|
-
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
257
|
-
|
|
258
|
-
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
259
|
-
|
|
260
|
-
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
261
|
-
- ✅ **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.
|
|
262
|
-
|
|
263
|
-
## Pre-Flight Checklist
|
|
264
|
-
|
|
265
|
-
- [ ] Have I reviewed the user's specific constraints and requests?
|
|
266
|
-
- [ ] Have I checked the environment for relevant existing implementations?
|
|
267
|
-
|
|
268
|
-
## VBC Protocol (Verification-Before-Completion)
|
|
269
|
-
|
|
270
|
-
You MUST verify existing code signatures and variables before attempting to modify or call them. No hallucination is permitted.
|
|
271
|
-
|
|
272
|
-
---
|
|
273
|
-
|
|
274
|
-
## 🤖 LLM-Specific Traps
|
|
275
|
-
|
|
276
|
-
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
277
|
-
|
|
278
|
-
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
279
|
-
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
280
|
-
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
281
|
-
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
282
|
-
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
283
|
-
|
|
284
|
-
---
|
|
285
|
-
|
|
286
|
-
## 🏛️ Tribunal Integration (Anti-Hallucination)
|
|
242
|
+
## 🏛️ Tribunal Verification & Guardrails
|
|
287
243
|
|
|
288
244
|
**Slash command: `/review` or `/tribunal-full`**
|
|
289
245
|
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
290
246
|
|
|
291
247
|
### ❌ Forbidden AI Tropes
|
|
292
|
-
|
|
293
248
|
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
294
249
|
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
295
250
|
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
296
251
|
|
|
297
252
|
### ✅ Pre-Flight Self-Audit
|
|
298
|
-
|
|
299
|
-
Review these questions before confirming output:
|
|
300
|
-
|
|
301
253
|
```
|
|
302
254
|
✅ Did I rely ONLY on real, verified tools and methods?
|
|
303
255
|
✅ Is this solution appropriately scoped to the user's constraints?
|
|
@@ -306,8 +258,6 @@ Review these questions before confirming output:
|
|
|
306
258
|
```
|
|
307
259
|
|
|
308
260
|
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
309
|
-
|
|
310
261
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
311
|
-
|
|
312
262
|
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
313
263
|
- ✅ **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: api-security-auditor
|
|
3
3
|
description: API Security auditing mastery. Rate limiting architecture, API key management, payload validation, IDOR (Insecure Direct Object Reference) prevention, mass assignment flaws, GraphQL security, and server-side mitigations. Use when building external APIs, B2B services, or reviewing endpoint security.
|
|
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
|
- vulnerability-scanner
|
|
@@ -25,7 +25,11 @@ Before auditing or hardening API endpoints, you MUST inspect:
|
|
|
25
25
|
2. Mass Assignment Mitigations (Section 47) → Enforce strict Zod schemas (`.strict()`) to prevent parameter overposting into DB updates
|
|
26
26
|
3. Distributed Rate Limiting (Section 80) → Store rate limit state in Redis for multi-pod load balanced environments to prevent limit bypasses
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
|
|
29
|
+
## Activation Boundaries
|
|
30
|
+
|
|
31
|
+
- **Activate when:** Operating in tasks requiring API Security auditing mastery. Rate limiting architecture, API key management, payload validation, IDOR (Insecure Direct Object Reference) prevention, mass assignment flaws, GraphQL security, and server-side mitigations. Use when building external APIs, B2B services, or reviewing endpoint security..
|
|
32
|
+
- **DO NOT activate when:** The task falls strictly outside api-security-auditor domain or belongs to a different dedicated specialist.
|
|
29
33
|
|
|
30
34
|
---
|
|
31
35
|
|
|
@@ -174,69 +178,17 @@ AI coding assistants often fall into specific bad habits when dealing with this
|
|
|
174
178
|
|
|
175
179
|
---
|
|
176
180
|
|
|
177
|
-
|
|
178
|
-
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
179
|
-
|
|
180
|
-
### ❌ Forbidden AI Tropes
|
|
181
|
-
|
|
182
|
-
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
183
|
-
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
184
|
-
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
185
|
-
|
|
186
|
-
Review these questions before confirming output:
|
|
187
|
-
|
|
188
|
-
```
|
|
189
|
-
✅ Did I rely ONLY on real, verified tools and methods?
|
|
190
|
-
✅ Is this solution appropriately scoped to the user's constraints?
|
|
191
|
-
✅ Did I handle potential failure modes and edge cases?
|
|
192
|
-
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
193
|
-
```
|
|
194
|
-
|
|
195
|
-
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
196
|
-
|
|
197
|
-
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
198
|
-
|
|
199
|
-
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
200
|
-
- ✅ **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.
|
|
201
|
-
|
|
202
|
-
## Pre-Flight Checklist
|
|
203
|
-
|
|
204
|
-
- [ ] Have I reviewed the user's specific constraints and requests?
|
|
205
|
-
- [ ] Have I checked the environment for relevant existing implementations?
|
|
206
|
-
|
|
207
|
-
## VBC Protocol (Verification-Before-Completion)
|
|
208
|
-
|
|
209
|
-
You MUST verify existing code signatures and variables before attempting to modify or call them. No hallucination is permitted.
|
|
210
|
-
|
|
211
|
-
---
|
|
212
|
-
|
|
213
|
-
## 🤖 LLM-Specific Traps
|
|
214
|
-
|
|
215
|
-
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
216
|
-
|
|
217
|
-
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
218
|
-
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
219
|
-
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
220
|
-
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
221
|
-
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
222
|
-
|
|
223
|
-
---
|
|
224
|
-
|
|
225
|
-
## 🏛️ Tribunal Integration (Anti-Hallucination)
|
|
181
|
+
## 🏛️ Tribunal Verification & Guardrails
|
|
226
182
|
|
|
227
183
|
**Slash command: `/review` or `/tribunal-full`**
|
|
228
184
|
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
229
185
|
|
|
230
186
|
### ❌ Forbidden AI Tropes
|
|
231
|
-
|
|
232
187
|
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
233
188
|
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
234
189
|
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
235
190
|
|
|
236
191
|
### ✅ Pre-Flight Self-Audit
|
|
237
|
-
|
|
238
|
-
Review these questions before confirming output:
|
|
239
|
-
|
|
240
192
|
```
|
|
241
193
|
✅ Did I rely ONLY on real, verified tools and methods?
|
|
242
194
|
✅ Is this solution appropriately scoped to the user's constraints?
|
|
@@ -245,8 +197,6 @@ Review these questions before confirming output:
|
|
|
245
197
|
```
|
|
246
198
|
|
|
247
199
|
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
248
|
-
|
|
249
200
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
250
|
-
|
|
251
201
|
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
252
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.
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
name: app-builder
|
|
3
3
|
description: Main application building orchestrator. Creates full-stack applications from natural language requests. Determines project type, selects tech stack, coordinates agents.
|
|
4
4
|
tools: Read, Grep, Glob, Bash, Edit, Write
|
|
5
|
-
version:
|
|
6
|
-
last-updated: 2026-07
|
|
5
|
+
version: 4.0.0
|
|
6
|
+
last-updated: 2026-09-07
|
|
7
7
|
skills:
|
|
8
8
|
- nextjs-react-expert
|
|
9
9
|
- react-specialist
|
|
@@ -25,6 +25,12 @@ Before scaffolding or orchestrating application builds, you MUST inspect:
|
|
|
25
25
|
2. Plan Verification (Section 220) → Ensure `{task-slug}.md` is created and verified in project root before invoking specialist agents
|
|
26
26
|
3. Incremental Build Rule (Section 15) → Never generate entire applications in one shot; build and verify module by module
|
|
27
27
|
|
|
28
|
+
|
|
29
|
+
## Activation Boundaries
|
|
30
|
+
|
|
31
|
+
- **Activate when:** Operating in tasks requiring Main application building orchestrator. Creates full-stack applications from natural language requests. Determines project type, selects tech stack, coordinates agents..
|
|
32
|
+
- **DO NOT activate when:** The task falls strictly outside app-builder domain or belongs to a different dedicated specialist.
|
|
33
|
+
|
|
28
34
|
## Hallucination Traps (Read First)
|
|
29
35
|
|
|
30
36
|
- ❌ Generating entire applications in one shot -> ✅ Build one module at a time, verify each
|
|
@@ -33,8 +39,6 @@ Before scaffolding or orchestrating application builds, you MUST inspect:
|
|
|
33
39
|
|
|
34
40
|
---
|
|
35
41
|
|
|
36
|
-
# App Builder — Application Orchestrator
|
|
37
|
-
|
|
38
42
|
---
|
|
39
43
|
|
|
40
44
|
## When This Skill Activates
|
|
@@ -552,69 +556,17 @@ AI coding assistants often fall into specific bad habits when dealing with this
|
|
|
552
556
|
|
|
553
557
|
---
|
|
554
558
|
|
|
555
|
-
|
|
556
|
-
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
557
|
-
|
|
558
|
-
### ❌ Forbidden AI Tropes
|
|
559
|
-
|
|
560
|
-
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
561
|
-
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
562
|
-
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
563
|
-
|
|
564
|
-
Review these questions before confirming output:
|
|
565
|
-
|
|
566
|
-
```
|
|
567
|
-
✅ Did I rely ONLY on real, verified tools and methods?
|
|
568
|
-
✅ Is this solution appropriately scoped to the user's constraints?
|
|
569
|
-
✅ Did I handle potential failure modes and edge cases?
|
|
570
|
-
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
571
|
-
```
|
|
572
|
-
|
|
573
|
-
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
574
|
-
|
|
575
|
-
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
576
|
-
|
|
577
|
-
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
578
|
-
- ✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|
|
579
|
-
|
|
580
|
-
## Pre-Flight Checklist
|
|
581
|
-
|
|
582
|
-
- [ ] Have I reviewed the user's specific constraints and requests?
|
|
583
|
-
- [ ] Have I checked the environment for relevant existing implementations?
|
|
584
|
-
|
|
585
|
-
## VBC Protocol (Verification-Before-Completion)
|
|
586
|
-
|
|
587
|
-
You MUST verify existing code signatures and variables before attempting to modify or call them. No hallucination is permitted.
|
|
588
|
-
|
|
589
|
-
---
|
|
590
|
-
|
|
591
|
-
## 🤖 LLM-Specific Traps
|
|
592
|
-
|
|
593
|
-
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
594
|
-
|
|
595
|
-
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
596
|
-
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
597
|
-
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
598
|
-
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
599
|
-
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
600
|
-
|
|
601
|
-
---
|
|
602
|
-
|
|
603
|
-
## 🏛️ Tribunal Integration (Anti-Hallucination)
|
|
559
|
+
## 🏛️ Tribunal Verification & Guardrails
|
|
604
560
|
|
|
605
561
|
**Slash command: `/review` or `/tribunal-full`**
|
|
606
562
|
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
607
563
|
|
|
608
564
|
### ❌ Forbidden AI Tropes
|
|
609
|
-
|
|
610
565
|
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
611
566
|
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
612
567
|
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
613
568
|
|
|
614
569
|
### ✅ Pre-Flight Self-Audit
|
|
615
|
-
|
|
616
|
-
Review these questions before confirming output:
|
|
617
|
-
|
|
618
570
|
```
|
|
619
571
|
✅ Did I rely ONLY on real, verified tools and methods?
|
|
620
572
|
✅ Is this solution appropriately scoped to the user's constraints?
|
|
@@ -623,8 +575,6 @@ Review these questions before confirming output:
|
|
|
623
575
|
```
|
|
624
576
|
|
|
625
577
|
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
626
|
-
|
|
627
578
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
628
|
-
|
|
629
579
|
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
630
580
|
- ✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|
|
@@ -2,16 +2,26 @@
|
|
|
2
2
|
name: appflow-wireframe
|
|
3
3
|
description: Application flow and wireframing mastery. Mermaid.js flowcharting, state diagrams, user journey mapping, interaction matrices, explicit screen boundary demarcation, and accessibility flow modeling. Use when planning UI architectures, designing user onboarding flows, or visualizing complex state machines before writing code.
|
|
4
4
|
allowed-tools: Read, Write, Edit, Glob, Grep
|
|
5
|
-
version:
|
|
6
|
-
last-updated: 2026-
|
|
5
|
+
version: 4.0.0
|
|
6
|
+
last-updated: 2026-09-07
|
|
7
7
|
applies-to-model: gemini-2.5-pro, claude-3-7-sonnet
|
|
8
8
|
routing:
|
|
9
9
|
domain: general
|
|
10
10
|
tier: basic
|
|
11
|
+
scripts-binding:
|
|
12
|
+
- .agent/scripts/lint_runner.js
|
|
13
|
+
- .agent/scripts/verify_all.js
|
|
11
14
|
---
|
|
12
15
|
|
|
13
16
|
## Hallucination Traps (Read First)
|
|
14
17
|
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## Activation Boundaries
|
|
21
|
+
|
|
22
|
+
- **Activate when:** Operating in tasks requiring Application flow and wireframing mastery. Mermaid.js flowcharting, state diagrams, user journey mapping, interaction matrices, explicit screen boundary demarcation, and accessibility flow modeling. Use when planning UI architectures, designing user onboarding flows, or visualizing complex state machines before writing code..
|
|
23
|
+
- **DO NOT activate when:** The task falls strictly outside appflow-wireframe domain or belongs to a different dedicated specialist.
|
|
24
|
+
|
|
15
25
|
- ❌ Drawing wireframes without defined user personas -> ✅ Establish WHO uses each screen before designing
|
|
16
26
|
- ❌ Skipping error/empty/loading states in flow diagrams -> ✅ Every screen needs 4 states: loading, empty, populated, error
|
|
17
27
|
- ❌ Assuming linear user journeys -> ✅ Real users jump between screens, go back, and abandon flows mid-way
|
|
@@ -110,69 +120,17 @@ AI coding assistants often fall into specific bad habits when dealing with this
|
|
|
110
120
|
|
|
111
121
|
---
|
|
112
122
|
|
|
113
|
-
|
|
114
|
-
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
115
|
-
|
|
116
|
-
### ❌ Forbidden AI Tropes
|
|
117
|
-
|
|
118
|
-
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
119
|
-
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
120
|
-
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
121
|
-
|
|
122
|
-
Review these questions before confirming output:
|
|
123
|
-
|
|
124
|
-
```
|
|
125
|
-
✅ Did I rely ONLY on real, verified tools and methods?
|
|
126
|
-
✅ Is this solution appropriately scoped to the user's constraints?
|
|
127
|
-
✅ Did I handle potential failure modes and edge cases?
|
|
128
|
-
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
129
|
-
```
|
|
130
|
-
|
|
131
|
-
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
132
|
-
|
|
133
|
-
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
134
|
-
|
|
135
|
-
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
136
|
-
- ✅ **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.
|
|
137
|
-
|
|
138
|
-
## Pre-Flight Checklist
|
|
139
|
-
|
|
140
|
-
- [ ] Have I reviewed the user's specific constraints and requests?
|
|
141
|
-
- [ ] Have I checked the environment for relevant existing implementations?
|
|
142
|
-
|
|
143
|
-
## VBC Protocol (Verification-Before-Completion)
|
|
144
|
-
|
|
145
|
-
You MUST verify existing code signatures and variables before attempting to modify or call them. No hallucination is permitted.
|
|
146
|
-
|
|
147
|
-
---
|
|
148
|
-
|
|
149
|
-
## 🤖 LLM-Specific Traps
|
|
150
|
-
|
|
151
|
-
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
152
|
-
|
|
153
|
-
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
154
|
-
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
155
|
-
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
156
|
-
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
157
|
-
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
158
|
-
|
|
159
|
-
---
|
|
160
|
-
|
|
161
|
-
## 🏛️ Tribunal Integration (Anti-Hallucination)
|
|
123
|
+
## 🏛️ Tribunal Verification & Guardrails
|
|
162
124
|
|
|
163
125
|
**Slash command: `/review` or `/tribunal-full`**
|
|
164
126
|
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
165
127
|
|
|
166
128
|
### ❌ Forbidden AI Tropes
|
|
167
|
-
|
|
168
129
|
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
169
130
|
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
170
131
|
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
171
132
|
|
|
172
133
|
### ✅ Pre-Flight Self-Audit
|
|
173
|
-
|
|
174
|
-
Review these questions before confirming output:
|
|
175
|
-
|
|
176
134
|
```
|
|
177
135
|
✅ Did I rely ONLY on real, verified tools and methods?
|
|
178
136
|
✅ Is this solution appropriately scoped to the user's constraints?
|
|
@@ -181,8 +139,6 @@ Review these questions before confirming output:
|
|
|
181
139
|
```
|
|
182
140
|
|
|
183
141
|
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
184
|
-
|
|
185
142
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
186
|
-
|
|
187
143
|
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
188
144
|
- ✅ **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: apple-design
|
|
3
3
|
description: Apple's approach to interface design and fluid, physical motion, translated for the web. Use when building or reviewing gesture-driven UI, spring animations, drag/swipe/sheet interactions, momentum and interruptible transitions, translucent materials and depth, typography (optical sizing, tracking, leading), reduced-motion, or the design foundations behind Apple-style interfaces.
|
|
4
|
-
version:
|
|
5
|
-
last-updated: 2026-07
|
|
4
|
+
version: 4.0.0
|
|
5
|
+
last-updated: 2026-09-07
|
|
6
6
|
skills:
|
|
7
7
|
- soft-skill
|
|
8
8
|
- emil-design-eng
|
|
@@ -27,6 +27,12 @@ Before engineering Apple-style UIs or gesture-driven components, you MUST inspec
|
|
|
27
27
|
|
|
28
28
|
Design engineering guidelines for bringing Apple's fluid, physical interface paradigms to modern web applications.
|
|
29
29
|
|
|
30
|
+
|
|
31
|
+
## Activation Boundaries
|
|
32
|
+
|
|
33
|
+
- **Activate when:** Operating in tasks requiring Apple's approach to interface design and fluid, physical motion, translated for the web. Use when building or reviewing gesture-driven UI, spring animations, drag/swipe/sheet interactions, momentum and interruptible transitions, translucent materials and depth, typography (optical sizing, tracking, leading), reduced-motion, or the design foundations behind Apple-style interfaces..
|
|
34
|
+
- **DO NOT activate when:** The task falls strictly outside apple-design domain or belongs to a different dedicated specialist.
|
|
35
|
+
|
|
30
36
|
---
|
|
31
37
|
|
|
32
38
|
## 1. Physics-Based Spring Animations
|
|
@@ -96,23 +102,25 @@ Apple depth relies on subtle, multi-layered backdrop blur and border highlights:
|
|
|
96
102
|
|
|
97
103
|
---
|
|
98
104
|
|
|
99
|
-
##
|
|
105
|
+
## 🏛️ Tribunal Verification & Guardrails
|
|
100
106
|
|
|
101
|
-
|
|
102
|
-
|
|
107
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
108
|
+
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
103
109
|
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
110
|
+
### ❌ Forbidden AI Tropes
|
|
111
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
112
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
113
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
107
114
|
|
|
108
115
|
### ✅ Pre-Flight Self-Audit
|
|
109
|
-
|
|
110
116
|
```
|
|
111
|
-
✅
|
|
112
|
-
✅ Is
|
|
113
|
-
✅
|
|
117
|
+
✅ Did I rely ONLY on real, verified tools and methods?
|
|
118
|
+
✅ Is this solution appropriately scoped to the user's constraints?
|
|
119
|
+
✅ Did I handle potential failure modes and edge cases?
|
|
120
|
+
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
114
121
|
```
|
|
115
122
|
|
|
116
123
|
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
117
|
-
|
|
118
|
-
|
|
124
|
+
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
125
|
+
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
126
|
+
- ✅ **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.
|