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: building-native-ui
|
|
3
3
|
description: Cross-platform Native UI mastery (React Native / Expo). Building seamless, 60fps mobile interfaces, handling safe areas, navigation architectures (Expo Router), native modules, gestures/animations (Reanimated), and platform-specific styling. Use when building React Native or Expo mobile apps.
|
|
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
|
- react-specialist
|
|
@@ -25,6 +25,12 @@ Before building React Native / Expo UI components, you MUST inspect:
|
|
|
25
25
|
2. Virtualized List Rendering (Section 130) โ Use `FlashList` (Shopify) or `FlatList` with `estimatedItemSize` instead of `ScrollView` for large lists
|
|
26
26
|
3. Native Thread Animations (Section 99) โ Use `react-native-reanimated` with `useSharedValue` to keep animations off the JS bridge thread
|
|
27
27
|
|
|
28
|
+
|
|
29
|
+
## Activation Boundaries
|
|
30
|
+
|
|
31
|
+
- **Activate when:** Operating in tasks requiring Cross-platform Native UI mastery (React Native / Expo). Building seamless, 60fps mobile interfaces, handling safe areas, navigation architectures (Expo Router), native modules, gestures/animations (Reanimated), and platform-specific styling. Use when building React Native or Expo mobile apps..
|
|
32
|
+
- **DO NOT activate when:** The task falls strictly outside building-native-ui domain or belongs to a different dedicated specialist.
|
|
33
|
+
|
|
28
34
|
## Hallucination Traps (Read First)
|
|
29
35
|
|
|
30
36
|
- โ `SafeAreaView` wrapping everything -> โ
Use `SafeAreaProvider` + `useSafeAreaInsets()` for granular control
|
|
@@ -34,8 +40,6 @@ Before building React Native / Expo UI components, you MUST inspect:
|
|
|
34
40
|
|
|
35
41
|
---
|
|
36
42
|
|
|
37
|
-
# Building Native UI โ React Native & Expo Mastery
|
|
38
|
-
|
|
39
43
|
A mobile app isn't a website confined to a small screen.
|
|
40
44
|
60 FPS is not a goal; it is a rigid requirement. The JS thread is a fragile bottleneck.
|
|
41
45
|
|
|
@@ -181,69 +185,17 @@ AI coding assistants often fall into specific bad habits when dealing with this
|
|
|
181
185
|
|
|
182
186
|
---
|
|
183
187
|
|
|
184
|
-
|
|
185
|
-
**Active reviewers: `logic-reviewer` ยท `security-auditor`**
|
|
186
|
-
|
|
187
|
-
### โ Forbidden AI Tropes
|
|
188
|
-
|
|
189
|
-
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
190
|
-
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
191
|
-
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
192
|
-
|
|
193
|
-
Review these questions before confirming output:
|
|
194
|
-
|
|
195
|
-
```
|
|
196
|
-
โ
Did I rely ONLY on real, verified tools and methods?
|
|
197
|
-
โ
Is this solution appropriately scoped to the user's constraints?
|
|
198
|
-
โ
Did I handle potential failure modes and edge cases?
|
|
199
|
-
โ
Have I avoided generic boilerplate that doesn't add value?
|
|
200
|
-
```
|
|
201
|
-
|
|
202
|
-
### ๐ Verification-Before-Completion (VBC) Protocol
|
|
203
|
-
|
|
204
|
-
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
205
|
-
|
|
206
|
-
- โ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
207
|
-
- โ
**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.
|
|
208
|
-
|
|
209
|
-
## Pre-Flight Checklist
|
|
210
|
-
|
|
211
|
-
- [ ] Have I reviewed the user's specific constraints and requests?
|
|
212
|
-
- [ ] Have I checked the environment for relevant existing implementations?
|
|
213
|
-
|
|
214
|
-
## VBC Protocol (Verification-Before-Completion)
|
|
215
|
-
|
|
216
|
-
You MUST verify existing code signatures and variables before attempting to modify or call them. No hallucination is permitted.
|
|
217
|
-
|
|
218
|
-
---
|
|
219
|
-
|
|
220
|
-
## ๐ค LLM-Specific Traps
|
|
221
|
-
|
|
222
|
-
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
223
|
-
|
|
224
|
-
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
225
|
-
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
226
|
-
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
227
|
-
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
228
|
-
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
229
|
-
|
|
230
|
-
---
|
|
231
|
-
|
|
232
|
-
## ๐๏ธ Tribunal Integration (Anti-Hallucination)
|
|
188
|
+
## ๐๏ธ Tribunal Verification & Guardrails
|
|
233
189
|
|
|
234
190
|
**Slash command: `/review` or `/tribunal-full`**
|
|
235
191
|
**Active reviewers: `logic-reviewer` ยท `security-auditor`**
|
|
236
192
|
|
|
237
193
|
### โ Forbidden AI Tropes
|
|
238
|
-
|
|
239
194
|
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
240
195
|
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
241
196
|
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
242
197
|
|
|
243
198
|
### โ
Pre-Flight Self-Audit
|
|
244
|
-
|
|
245
|
-
Review these questions before confirming output:
|
|
246
|
-
|
|
247
199
|
```
|
|
248
200
|
โ
Did I rely ONLY on real, verified tools and methods?
|
|
249
201
|
โ
Is this solution appropriately scoped to the user's constraints?
|
|
@@ -252,8 +204,6 @@ Review these questions before confirming output:
|
|
|
252
204
|
```
|
|
253
205
|
|
|
254
206
|
### ๐ Verification-Before-Completion (VBC) Protocol
|
|
255
|
-
|
|
256
207
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
257
|
-
|
|
258
208
|
- โ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
259
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.
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
name: cicd-pro
|
|
3
3
|
description: Enterprise-grade CI/CD mastery. Golden Path - GitHub Actions + Docker + AWS ECS. 3-stage pipeline architecture (ValidateโBuildโDeploy), OIDC-based AWS auth (no static secrets), Blue/Green and Canary deployment with ECS, environment promotion gates (devโstagingโproduction), rollback playbooks, Slack notifications, and reusable workflow patterns. Use when designing or implementing production CI/CD pipelines.
|
|
4
4
|
tools: Read, Grep, Glob, Bash, Edit, Write
|
|
5
|
-
version:
|
|
6
|
-
last-updated: 2026-07
|
|
5
|
+
version: 4.0.0
|
|
6
|
+
last-updated: 2026-09-07
|
|
7
7
|
skills:
|
|
8
8
|
- containerization-pro
|
|
9
9
|
- cloud-architect
|
|
@@ -25,6 +25,12 @@ Before designing CI/CD workflows or deployment scripts, you MUST inspect:
|
|
|
25
25
|
2. OIDC Authentication Protocol (Section 20) โ Use OIDC (`id-token: write` permission) for AWS/cloud credentials; ban static access keys in secrets
|
|
26
26
|
3. Production Promotion Gates (Section 21) โ Enforce environment promotion gates (`staging` โ `production` with manual reviewers) before deploying
|
|
27
27
|
|
|
28
|
+
|
|
29
|
+
## Activation Boundaries
|
|
30
|
+
|
|
31
|
+
- **Activate when:** Operating in tasks requiring Enterprise-grade CI/CD mastery. Golden Path - GitHub Actions + Docker + AWS ECS. 3-stage pipeline architecture (ValidateโBuildโDeploy), OIDC-based AWS auth (no static secrets), Blue/Green and Canary deployment with ECS, environment promotion gates (devโstagingโproduction), rollback playbooks, Slack notifications, and reusable workflow patterns. Use when designing or implementing production CI/CD pipelines..
|
|
32
|
+
- **DO NOT activate when:** The task falls strictly outside cicd-pro domain or belongs to a different dedicated specialist.
|
|
33
|
+
|
|
28
34
|
## Hallucination Traps (Read First)
|
|
29
35
|
|
|
30
36
|
- โ Missing `concurrency:` block โ โ
Without it, parallel deploys collide and corrupt production state
|
|
@@ -36,8 +42,6 @@ Before designing CI/CD workflows or deployment scripts, you MUST inspect:
|
|
|
36
42
|
|
|
37
43
|
---
|
|
38
44
|
|
|
39
|
-
# CI/CD Pro โ Enterprise Pipeline Mastery
|
|
40
|
-
|
|
41
45
|
## 1. The 3-Stage Pipeline Model
|
|
42
46
|
|
|
43
47
|
```
|
|
@@ -419,36 +423,25 @@ resource "github_repository_environment" "production" {
|
|
|
419
423
|
|
|
420
424
|
---
|
|
421
425
|
|
|
422
|
-
##
|
|
423
|
-
|
|
424
|
-
1. **No `concurrency:` block**: Without it, two deploys can run simultaneously, causing task definition conflicts in ECS and corrupted deployments.
|
|
425
|
-
2. **Deploying without a stability wait**: `wait-for-service-stability: true` is critical. Without it, the pipeline reports success while ECS is still starting containers.
|
|
426
|
-
3. **Hardcoded task definition revisions**: Never hardcode `:1` or `:latest` in ECS deploy steps. Always fetch the current revision dynamically with `describe-task-definition`.
|
|
427
|
-
4. **Missing Slack failure notification**: Success notifications alone create false security. Always add `if: failure()` Slack step.
|
|
428
|
-
5. **Using `needs.job.result` incorrectly**: `needs.build.outputs.image` only works if `build` job has `outputs:` defined. Verify the output name matches exactly.
|
|
429
|
-
|
|
430
|
-
---
|
|
431
|
-
|
|
432
|
-
## ๐๏ธ Tribunal Integration (Anti-Hallucination)
|
|
426
|
+
## ๐๏ธ Tribunal Verification & Guardrails
|
|
433
427
|
|
|
434
428
|
**Slash command: `/review` or `/tribunal-full`**
|
|
435
|
-
**Active reviewers: `logic-reviewer` ยท `security-auditor
|
|
429
|
+
**Active reviewers: `logic-reviewer` ยท `security-auditor`**
|
|
436
430
|
|
|
437
|
-
###
|
|
431
|
+
### โ Forbidden AI Tropes
|
|
432
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
433
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
434
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
438
435
|
|
|
436
|
+
### โ
Pre-Flight Self-Audit
|
|
439
437
|
```
|
|
440
|
-
โ
|
|
441
|
-
โ
Is
|
|
442
|
-
โ
|
|
443
|
-
โ
|
|
444
|
-
โ
Is there a rollback strategy documented and tested?
|
|
445
|
-
โ
Does the Slack notification cover BOTH success AND failure cases?
|
|
446
|
-
โ
Is wait-for-service-stability: true set on the ECS deploy step?
|
|
438
|
+
โ
Did I rely ONLY on real, verified tools and methods?
|
|
439
|
+
โ
Is this solution appropriately scoped to the user's constraints?
|
|
440
|
+
โ
Did I handle potential failure modes and edge cases?
|
|
441
|
+
โ
Have I avoided generic boilerplate that doesn't add value?
|
|
447
442
|
```
|
|
448
443
|
|
|
449
444
|
### ๐ Verification-Before-Completion (VBC) Protocol
|
|
450
|
-
|
|
451
445
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
452
|
-
|
|
453
|
-
-
|
|
454
|
-
- โ
**Required**: A real GitHub Actions run must succeed (green checkmarks across all stages) before the pipeline is declared production-ready.
|
|
446
|
+
- โ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
447
|
+
- โ
**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: clarify
|
|
3
3
|
description: Improve UX microcopy, label optimization, error messages, and cognitive clarity. Use when text in a UI is confusing, wordy, ambiguous, or unhelpful.
|
|
4
|
-
version:
|
|
5
|
-
last-updated: 2026-07
|
|
4
|
+
version: 4.0.0
|
|
5
|
+
last-updated: 2026-09-07
|
|
6
6
|
skills:
|
|
7
7
|
- distill
|
|
8
8
|
- shape
|
|
@@ -27,6 +27,12 @@ Before optimizing UI text or error messages, you MUST inspect:
|
|
|
27
27
|
|
|
28
28
|
Optimize user interface text, button labels, error messaging, and helper copy for maximum clarity and minimum cognitive friction.
|
|
29
29
|
|
|
30
|
+
|
|
31
|
+
## Activation Boundaries
|
|
32
|
+
|
|
33
|
+
- **Activate when:** Operating in tasks requiring Improve UX microcopy, label optimization, error messages, and cognitive clarity. Use when text in a UI is confusing, wordy, ambiguous, or unhelpful..
|
|
34
|
+
- **DO NOT activate when:** The task falls strictly outside clarify domain or belongs to a different dedicated specialist.
|
|
35
|
+
|
|
30
36
|
---
|
|
31
37
|
|
|
32
38
|
## 4 UX Copy Rules
|
|
@@ -62,28 +68,25 @@ Optimize user interface text, button labels, error messaging, and helper copy fo
|
|
|
62
68
|
|
|
63
69
|
---
|
|
64
70
|
|
|
65
|
-
##
|
|
71
|
+
## ๐๏ธ Tribunal Verification & Guardrails
|
|
66
72
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
---
|
|
73
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
74
|
+
**Active reviewers: `logic-reviewer` ยท `security-auditor`**
|
|
71
75
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
**
|
|
76
|
+
### โ Forbidden AI Tropes
|
|
77
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
78
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
79
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
75
80
|
|
|
76
81
|
### โ
Pre-Flight Self-Audit
|
|
77
|
-
|
|
78
82
|
```
|
|
79
|
-
โ
|
|
80
|
-
โ
|
|
81
|
-
โ
|
|
83
|
+
โ
Did I rely ONLY on real, verified tools and methods?
|
|
84
|
+
โ
Is this solution appropriately scoped to the user's constraints?
|
|
85
|
+
โ
Did I handle potential failure modes and edge cases?
|
|
86
|
+
โ
Have I avoided generic boilerplate that doesn't add value?
|
|
82
87
|
```
|
|
83
88
|
|
|
84
89
|
### ๐ Verification-Before-Completion (VBC) Protocol
|
|
85
|
-
|
|
86
90
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
87
|
-
|
|
88
91
|
- โ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
89
92
|
- โ
**Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
name: clean-code
|
|
3
3
|
description: Clean code mastery. Naming conventions, function design, DRY vs WET, SOLID principles with code examples, refactoring patterns, code smells detection, error handling philosophy, comments that add value, and the art of simplicity. Use when reviewing code quality, refactoring, or establishing coding 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
|
- codebase-design
|
|
9
9
|
- code-review-checklist
|
|
@@ -24,16 +24,27 @@ Before refactoring code or evaluating clean code standards, you MUST inspect:
|
|
|
24
24
|
1. Intent-Revealing Naming (Section 25) โ Name variables/functions to reveal explicit intent; ban cryptic abbreviations (`d`, `proc`, `u`)
|
|
25
25
|
2. Single-Purpose Functions (Section 95) โ Ensure functions perform 1 single task; extract sub-operations if function exceeds ~30 lines
|
|
26
26
|
3. Guard Clause Early Returns (Section 344) โ Flatten nested logic (>3 levels) using guard clauses and fail-fast early returns
|
|
27
|
+
4. Algorithmic Complexity & Lookups โ Prefer `Set` / `Map` for O(1) membership lookups instead of repeated O(N) array scans
|
|
28
|
+
|
|
29
|
+
## Activation Boundaries
|
|
30
|
+
|
|
31
|
+
- **Activate when:** Refactoring existing codebases, establishing code quality standards, designing function boundaries, eliminating code smells, and writing logic-bearing business modules.
|
|
32
|
+
- **DO NOT activate when:** Writing quick disposable test fixtures, raw low-level binary protocol buffers, or machine-generated artifacts where human maintainability is not an invariant.
|
|
33
|
+
|
|
34
|
+
## 2026 Code Performance & Logic Invariants
|
|
35
|
+
|
|
36
|
+
1. **Fail-Fast Early Returns**: Flatten nested conditionals (`if ... else if ... else`). Return or throw immediately on validation failure.
|
|
37
|
+
2. **O(1) Data Structures**: Replace repeated `array.find()` or `array.includes()` in loops with `Set.has()` or `Map.get()`.
|
|
38
|
+
3. **Cyclomatic Complexity Cap**: No single function may exceed cyclomatic complexity > 10. Split multi-branch operations into dedicated strategy handlers.
|
|
39
|
+
4. **Pure Core, Imperative Shell**: Keep business calculations pure and deterministic; push network I/O, file access, and mutation to the boundaries.
|
|
40
|
+
5. **Typed Error Hierarchy**: Never throw raw strings or generic `Error`. Throw domain-specific error classes containing structured metadata (`code`, `retryable`, `context`).
|
|
27
41
|
|
|
28
42
|
## Hallucination Traps (Read First)
|
|
29
43
|
|
|
30
44
|
- โ Over-abstracting code that is used in only one place -> โ
Don't DRY single-use code; premature abstraction is worse than duplication
|
|
31
45
|
- โ Adding comments that restate what the code does -> โ
Comments explain WHY, not WHAT; the code explains what
|
|
32
46
|
- โ Creating utility functions for trivial one-liners -> โ
Inline is clearer when the operation is self-documenting
|
|
33
|
-
|
|
34
|
-
---
|
|
35
|
-
|
|
36
|
-
# Clean Code โ The Art of Readable Software
|
|
47
|
+
- โ Using `array.find()` inside an `array.filter()` loop (O(Nยฒ)) -> โ
Index into a `Map` first (O(N))
|
|
37
48
|
|
|
38
49
|
---
|
|
39
50
|
|
|
@@ -379,69 +390,17 @@ AI coding assistants often fall into specific bad habits when dealing with this
|
|
|
379
390
|
|
|
380
391
|
---
|
|
381
392
|
|
|
382
|
-
|
|
383
|
-
**Active reviewers: `logic-reviewer` ยท `security-auditor`**
|
|
384
|
-
|
|
385
|
-
### โ Forbidden AI Tropes
|
|
386
|
-
|
|
387
|
-
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
388
|
-
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
389
|
-
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
390
|
-
|
|
391
|
-
Review these questions before confirming output:
|
|
392
|
-
|
|
393
|
-
```
|
|
394
|
-
โ
Did I rely ONLY on real, verified tools and methods?
|
|
395
|
-
โ
Is this solution appropriately scoped to the user's constraints?
|
|
396
|
-
โ
Did I handle potential failure modes and edge cases?
|
|
397
|
-
โ
Have I avoided generic boilerplate that doesn't add value?
|
|
398
|
-
```
|
|
399
|
-
|
|
400
|
-
### ๐ Verification-Before-Completion (VBC) Protocol
|
|
401
|
-
|
|
402
|
-
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
403
|
-
|
|
404
|
-
- โ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
405
|
-
- โ
**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.
|
|
406
|
-
|
|
407
|
-
## Pre-Flight Checklist
|
|
408
|
-
|
|
409
|
-
- [ ] Have I reviewed the user's specific constraints and requests?
|
|
410
|
-
- [ ] Have I checked the environment for relevant existing implementations?
|
|
411
|
-
|
|
412
|
-
## VBC Protocol (Verification-Before-Completion)
|
|
413
|
-
|
|
414
|
-
You MUST verify existing code signatures and variables before attempting to modify or call them. No hallucination is permitted.
|
|
415
|
-
|
|
416
|
-
---
|
|
417
|
-
|
|
418
|
-
## ๐ค LLM-Specific Traps
|
|
419
|
-
|
|
420
|
-
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
421
|
-
|
|
422
|
-
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
423
|
-
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
424
|
-
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
425
|
-
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
426
|
-
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
427
|
-
|
|
428
|
-
---
|
|
429
|
-
|
|
430
|
-
## ๐๏ธ Tribunal Integration (Anti-Hallucination)
|
|
393
|
+
## ๐๏ธ Tribunal Verification & Guardrails
|
|
431
394
|
|
|
432
395
|
**Slash command: `/review` or `/tribunal-full`**
|
|
433
396
|
**Active reviewers: `logic-reviewer` ยท `security-auditor`**
|
|
434
397
|
|
|
435
398
|
### โ Forbidden AI Tropes
|
|
436
|
-
|
|
437
399
|
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
438
400
|
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
439
401
|
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
440
402
|
|
|
441
403
|
### โ
Pre-Flight Self-Audit
|
|
442
|
-
|
|
443
|
-
Review these questions before confirming output:
|
|
444
|
-
|
|
445
404
|
```
|
|
446
405
|
โ
Did I rely ONLY on real, verified tools and methods?
|
|
447
406
|
โ
Is this solution appropriately scoped to the user's constraints?
|
|
@@ -450,8 +409,6 @@ Review these questions before confirming output:
|
|
|
450
409
|
```
|
|
451
410
|
|
|
452
411
|
### ๐ Verification-Before-Completion (VBC) Protocol
|
|
453
|
-
|
|
454
412
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
455
|
-
|
|
456
413
|
- โ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
457
414
|
- โ
**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: cloud-architect
|
|
3
3
|
description: Production AWS cloud architecture mastery. Service selection (ECS Fargate vs Lambda vs EC2, RDS vs Aurora vs DynamoDB), Terraform IaC patterns with HCL examples, VPC networking design, IAM least privilege, Secrets Manager, CloudWatch observability, cost optimization, and multi-environment AWS Organizations strategy. Golden Path - AWS. Use when architecting cloud infrastructure, writing Terraform, or making AWS service selection decisions.
|
|
4
4
|
tools: Read, Grep, Glob, Bash, Edit, Write
|
|
5
|
-
version:
|
|
6
|
-
last-updated: 2026-07
|
|
5
|
+
version: 4.0.0
|
|
6
|
+
last-updated: 2026-09-07
|
|
7
7
|
skills:
|
|
8
8
|
- cicd-pro
|
|
9
9
|
- devops-engineer
|
|
@@ -25,6 +25,12 @@ Before architecting AWS cloud infrastructure or writing Terraform HCL, you MUST
|
|
|
25
25
|
2. Private Subnet Application Placement (Section 23) โ Place application compute (ECS, Lambda) strictly in private subnets; only ALB and NAT Gateway live in public subnets
|
|
26
26
|
3. Secrets Manager Secret Injection (Section 21) โ Reference secret ARNs from AWS Secrets Manager in ECS task definitions; ban plaintext environment variables for passwords/tokens
|
|
27
27
|
|
|
28
|
+
|
|
29
|
+
## Activation Boundaries
|
|
30
|
+
|
|
31
|
+
- **Activate when:** Operating in tasks requiring Production AWS cloud architecture mastery. Service selection (ECS Fargate vs Lambda vs EC2, RDS vs Aurora vs DynamoDB), Terraform IaC patterns with HCL examples, VPC networking design, IAM least privilege, Secrets Manager, CloudWatch observability, cost optimization, and multi-environment AWS Organizations strategy. Golden Path - AWS. Use when architecting cloud infrastructure, writing Terraform, or making AWS service selection decisions..
|
|
32
|
+
- **DO NOT activate when:** The task falls strictly outside cloud-architect domain or belongs to a different dedicated specialist.
|
|
33
|
+
|
|
28
34
|
## Hallucination Traps (Read First)
|
|
29
35
|
|
|
30
36
|
- โ Confusing availability zones with regions โ โ
`us-east-1` is a region. `us-east-1a` is an AZ within that region. Multi-AZ โ multi-region.
|
|
@@ -36,8 +42,6 @@ Before architecting AWS cloud infrastructure or writing Terraform HCL, you MUST
|
|
|
36
42
|
|
|
37
43
|
---
|
|
38
44
|
|
|
39
|
-
# Cloud Architect โ Production AWS Mastery
|
|
40
|
-
|
|
41
45
|
## 1. Service Selection Matrix
|
|
42
46
|
|
|
43
47
|
### Compute
|
|
@@ -416,36 +420,25 @@ terraform {
|
|
|
416
420
|
|
|
417
421
|
---
|
|
418
422
|
|
|
419
|
-
##
|
|
420
|
-
|
|
421
|
-
1. **Omitting `data.aws_caller_identity.current.account_id`**: Never hardcode AWS account IDs in Terraform. Use the data source.
|
|
422
|
-
2. **Lambda for database-heavy operations**: Lambda's ephemeral compute model means each invocation opens a new DB connection. Use RDS Proxy for Lambda โ RDS patterns.
|
|
423
|
-
3. **Ignoring NAT Gateway costs**: NAT Gateways cost ~$32/month + $0.045/GB. For staging, a single NAT Gateway is fine. For production, one per AZ for HA.
|
|
424
|
-
4. **Security groups as firewalls**: Security groups are stateful. NACLs are stateless. Never use NACLs as your primary defense layer โ security groups are the right tool.
|
|
425
|
-
5. **Missing `lifecycle { ignore_changes }` on ECS services**: Without this, Terraform fights with your CI/CD pipeline over the running task definition revision.
|
|
426
|
-
|
|
427
|
-
---
|
|
428
|
-
|
|
429
|
-
## ๐๏ธ Tribunal Integration (Anti-Hallucination)
|
|
423
|
+
## ๐๏ธ Tribunal Verification & Guardrails
|
|
430
424
|
|
|
431
425
|
**Slash command: `/review` or `/tribunal-full`**
|
|
432
|
-
**Active reviewers: `logic-reviewer` ยท `security-auditor
|
|
426
|
+
**Active reviewers: `logic-reviewer` ยท `security-auditor`**
|
|
433
427
|
|
|
434
|
-
###
|
|
428
|
+
### โ Forbidden AI Tropes
|
|
429
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
430
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
431
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
435
432
|
|
|
433
|
+
### โ
Pre-Flight Self-Audit
|
|
436
434
|
```
|
|
437
|
-
โ
|
|
438
|
-
โ
|
|
439
|
-
โ
|
|
440
|
-
โ
|
|
441
|
-
โ
Are CloudWatch alarms defined for error rates AND latency?
|
|
442
|
-
โ
Is auto-rollback configured on the ECS service circuit breaker?
|
|
443
|
-
โ
Are hardcoded account IDs / region strings replaced with data sources?
|
|
435
|
+
โ
Did I rely ONLY on real, verified tools and methods?
|
|
436
|
+
โ
Is this solution appropriately scoped to the user's constraints?
|
|
437
|
+
โ
Did I handle potential failure modes and edge cases?
|
|
438
|
+
โ
Have I avoided generic boilerplate that doesn't add value?
|
|
444
439
|
```
|
|
445
440
|
|
|
446
441
|
### ๐ Verification-Before-Completion (VBC) Protocol
|
|
447
|
-
|
|
448
442
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
449
|
-
|
|
450
|
-
-
|
|
451
|
-
- โ
**Required**: Run `terraform plan` with zero unexpected changes AND `terraform apply` successfully completes before marking infrastructure work as done.
|
|
443
|
+
- โ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
444
|
+
- โ
**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: cobejs
|
|
3
3
|
description: Build lightweight, hardware-accelerated 3D interactive animated globes and web orbs using Cobe WebGL.
|
|
4
|
-
version:
|
|
5
|
-
last-updated: 2026-07
|
|
4
|
+
version: 4.0.0
|
|
5
|
+
last-updated: 2026-09-07
|
|
6
6
|
skills:
|
|
7
7
|
- 60fps-animation
|
|
8
8
|
- motion-engineering
|
|
@@ -27,6 +27,12 @@ Before building WebGL 3D globe components with Cobe, you MUST inspect:
|
|
|
27
27
|
|
|
28
28
|
Integrate ultra-fast, 5KB WebGL interactive globes for landing page hero sections and interactive location maps.
|
|
29
29
|
|
|
30
|
+
|
|
31
|
+
## Activation Boundaries
|
|
32
|
+
|
|
33
|
+
- **Activate when:** Operating in tasks requiring Build lightweight, hardware-accelerated 3D interactive animated globes and web orbs using Cobe WebGL..
|
|
34
|
+
- **DO NOT activate when:** The task falls strictly outside cobejs domain or belongs to a different dedicated specialist.
|
|
35
|
+
|
|
30
36
|
---
|
|
31
37
|
|
|
32
38
|
## Cobe Canvas Setup Recipe (React)
|
|
@@ -77,27 +83,25 @@ export function InteractiveGlobe() {
|
|
|
77
83
|
|
|
78
84
|
---
|
|
79
85
|
|
|
80
|
-
##
|
|
86
|
+
## ๐๏ธ Tribunal Verification & Guardrails
|
|
81
87
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
---
|
|
88
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
89
|
+
**Active reviewers: `logic-reviewer` ยท `security-auditor`**
|
|
86
90
|
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
**
|
|
91
|
+
### โ Forbidden AI Tropes
|
|
92
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
93
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
94
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
90
95
|
|
|
91
96
|
### โ
Pre-Flight Self-Audit
|
|
92
|
-
|
|
93
97
|
```
|
|
94
|
-
โ
|
|
95
|
-
โ
Is
|
|
98
|
+
โ
Did I rely ONLY on real, verified tools and methods?
|
|
99
|
+
โ
Is this solution appropriately scoped to the user's constraints?
|
|
100
|
+
โ
Did I handle potential failure modes and edge cases?
|
|
101
|
+
โ
Have I avoided generic boilerplate that doesn't add value?
|
|
96
102
|
```
|
|
97
103
|
|
|
98
104
|
### ๐ Verification-Before-Completion (VBC) Protocol
|
|
99
|
-
|
|
100
105
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
101
|
-
|
|
102
106
|
- โ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
103
107
|
- โ
**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: code-review-checklist
|
|
3
3
|
description: Code review guidelines covering code quality, security, and best practices.
|
|
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
|
- lint-and-validate
|
|
@@ -25,7 +25,11 @@ Before performing code reviews or writing PR comments, you MUST inspect:
|
|
|
25
25
|
2. Context Window Discipline (Section 120) โ Quote concise 1-3 line snippets with line numbers; ban pasting massive blocks of unchanged code
|
|
26
26
|
3. Anti-Nitpicking Rule (Section 130) โ Delegate syntax/formatting formatting checks to linters (`eslint`/Prettier); focus reviews on logic and security
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
|
|
29
|
+
## Activation Boundaries
|
|
30
|
+
|
|
31
|
+
- **Activate when:** Operating in tasks requiring Code review guidelines covering code quality, security, and best practices..
|
|
32
|
+
- **DO NOT activate when:** The task falls strictly outside code-review-checklist domain or belongs to a different dedicated specialist.
|
|
29
33
|
|
|
30
34
|
---
|
|
31
35
|
|
|
@@ -182,69 +186,17 @@ AI coding assistants often fall into specific bad habits when dealing with this
|
|
|
182
186
|
|
|
183
187
|
---
|
|
184
188
|
|
|
185
|
-
|
|
186
|
-
**Active reviewers: `logic-reviewer` ยท `security-auditor`**
|
|
187
|
-
|
|
188
|
-
### โ Forbidden AI Tropes
|
|
189
|
-
|
|
190
|
-
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
191
|
-
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
192
|
-
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
193
|
-
|
|
194
|
-
Review these questions before confirming output:
|
|
195
|
-
|
|
196
|
-
```
|
|
197
|
-
โ
Did I rely ONLY on real, verified tools and methods?
|
|
198
|
-
โ
Is this solution appropriately scoped to the user's constraints?
|
|
199
|
-
โ
Did I handle potential failure modes and edge cases?
|
|
200
|
-
โ
Have I avoided generic boilerplate that doesn't add value?
|
|
201
|
-
```
|
|
202
|
-
|
|
203
|
-
### ๐ Verification-Before-Completion (VBC) Protocol
|
|
204
|
-
|
|
205
|
-
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
206
|
-
|
|
207
|
-
- โ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
208
|
-
- โ
**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.
|
|
209
|
-
|
|
210
|
-
## Pre-Flight Checklist
|
|
211
|
-
|
|
212
|
-
- [ ] Have I reviewed the user's specific constraints and requests?
|
|
213
|
-
- [ ] Have I checked the environment for relevant existing implementations?
|
|
214
|
-
|
|
215
|
-
## VBC Protocol (Verification-Before-Completion)
|
|
216
|
-
|
|
217
|
-
You MUST verify existing code signatures and variables before attempting to modify or call them. No hallucination is permitted.
|
|
218
|
-
|
|
219
|
-
---
|
|
220
|
-
|
|
221
|
-
## ๐ค LLM-Specific Traps
|
|
222
|
-
|
|
223
|
-
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
224
|
-
|
|
225
|
-
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
226
|
-
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
227
|
-
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
228
|
-
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
229
|
-
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
230
|
-
|
|
231
|
-
---
|
|
232
|
-
|
|
233
|
-
## ๐๏ธ Tribunal Integration (Anti-Hallucination)
|
|
189
|
+
## ๐๏ธ Tribunal Verification & Guardrails
|
|
234
190
|
|
|
235
191
|
**Slash command: `/review` or `/tribunal-full`**
|
|
236
192
|
**Active reviewers: `logic-reviewer` ยท `security-auditor`**
|
|
237
193
|
|
|
238
194
|
### โ Forbidden AI Tropes
|
|
239
|
-
|
|
240
195
|
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
241
196
|
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
242
197
|
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
243
198
|
|
|
244
199
|
### โ
Pre-Flight Self-Audit
|
|
245
|
-
|
|
246
|
-
Review these questions before confirming output:
|
|
247
|
-
|
|
248
200
|
```
|
|
249
201
|
โ
Did I rely ONLY on real, verified tools and methods?
|
|
250
202
|
โ
Is this solution appropriately scoped to the user's constraints?
|
|
@@ -253,8 +205,6 @@ Review these questions before confirming output:
|
|
|
253
205
|
```
|
|
254
206
|
|
|
255
207
|
### ๐ Verification-Before-Completion (VBC) Protocol
|
|
256
|
-
|
|
257
208
|
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
258
|
-
|
|
259
209
|
- โ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
260
210
|
- โ
**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.
|