tribunal-kit 6.0.1 → 7.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.
Files changed (349) hide show
  1. package/.agent/ARCHITECTURE.md +9 -6
  2. package/.agent/agents/accessibility-reviewer.md +23 -16
  3. package/.agent/agents/ai-code-reviewer.md +25 -21
  4. package/.agent/agents/anti-pattern-reviewer.md +12 -7
  5. package/.agent/agents/api-architect.md +1 -0
  6. package/.agent/agents/backend-specialist.md +23 -22
  7. package/.agent/agents/cloud-engineer.md +1 -0
  8. package/.agent/agents/code-archaeologist.md +1 -0
  9. package/.agent/agents/complexity-reviewer.md +10 -7
  10. package/.agent/agents/database-architect.md +3 -2
  11. package/.agent/agents/db-latency-auditor.md +6 -2
  12. package/.agent/agents/debugger.md +3 -2
  13. package/.agent/agents/dependency-reviewer.md +1 -0
  14. package/.agent/agents/devops-engineer.md +9 -8
  15. package/.agent/agents/documentation-writer.md +6 -5
  16. package/.agent/agents/explorer-agent.md +1 -0
  17. package/.agent/agents/frontend-reviewer.md +21 -17
  18. package/.agent/agents/frontend-specialist.md +23 -20
  19. package/.agent/agents/game-developer.md +1 -0
  20. package/.agent/agents/interaction-reviewer.md +10 -5
  21. package/.agent/agents/logic-reviewer.md +3 -0
  22. package/.agent/agents/minimalist-reviewer.md +6 -0
  23. package/.agent/agents/mobile-developer.md +7 -6
  24. package/.agent/agents/mobile-reviewer.md +14 -13
  25. package/.agent/agents/orchestrator.md +3 -0
  26. package/.agent/agents/penetration-tester.md +1 -0
  27. package/.agent/agents/performance-optimizer.md +6 -5
  28. package/.agent/agents/performance-reviewer.md +6 -6
  29. package/.agent/agents/pipeline-reviewer.md +144 -0
  30. package/.agent/agents/precedence-reviewer.md +1 -0
  31. package/.agent/agents/product-manager.md +1 -0
  32. package/.agent/agents/product-owner.md +1 -0
  33. package/.agent/agents/product-reviewer.md +12 -7
  34. package/.agent/agents/project-planner.md +3 -0
  35. package/.agent/agents/qa-automation-engineer.md +50 -43
  36. package/.agent/agents/resilience-reviewer.md +1 -0
  37. package/.agent/agents/schema-reviewer.md +1 -0
  38. package/.agent/agents/security-auditor.md +24 -24
  39. package/.agent/agents/seo-specialist.md +33 -23
  40. package/.agent/agents/sql-reviewer.md +5 -4
  41. package/.agent/agents/supervisor-agent.md +12 -2
  42. package/.agent/agents/swarm-worker-contracts.md +13 -13
  43. package/.agent/agents/swarm-worker-registry.md +51 -51
  44. package/.agent/agents/system-architect.md +1 -0
  45. package/.agent/agents/test-coverage-reviewer.md +25 -22
  46. package/.agent/agents/test-engineer.md +12 -11
  47. package/.agent/agents/throughput-optimizer.md +45 -40
  48. package/.agent/agents/type-safety-reviewer.md +5 -4
  49. package/.agent/agents/ui-ux-auditor.md +6 -4
  50. package/.agent/agents/ui-visual-auditor.md +3 -0
  51. package/.agent/agents/ux-reviewer.md +11 -6
  52. package/.agent/agents/visual-reviewer.md +11 -6
  53. package/.agent/agents/vitals-reviewer.md +5 -4
  54. package/.agent/history/memory/.memory.idx +1532 -1
  55. package/.agent/history/memory/MEMORY.md +102 -1
  56. package/.agent/mcp_config.json +1 -6
  57. package/.agent/routing_index.json +2033 -263
  58. package/.agent/rules/GEMINI.md +11 -9
  59. package/.agent/rules/GEMINI_PLANNER.md +19 -21
  60. package/.agent/scripts/_colors.js +52 -54
  61. package/.agent/scripts/_utils.js +52 -53
  62. package/.agent/scripts/auto_preview.js +39 -43
  63. package/.agent/scripts/bundle_analyzer.js +47 -60
  64. package/.agent/scripts/case_law_manager.js +200 -294
  65. package/.agent/scripts/checklist.js +73 -94
  66. package/.agent/scripts/cicd_validator.js +305 -0
  67. package/.agent/scripts/compile_router.py +4 -111
  68. package/.agent/scripts/context_broker.js +317 -412
  69. package/.agent/scripts/contract_engine.js +402 -0
  70. package/.agent/scripts/dependency_analyzer.js +112 -124
  71. package/.agent/scripts/graph_builder.js +75 -103
  72. package/.agent/scripts/graph_visualizer.js +10 -12
  73. package/.agent/scripts/graph_zoom.js +38 -55
  74. package/.agent/scripts/guardrail_engine.js +195 -145
  75. package/.agent/scripts/impact_classifier.js +55 -30
  76. package/.agent/scripts/inner_loop_validator.js +108 -159
  77. package/.agent/scripts/integrity_manifest.js +59 -67
  78. package/.agent/scripts/lint_runner.js +65 -75
  79. package/.agent/scripts/marathon_harness.js +131 -208
  80. package/.agent/scripts/migrate_skills_frontmatter.py +4 -63
  81. package/.agent/scripts/minify_context.js +29 -33
  82. package/.agent/scripts/minimal_change_engine.js +95 -87
  83. package/.agent/scripts/mutation_runner.js +46 -62
  84. package/.agent/scripts/pipeline_engine.js +320 -209
  85. package/.agent/scripts/prompt_compiler.js +118 -93
  86. package/.agent/scripts/schema_validator.js +73 -121
  87. package/.agent/scripts/security_scan.js +88 -117
  88. package/.agent/scripts/session_manager.js +52 -69
  89. package/.agent/scripts/signal_detector.js +24 -22
  90. package/.agent/scripts/skill_evolution.js +184 -245
  91. package/.agent/scripts/skill_integrator.js +35 -48
  92. package/.agent/scripts/socratic_gate_policy.js +15 -12
  93. package/.agent/scripts/strengthen_skills.js +29 -33
  94. package/.agent/scripts/swarm_dispatcher.js +120 -151
  95. package/.agent/scripts/test_runner.js +54 -56
  96. package/.agent/scripts/token_budget_broker.js +9 -7
  97. package/.agent/scripts/trace_engine.js +126 -0
  98. package/.agent/scripts/verify_all.js +76 -93
  99. package/.agent/scripts/visual_audit.js +16 -21
  100. package/.agent/skill_topic_map.json +22 -3
  101. package/.agent/skills/12-principles-of-animation/SKILL.md +7 -0
  102. package/.agent/skills/60fps-animation/SKILL.md +7 -0
  103. package/.agent/skills/accessible-animation/SKILL.md +5 -1
  104. package/.agent/skills/adapt/SKILL.md +7 -1
  105. package/.agent/skills/advanced-rag-pipelines/SKILL.md +1 -0
  106. package/.agent/skills/agent-organizer/SKILL.md +1 -0
  107. package/.agent/skills/agentic-patterns/SKILL.md +33 -25
  108. package/.agent/skills/agentic-workflows-2026/SKILL.md +6 -2
  109. package/.agent/skills/ai-app-hardening/SKILL.md +9 -8
  110. package/.agent/skills/ai-prompt-injection-defense/SKILL.md +7 -6
  111. package/.agent/skills/animation-on-scroll/SKILL.md +24 -15
  112. package/.agent/skills/animation-systems/SKILL.md +11 -10
  113. package/.agent/skills/antfu-conventions/SKILL.md +7 -2
  114. package/.agent/skills/api-patterns/SKILL.md +14 -10
  115. package/.agent/skills/api-security-auditor/SKILL.md +15 -14
  116. package/.agent/skills/app-builder/SKILL.md +1 -0
  117. package/.agent/skills/app-builder/templates/nextjs-fullstack/TEMPLATE.md +2 -2
  118. package/.agent/skills/app-builder/templates/nextjs-saas/TEMPLATE.md +1 -1
  119. package/.agent/skills/app-builder/templates/nextjs-static/TEMPLATE.md +12 -12
  120. package/.agent/skills/app-builder/templates/nuxt-app/TEMPLATE.md +3 -3
  121. package/.agent/skills/apple-design/SKILL.md +8 -7
  122. package/.agent/skills/architecture/SKILL.md +3 -2
  123. package/.agent/skills/audit-and-fix/SKILL.md +8 -5
  124. package/.agent/skills/authentication-best-practices/SKILL.md +9 -8
  125. package/.agent/skills/backend-security-expert/SKILL.md +1 -0
  126. package/.agent/skills/baseline-ui/SKILL.md +8 -7
  127. package/.agent/skills/bash-linux/SKILL.md +1 -0
  128. package/.agent/skills/behavioral-modes/SKILL.md +1 -0
  129. package/.agent/skills/better-colors/SKILL.md +11 -7
  130. package/.agent/skills/better-typography/SKILL.md +30 -16
  131. package/.agent/skills/better-ui/SKILL.md +17 -10
  132. package/.agent/skills/bolder/SKILL.md +6 -0
  133. package/.agent/skills/brainstorming/SKILL.md +6 -4
  134. package/.agent/skills/browser-native-ai/SKILL.md +5 -4
  135. package/.agent/skills/build-primitive/SKILL.md +5 -0
  136. package/.agent/skills/building-native-ui/SKILL.md +1 -0
  137. package/.agent/skills/cicd-pro/SKILL.md +2 -1
  138. package/.agent/skills/clarify/SKILL.md +19 -14
  139. package/.agent/skills/clean-code/SKILL.md +16 -15
  140. package/.agent/skills/cloud-architect/SKILL.md +1 -0
  141. package/.agent/skills/cobejs/SKILL.md +7 -9
  142. package/.agent/skills/code-review-checklist/SKILL.md +1 -0
  143. package/.agent/skills/codebase-design/SKILL.md +7 -2
  144. package/.agent/skills/colorize/SKILL.md +8 -3
  145. package/.agent/skills/compact-landing/SKILL.md +8 -3
  146. package/.agent/skills/company-logos/SKILL.md +6 -0
  147. package/.agent/skills/config-validator/SKILL.md +10 -9
  148. package/.agent/skills/containerization-pro/SKILL.md +6 -5
  149. package/.agent/skills/context-engineering-pro/SKILL.md +5 -4
  150. package/.agent/skills/create-design-md/SKILL.md +13 -5
  151. package/.agent/skills/critique/SKILL.md +10 -8
  152. package/.agent/skills/csharp-developer/SKILL.md +1 -0
  153. package/.agent/skills/data-validation-schemas/SKILL.md +28 -23
  154. package/.agent/skills/database-design/SKILL.md +2 -1
  155. package/.agent/skills/delight/SKILL.md +6 -0
  156. package/.agent/skills/deployment-procedures/SKILL.md +2 -1
  157. package/.agent/skills/design-lab/SKILL.md +5 -0
  158. package/.agent/skills/devops-engineer/SKILL.md +3 -2
  159. package/.agent/skills/devops-incident-responder/SKILL.md +2 -1
  160. package/.agent/skills/diagnosing-bugs/SKILL.md +12 -2
  161. package/.agent/skills/distill/SKILL.md +7 -2
  162. package/.agent/skills/documentation-templates/SKILL.md +3 -2
  163. package/.agent/skills/domain-modeling/SKILL.md +12 -4
  164. package/.agent/skills/duckdb-analytical-sql/SKILL.md +7 -3
  165. package/.agent/skills/edge-ai-mobile/SKILL.md +5 -1
  166. package/.agent/skills/edge-computing/SKILL.md +9 -8
  167. package/.agent/skills/emil-design-eng/SKILL.md +43 -27
  168. package/.agent/skills/error-resilience/SKILL.md +34 -16
  169. package/.agent/skills/expo-router-v4/SKILL.md +2 -1
  170. package/.agent/skills/extract-design-system/SKILL.md +12 -11
  171. package/.agent/skills/fabel-protocol/SKILL.md +24 -17
  172. package/.agent/skills/fixing-accessibility/SKILL.md +23 -16
  173. package/.agent/skills/fixing-metadata/SKILL.md +24 -13
  174. package/.agent/skills/fixing-motion-performance/SKILL.md +7 -5
  175. package/.agent/skills/framer-motion-expert/SKILL.md +29 -15
  176. package/.agent/skills/frontend-design/SKILL.md +21 -13
  177. package/.agent/skills/frontend-security-expert/SKILL.md +1 -0
  178. package/.agent/skills/game-design-expert/SKILL.md +1 -0
  179. package/.agent/skills/game-engineering-expert/SKILL.md +1 -0
  180. package/.agent/skills/generative-ui-expert/SKILL.md +3 -2
  181. package/.agent/skills/geo-fundamentals/SKILL.md +2 -1
  182. package/.agent/skills/git-pro/SKILL.md +10 -9
  183. package/.agent/skills/github-operations/SKILL.md +2 -1
  184. package/.agent/skills/gpt-taste/SKILL.md +7 -0
  185. package/.agent/skills/gsap-core/SKILL.md +26 -22
  186. package/.agent/skills/gsap-frameworks/SKILL.md +6 -5
  187. package/.agent/skills/gsap-performance/SKILL.md +4 -3
  188. package/.agent/skills/gsap-plugins/SKILL.md +34 -33
  189. package/.agent/skills/gsap-react/SKILL.md +9 -8
  190. package/.agent/skills/gsap-scrolltrigger/SKILL.md +34 -33
  191. package/.agent/skills/gsap-timeline/SKILL.md +18 -15
  192. package/.agent/skills/gsap-utils/SKILL.md +25 -24
  193. package/.agent/skills/harden/SKILL.md +9 -3
  194. package/.agent/skills/harness-protocol/SKILL.md +1 -0
  195. package/.agent/skills/i18n-localization/SKILL.md +10 -9
  196. package/.agent/skills/impeccable/SKILL.md +5 -0
  197. package/.agent/skills/improve-codebase-architecture/SKILL.md +10 -5
  198. package/.agent/skills/improve-ui/SKILL.md +12 -5
  199. package/.agent/skills/intelligent-routing/SKILL.md +7 -6
  200. package/.agent/skills/knowledge-graph/SKILL.md +1 -0
  201. package/.agent/skills/landing-page/SKILL.md +1 -0
  202. package/.agent/skills/lint-and-validate/SKILL.md +9 -4
  203. package/.agent/skills/llm-engineering/SKILL.md +55 -54
  204. package/.agent/skills/local-first/SKILL.md +20 -19
  205. package/.agent/skills/local-first-architecture/SKILL.md +6 -1
  206. package/.agent/skills/lottie-animation/SKILL.md +7 -3
  207. package/.agent/skills/marquee-loop/SKILL.md +1 -0
  208. package/.agent/skills/masked-reveal/SKILL.md +17 -4
  209. package/.agent/skills/mcp-builder/SKILL.md +13 -10
  210. package/.agent/skills/micro-interaction/SKILL.md +20 -5
  211. package/.agent/skills/mobile-design/SKILL.md +26 -15
  212. package/.agent/skills/monorepo-management/SKILL.md +3 -2
  213. package/.agent/skills/morphing-icons/SKILL.md +16 -6
  214. package/.agent/skills/motion-engineering/SKILL.md +19 -15
  215. package/.agent/skills/nextjs-react-expert/SKILL.md +26 -21
  216. package/.agent/skills/nodejs-best-practices/SKILL.md +89 -76
  217. package/.agent/skills/observability/SKILL.md +45 -44
  218. package/.agent/skills/opentelemetry-observability/SKILL.md +2 -1
  219. package/.agent/skills/page-transition-animation/SKILL.md +6 -3
  220. package/.agent/skills/parallel-agents/SKILL.md +7 -2
  221. package/.agent/skills/performance-profiling/SKILL.md +24 -13
  222. package/.agent/skills/plan-writing/SKILL.md +1 -0
  223. package/.agent/skills/platform-engineer/SKILL.md +3 -2
  224. package/.agent/skills/platform-engineering-opentofu/SKILL.md +1 -0
  225. package/.agent/skills/playwright-ai-e2e/SKILL.md +3 -2
  226. package/.agent/skills/playwright-best-practices/SKILL.md +29 -28
  227. package/.agent/skills/polish/SKILL.md +13 -12
  228. package/.agent/skills/powershell-windows/SKILL.md +1 -0
  229. package/.agent/skills/pricing-page/SKILL.md +8 -3
  230. package/.agent/skills/product-aware-heuristics/SKILL.md +122 -72
  231. package/.agent/skills/progressive-blur/SKILL.md +9 -4
  232. package/.agent/skills/project-idioms/SKILL.md +1 -0
  233. package/.agent/skills/property-based-testing/SKILL.md +10 -12
  234. package/.agent/skills/python-patterns/SKILL.md +1 -0
  235. package/.agent/skills/python-pro/SKILL.md +1 -0
  236. package/.agent/skills/quieter/SKILL.md +6 -0
  237. package/.agent/skills/react-doctor/SKILL.md +6 -0
  238. package/.agent/skills/react-specialist/SKILL.md +32 -28
  239. package/.agent/skills/readme-builder/SKILL.md +1 -0
  240. package/.agent/skills/realtime-patterns/SKILL.md +34 -33
  241. package/.agent/skills/red-team-tactics/SKILL.md +1 -0
  242. package/.agent/skills/redesign-skill/SKILL.md +6 -0
  243. package/.agent/skills/review-animations/SKILL.md +5 -2
  244. package/.agent/skills/review-animations/STANDARDS.md +37 -23
  245. package/.agent/skills/rust-pro/SKILL.md +1 -0
  246. package/.agent/skills/seo-fundamentals/SKILL.md +4 -3
  247. package/.agent/skills/server-management/SKILL.md +1 -0
  248. package/.agent/skills/shadcn-ui-expert/SKILL.md +28 -22
  249. package/.agent/skills/shape/SKILL.md +9 -2
  250. package/.agent/skills/skill-creator/SKILL.md +1 -0
  251. package/.agent/skills/soft-skill/SKILL.md +6 -0
  252. package/.agent/skills/sounds-on-the-web/SKILL.md +1 -0
  253. package/.agent/skills/sql-pro/SKILL.md +1 -0
  254. package/.agent/skills/supabase-postgres-best-practices/SKILL.md +1 -0
  255. package/.agent/skills/svg-animation/SKILL.md +16 -7
  256. package/.agent/skills/swiftui-expert/SKILL.md +1 -0
  257. package/.agent/skills/swiss-design/SKILL.md +5 -0
  258. package/.agent/skills/system-design-pro/SKILL.md +1 -0
  259. package/.agent/skills/systematic-debugging/SKILL.md +1 -0
  260. package/.agent/skills/tailwind-patterns/SKILL.md +25 -11
  261. package/.agent/skills/taste-skill/SKILL.md +6 -0
  262. package/.agent/skills/tdd-workflow/SKILL.md +5 -0
  263. package/.agent/skills/test-result-analyzer/SKILL.md +1 -0
  264. package/.agent/skills/testing-patterns/SKILL.md +123 -115
  265. package/.agent/skills/thermo-nuclear-code-quality-review/SKILL.md +5 -0
  266. package/.agent/skills/thinking-protocol/SKILL.md +3 -0
  267. package/.agent/skills/to-spring-or-not-to-spring/SKILL.md +9 -8
  268. package/.agent/skills/transitions-dev/SKILL.md +19 -6
  269. package/.agent/skills/trend-researcher/SKILL.md +1 -0
  270. package/.agent/skills/typescript-advanced/SKILL.md +23 -18
  271. package/.agent/skills/typeset/SKILL.md +10 -1
  272. package/.agent/skills/ui-reasoning-engine/SKILL.md +67 -48
  273. package/.agent/skills/ui-skill-packs/SKILL.md +6 -1
  274. package/.agent/skills/ui-skills-root/SKILL.md +39 -38
  275. package/.agent/skills/ui-ux-pro-max/SKILL.md +34 -26
  276. package/.agent/skills/ui-ux-researcher/SKILL.md +1 -0
  277. package/.agent/skills/vector-search-pgvector/SKILL.md +3 -2
  278. package/.agent/skills/vue-expert/SKILL.md +22 -19
  279. package/.agent/skills/vulnerability-scanner/SKILL.md +22 -21
  280. package/.agent/skills/web-accessibility-auditor/SKILL.md +2 -1
  281. package/.agent/skills/web-design-guidelines/SKILL.md +16 -10
  282. package/.agent/skills/web-quality-audit/SKILL.md +5 -0
  283. package/.agent/skills/webapp-testing/SKILL.md +14 -13
  284. package/.agent/skills/webgpu-performance/SKILL.md +1 -0
  285. package/.agent/skills/whimsy-injector/SKILL.md +9 -5
  286. package/.agent/skills/workflow-optimizer/SKILL.md +1 -0
  287. package/.agent/skills/zero-trust-passkeys/SKILL.md +11 -6
  288. package/.agent/templates/DESIGN.md +119 -110
  289. package/.agent/templates/design-tokens.json +9 -6
  290. package/.agent/workflows/acf.md +1 -0
  291. package/.agent/workflows/api-tester.md +1 -0
  292. package/.agent/workflows/audit.md +1 -0
  293. package/.agent/workflows/brainstorm.md +1 -0
  294. package/.agent/workflows/changelog.md +1 -0
  295. package/.agent/workflows/contract.md +60 -0
  296. package/.agent/workflows/create.md +1 -0
  297. package/.agent/workflows/debug.md +1 -0
  298. package/.agent/workflows/deploy.md +1 -0
  299. package/.agent/workflows/enhance.md +1 -0
  300. package/.agent/workflows/fix-ci.md +89 -0
  301. package/.agent/workflows/fix.md +1 -0
  302. package/.agent/workflows/generate.md +1 -0
  303. package/.agent/workflows/marathon.md +1 -0
  304. package/.agent/workflows/migrate.md +1 -0
  305. package/.agent/workflows/minimal.md +9 -7
  306. package/.agent/workflows/orchestrate.md +1 -0
  307. package/.agent/workflows/performance-benchmarker.md +1 -0
  308. package/.agent/workflows/pipeline.md +26 -21
  309. package/.agent/workflows/plan.md +1 -0
  310. package/.agent/workflows/preview.md +1 -0
  311. package/.agent/workflows/refactor.md +3 -2
  312. package/.agent/workflows/review-ai.md +4 -3
  313. package/.agent/workflows/review.md +1 -0
  314. package/.agent/workflows/session.md +1 -0
  315. package/.agent/workflows/status.md +1 -0
  316. package/.agent/workflows/strengthen-skills.md +1 -0
  317. package/.agent/workflows/super-prompt.md +1 -0
  318. package/.agent/workflows/swarm.md +15 -3
  319. package/.agent/workflows/test.md +8 -7
  320. package/.agent/workflows/tribunal-backend.md +3 -2
  321. package/.agent/workflows/tribunal-cicd.md +104 -0
  322. package/.agent/workflows/tribunal-database.md +1 -0
  323. package/.agent/workflows/tribunal-frontend.md +8 -6
  324. package/.agent/workflows/tribunal-full.md +2 -1
  325. package/.agent/workflows/tribunal-mobile.md +6 -5
  326. package/.agent/workflows/tribunal-performance.md +1 -0
  327. package/.agent/workflows/tribunal-speed.md +1 -0
  328. package/.agent/workflows/tribunal-ui.md +29 -21
  329. package/.agent/workflows/ui-ux-pro-max.md +19 -15
  330. package/CONTRIBUTING.md +3 -3
  331. package/README.md +94 -44
  332. package/SECURITY.md +10 -10
  333. package/bin/mcp-server.js +385 -252
  334. package/bin/tribunal-kit.js +29 -30
  335. package/bin/wrapper.js +40 -46
  336. package/dist/cli.js +6 -0
  337. package/dist/commands/case.js +2 -0
  338. package/dist/commands/contract.js +440 -0
  339. package/dist/commands/status.js +6 -0
  340. package/dist/index.d.ts +8 -1
  341. package/package.json +13 -12
  342. package/scripts/benchmark.js +62 -86
  343. package/scripts/changelog.js +67 -73
  344. package/scripts/fix-vbc.js +13 -15
  345. package/scripts/fix-vbc.ps1 +2 -118
  346. package/scripts/stress_benchmark.js +358 -0
  347. package/scripts/sync-version.js +71 -41
  348. package/scripts/validate-payload.js +23 -30
  349. package/scripts/visual_audit.js +23 -13
@@ -22,6 +22,7 @@ $ARGUMENTS
22
22
  ## Mandatory Pre-Flight Context Inspection
23
23
 
24
24
  Before running framework upgrades, major dependency bumps, or database migrations, you MUST inspect:
25
+
25
26
  1. Dependency Compatibility Matrix (`dependency_analyzer.js`) → Verify target version peer dependencies and breaking changes
26
27
  2. Database Expand-and-Contract Plan (`schema_validator.js`) → Ensure database column changes add new fields before dropping old ones
27
28
  3. Rollback Protocol Verification → Test local rollback procedure (e.g. SQLite backup or DB transaction revert) before applying migration
@@ -20,6 +20,7 @@ $ARGUMENTS
20
20
  ## Mandatory Pre-Flight Context Inspection
21
21
 
22
22
  Before proposing any code change, you MUST evaluate the **10 Core Governance Questions**:
23
+
23
24
  1. Does anything need to change? (`NO_CHANGE`)
24
25
  2. Does the repository already solve this? (`REUSE`)
25
26
  3. Does an existing function, component, utility, service, or abstraction solve it? (`REUSE`)
@@ -35,19 +36,20 @@ Before proposing any code change, you MUST evaluate the **10 Core Governance Que
35
36
 
36
37
  ## Sub-Commands
37
38
 
38
- | Command | Description |
39
- | :--- | :--- |
40
- | `/minimal` | Analyze requested implementation and determine smallest viable change footprint |
41
- | `/minimal-review` | Review proposed change diff for unnecessary complexity and file proliferation |
42
- | `/change-budget` | Display estimated Change Budget (files added/modified, lines, deps, abstractions) |
43
- | `/complexity-audit` | Audit proposal for 14 standardized complexity flags and overengineering patterns |
44
- | `/reuse-check` | Search repository for existing functions, symbols, and utilities before creating code |
39
+ | Command | Description |
40
+ | :------------------ | :------------------------------------------------------------------------------------ |
41
+ | `/minimal` | Analyze requested implementation and determine smallest viable change footprint |
42
+ | `/minimal-review` | Review proposed change diff for unnecessary complexity and file proliferation |
43
+ | `/change-budget` | Display estimated Change Budget (files added/modified, lines, deps, abstractions) |
44
+ | `/complexity-audit` | Audit proposal for 14 standardized complexity flags and overengineering patterns |
45
+ | `/reuse-check` | Search repository for existing functions, symbols, and utilities before creating code |
45
46
 
46
47
  ---
47
48
 
48
49
  ## Decision Order Hierarchy
49
50
 
50
51
  Evaluate solutions strictly in this order:
52
+
51
53
  ```
52
54
  NO_CHANGE ➔ REUSE ➔ CONFIGURE ➔ DELETE ➔ MODIFY ➔ EXTEND ➔ CREATE
53
55
  ```
@@ -21,6 +21,7 @@ $ARGUMENTS
21
21
  ## Mandatory Pre-Flight Context Inspection
22
22
 
23
23
  Before dispatching multi-agent orchestrations or parallel sub-task workers, you MUST inspect:
24
+
24
25
  1. Orchestrator Payload Validator (`swarm_dispatcher.js`) → Validate subagent payload contracts and JSON schema before fan-out
25
26
  2. Context Window Budget Allocation → Provide scoped `context_summary` per worker; ban dumping full conversation history to workers
26
27
  3. Fan-In Synthesis & Human Gate → Collect all worker outputs via `Promise.allSettled()` pattern and present unified synthesis before writing disk changes
@@ -21,6 +21,7 @@ $ARGUMENTS
21
21
  ## Mandatory Pre-Flight Context Inspection
22
22
 
23
23
  Before running performance benchmarks or capturing latency metrics, you MUST inspect:
24
+
24
25
  1. Target App Environment & Build Command (`package.json`) → Confirm production build output and dev/preview server URL
25
26
  2. Benchmark Scripts Availability (`.agent/scripts/bundle_analyzer.js`) → Verify automated bundle and latency measurement tooling
26
27
  3. Before/After Metric Recording Constraint → Require side-by-side metric tables (LCP, CLS, INP, TTFB, Bundle Size) for every benchmark pass
@@ -22,18 +22,19 @@ $ARGUMENTS
22
22
  ## Mandatory Pre-Flight Context Inspection
23
23
 
24
24
  Before running 3-pass pipeline generation, you MUST inspect:
25
+
25
26
  1. Pipeline Engine Script (`.agent/scripts/pipeline_engine.js`) → Verify availability and options (`--task`, `--file`, `--phase`)
26
27
  2. Context Token Allocation -> Keep Pass 2 builder prompt under 2,500 tokens (loading max 3 essential skill key-rules)
27
28
  3. Zero-LLM Pass 3 Validator → Run deterministic security, lint, and type checks on generated code prior to Human Gate submission
28
29
 
29
30
  ## When to Use /pipeline
30
31
 
31
- | Use `/pipeline` when... | Use something else when... |
32
- | :---------------------------------------------- | :--------------------------------------------- |
33
- | Code generation quality is the top priority | Quick single-line fix → direct edit |
34
- | Context window saturation is causing weak output | Need full tribunal review → `/generate` |
35
- | Building UI components, APIs, or complex logic | Exploring options → `/brainstorm` |
36
- | You want maximum LLM attention on code synthesis | Planning architecture → `/plan` |
32
+ | Use `/pipeline` when... | Use something else when... |
33
+ | :----------------------------------------------- | :-------------------------------------- |
34
+ | Code generation quality is the top priority | Quick single-line fix → direct edit |
35
+ | Context window saturation is causing weak output | Need full tribunal review → `/generate` |
36
+ | Building UI components, APIs, or complex logic | Exploring options → `/brainstorm` |
37
+ | You want maximum LLM attention on code synthesis | Planning architecture → `/plan` |
37
38
 
38
39
  ---
39
40
 
@@ -65,6 +66,7 @@ Output: Structured spec JSON with task_type, stack, essential_skills, and constr
65
66
  ## Phase 2 — Build (Focused Generation)
66
67
 
67
68
  Assembles a minimal prompt containing ONLY:
69
+
68
70
  - The spec from Phase 1
69
71
  - 2-3 essential skill key-rules (condensed)
70
72
  - Target file content (if modifying existing code)
@@ -74,6 +76,7 @@ node .agent/scripts/pipeline_engine.js --task "$TASK" --file "$FILE" --phase bui
74
76
  ```
75
77
 
76
78
  **What is NOT in the prompt (saving ~10,000 tokens):**
79
+
77
80
  - ❌ Full GEMINI.md master rules
78
81
  - ❌ Agent persona definitions
79
82
  - ❌ Tribunal gate rules
@@ -94,6 +97,7 @@ node .agent/scripts/pipeline_engine.js --phase validate --code ./output.tsx
94
97
  ```
95
98
 
96
99
  Checks:
100
+
97
101
  - ✅ OWASP security patterns (eval, innerHTML, hardcoded secrets, SQL injection)
98
102
  - ✅ TypeScript `any` usage
99
103
  - ✅ Empty catch blocks
@@ -111,6 +115,7 @@ node .agent/scripts/pipeline_engine.js --task "$TASK" --file "$FILE" --output re
111
115
  ```
112
116
 
113
117
  Or in dry-run mode:
118
+
114
119
  ```bash
115
120
  node .agent/scripts/pipeline_engine.js --task "$TASK" --file "$FILE" --dry-run
116
121
  ```
@@ -131,25 +136,25 @@ node .agent/scripts/pipeline_engine.js --task "$TASK" --file "$FILE" --dry-run
131
136
 
132
137
  ## Comparison: /generate vs /pipeline
133
138
 
134
- | Dimension | `/generate` (current) | `/pipeline` (new) |
135
- | :---------------------------- | :-------------------- | :---------------------- |
136
- | System prompt tokens | ~12,000–18,000 | ~2,500 (Pass 2) |
137
- | % context for actual task | ~11% | ~75% |
138
- | Governance overhead | ~89% | ~25% |
139
- | Post-gen validation | LLM-based (expensive) | Deterministic (free) |
140
- | Skills loaded per generation | 6–10 | 2–3 |
141
- | Self-healing retry | Full re-generation | Targeted feedback loop |
142
- | Backward compatibility | N/A | 100% (additive) |
139
+ | Dimension | `/generate` (current) | `/pipeline` (new) |
140
+ | :--------------------------- | :-------------------- | :--------------------- |
141
+ | System prompt tokens | ~12,000–18,000 | ~2,500 (Pass 2) |
142
+ | % context for actual task | ~11% | ~75% |
143
+ | Governance overhead | ~89% | ~25% |
144
+ | Post-gen validation | LLM-based (expensive) | Deterministic (free) |
145
+ | Skills loaded per generation | 6–10 | 2–3 |
146
+ | Self-healing retry | Full re-generation | Targeted feedback loop |
147
+ | Backward compatibility | N/A | 100% (additive) |
143
148
 
144
149
  ---
145
150
 
146
151
  ## After /pipeline — Next Steps
147
152
 
148
- | Outcome | Next Command |
149
- | :---------------------------- | :---------------------------------- |
150
- | Code generated, needs review | → `/review` for human audit |
151
- | Code has issues after retry | → `/generate` with full tribunal |
152
- | Code passed, ready to test | → `/test` for test generation |
153
- | Code passed, ready to deploy | → `/deploy` with pre-flight checks |
153
+ | Outcome | Next Command |
154
+ | :--------------------------- | :--------------------------------- |
155
+ | Code generated, needs review | → `/review` for human audit |
156
+ | Code has issues after retry | → `/generate` with full tribunal |
157
+ | Code passed, ready to test | → `/test` for test generation |
158
+ | Code passed, ready to deploy | → `/deploy` with pre-flight checks |
154
159
 
155
160
  ---
@@ -20,6 +20,7 @@ $ARGUMENTS
20
20
  ## Mandatory Pre-Flight Context Inspection
21
21
 
22
22
  Before drafting implementation plans or technical blueprints, you MUST inspect:
23
+
23
24
  1. Workspace Context & Dependencies (`package.json`, `tsconfig.json`) → Confirm current stack capabilities and path mappings
24
25
  2. Existing Architecture & Directory Layout → Review current module boundaries to prevent redundant architectural patterns
25
26
  3. Zero Code Modification Rule → Restrict outputs in `/plan` mode to research, architectural design, and plan artifact generation; ban code generation before Plan approval
@@ -20,6 +20,7 @@ $ARGUMENTS
20
20
  ## Mandatory Pre-Flight Context Inspection
21
21
 
22
22
  Before managing dev server lifecycle or starting preview servers, you MUST inspect:
23
+
23
24
  1. Workspace Dev Script Configuration (`package.json`) → Verify `npm run dev` or equivalent start script and framework server port
24
25
  2. Environment Configuration (`.env`) → Check port bindings and dev server host configs
25
26
  3. Dev Server Lifecycle Script (`.agent/scripts/auto_preview.js`) → Use automated script for process management, port collision detection, and health checks
@@ -22,6 +22,7 @@ $ARGUMENTS
22
22
  ## Mandatory Pre-Flight Context Inspection
23
23
 
24
24
  Before executing structural refactoring or extracting interfaces, you MUST inspect:
25
+
25
26
  1. Complete Dependent Map (Grep Importers) → Identify every file importing the target module before touching a single line
26
27
  2. Baseline Test Suite Verification (`test_runner.js`) → Ensure all unit and integration tests pass BEFORE initiating refactor steps
27
28
  3. Observable Behavior Preservation → Enforce zero change in public function behavior or API contracts; verify tests pass cleanly after every step
@@ -137,14 +138,14 @@ Rolling forward with broken tests is not refactoring — it's breaking code.
137
138
 
138
139
  ```typescript
139
140
  // Before: inline logic in handler
140
- app.post("/orders", async (req, res) => {
141
+ app.post('/orders', async (req, res) => {
141
142
  const discount = amount > 100 ? amount * 0.9 : amount; // inline
142
143
  // ...
143
144
  });
144
145
 
145
146
  // After: extracted pure function with tests
146
147
  const applyDiscount = (amount: number): number => (amount > 100 ? amount * 0.9 : amount);
147
- app.post("/orders", async (req, res) => {
148
+ app.post('/orders', async (req, res) => {
148
149
  const discount = applyDiscount(amount); // single responsibility
149
150
  // ...
150
151
  });
@@ -21,6 +21,7 @@ $ARGUMENTS
21
21
  ## Mandatory Pre-Flight Context Inspection
22
22
 
23
23
  Before auditing LLM integrations, prompt templates, or AI API calls, you MUST inspect:
24
+
24
25
  1. Target AI Code & SDK Manifests (`package.json`) → Verify official AI SDK versions (Vercel AI SDK `ai`, `@langchain/core`, `openai`, `@google/genai`)
25
26
  2. Prompt Injection Boundary Check → Confirm user inputs are strictly passed via message roles or delimited blocks; ban string concatenation into system prompts
26
27
  3. 3-Reviewer AI Integration Gate → Run ai-code-reviewer, logic-reviewer, and security-auditor before approving AI code diffs
@@ -94,12 +95,12 @@ All model names should be in environment variables, not hardcoded.
94
95
 
95
96
  ```typescript
96
97
  // ❌ CRITICAL: User input in system prompt
97
- messages: [{ role: "system", content: `Help with: ${userQuery}` }];
98
+ messages: [{ role: 'system', content: `Help with: ${userQuery}` }];
98
99
 
99
100
  // ✅ SAFE: Strict role separation
100
101
  messages: [
101
- { role: "system", content: "You are a helpful product assistant." },
102
- { role: "user", content: userQuery },
102
+ { role: 'system', content: 'You are a helpful product assistant.' },
103
+ { role: 'user', content: userQuery },
103
104
  ];
104
105
 
105
106
  // ✅ SAFE: When injection context unavoidable — explicit delimiter
@@ -21,6 +21,7 @@ $ARGUMENTS
21
21
  ## Mandatory Pre-Flight Context Inspection
22
22
 
23
23
  Before auditing code for hallucinations or structural flaws, you MUST inspect:
24
+
24
25
  1. Target Source Code & Dependent Modules → Read target files and their import declarations
25
26
  2. Package Manifest (`package.json`) → Cross-reference imported packages against installed dependencies
26
27
  3. Pure Read-Only Constraint → Prohibit any file mutations or generation; output findings in structured audit tables strictly
@@ -20,6 +20,7 @@ $ARGUMENTS
20
20
  ## Mandatory Pre-Flight Context Inspection
21
21
 
22
22
  Before saving, restoring, or clearing session state snapshots, you MUST inspect:
23
+
23
24
  1. Session Manager Executable (`.agent/scripts/session_manager.js`) → Confirm script availability and snapshot parameters
24
25
  2. Active Session History -> Read latest snapshot metadata (`session_id`, active task, modified files, open decisions)
25
26
  3. Zero Context Loss Rule → Verify state snapshot contains explicit next steps and task status prior to terminating conversation
@@ -19,6 +19,7 @@ $ARGUMENTS
19
19
  ## Mandatory Pre-Flight Context Inspection
20
20
 
21
21
  Before rendering project status dashboards, you MUST inspect:
22
+
22
23
  1. Active Execution Ledger (`task.md`) → Read current wave progress, finished tasks, and active in-progress item
23
24
  2. Workspace Git Status (`git status`, `git diff --stat`) → List uncommitted edits and modified files
24
25
  3. Read-Only Constraint → Ban any file mutations or state updates during status reporting; report status strictly
@@ -21,6 +21,7 @@ $ARGUMENTS
21
21
  ## Mandatory Pre-Flight Context Inspection
22
22
 
23
23
  Before auditing or hardening skill definitions, you MUST inspect:
24
+
24
25
  1. Target Skill Directory Inventory (`.agent/skills/`) → List all skill folders and inspect `SKILL.md` frontmatter
25
26
  2. Guardrail Idempotency Check → Check if target `SKILL.md` already carries `## Mandatory Pre-Flight Context Inspection` or `## 🏛️ Tribunal Integration`; skip if present
26
27
  3. Skill Integrator Script (`.agent/scripts/skill_integrator.js`) → Run skill integrator script to update executable script bindings
@@ -19,6 +19,7 @@ $ARGUMENTS
19
19
  ## Mandatory Pre-Flight Context Inspection
20
20
 
21
21
  Before compiling prompts or running prompt compression, you MUST inspect:
22
+
22
23
  1. Target Input Request Text → Read target user request to strip conversational fillers
23
24
  2. Prompt Compiler Script (`.agent/scripts/prompt_compiler.js`) → Verify availability of local prompt compiler script
24
25
  3. Zero Token Overhead Principle → Ensure compilation executes locally without invoking LLM API calls
@@ -21,6 +21,7 @@ $ARGUMENTS
21
21
  ## Mandatory Pre-Flight Context Inspection
22
22
 
23
23
  Before decomposing goals into worker sub-tasks or triggering swarm execution, you MUST inspect:
24
+
24
25
  1. Swarm Dispatcher Validator (`.agent/scripts/swarm_dispatcher.js`) → Run payload validation script to ensure valid worker JSON payloads
25
26
  2. Non-Overlapping File Boundary Rule → Verify worker tasks target disjoint file sets to prevent git write conflicts during parallel execution
26
27
  3. `Promise.allSettled()` Fan-In Protocol → Collect all worker status reports and synthesize final deliverable before Human Gate confirmation
@@ -58,10 +59,21 @@ Every worker receives a structured JSON contract (not natural language):
58
59
  "task_id": "audit-auth-routes",
59
60
  "worker_type": "backend-specialist",
60
61
  "scope": "Audit all files in src/app/api/auth/ for security and type safety",
61
- "files_to_read": ["src/app/api/auth/login/route.ts", "src/app/api/auth/register/route.ts", "src/middleware.ts"],
62
+ "files_to_read": [
63
+ "src/app/api/auth/login/route.ts",
64
+ "src/app/api/auth/register/route.ts",
65
+ "src/middleware.ts"
66
+ ],
62
67
  "files_to_write": [],
63
- "context_summary": ["Next.js 15 App Router project", "Auth uses next-auth v5 (auth.ts pattern)", "Database: Prisma 6 on PostgreSQL"],
64
- "constraints": ["Report findings only — do not modify files", "Report BLOCKED if you cannot determine auth pattern from provided files"],
68
+ "context_summary": [
69
+ "Next.js 15 App Router project",
70
+ "Auth uses next-auth v5 (auth.ts pattern)",
71
+ "Database: Prisma 6 on PostgreSQL"
72
+ ],
73
+ "constraints": [
74
+ "Report findings only — do not modify files",
75
+ "Report BLOCKED if you cannot determine auth pattern from provided files"
76
+ ],
65
77
  "output_format": {
66
78
  "status": "COMPLETE | BLOCKED | ERROR",
67
79
  "findings": ["list of specific issues found with file+line references"],
@@ -21,6 +21,7 @@ $ARGUMENTS
21
21
  ## Mandatory Pre-Flight Context Inspection
22
22
 
23
23
  Before generating test suites or executing test runners, you MUST inspect:
24
+
24
25
  1. Workspace Test Runner Configuration (`package.json`, `jest.config.js`, `vitest.config.ts`, `pytest.ini`) → Verify installed runner & test environment
25
26
  2. Target Module Code & Contracts → Inspect function signatures, parameters, exceptions, and return types
26
27
  3. 3-Case Coverage Requirement → Ensure test cases explicitly cover Happy Path, Error Handling Path, and Boundary Conditions before approving test files
@@ -111,16 +112,16 @@ The Tribunal rejects any test submission that does not cover ALL of:
111
112
  ### Unit Test (Vitest)
112
113
 
113
114
  ```typescript
114
- describe("[functionName]()", () => {
115
- it("[happy path description]", () => {
115
+ describe('[functionName]()', () => {
116
+ it('[happy path description]', () => {
116
117
  expect(fn(validInput)).toBe(expectedResult);
117
118
  });
118
119
 
119
- it("returns [expected] when input is [edge case]", () => {
120
+ it('returns [expected] when input is [edge case]', () => {
120
121
  expect(fn(boundaryInput)).toBe(expectedBoundaryResult);
121
122
  });
122
123
 
123
- it("throws [ErrorType] when [invalid condition]", () => {
124
+ it('throws [ErrorType] when [invalid condition]', () => {
124
125
  expect(() => fn(invalidInput)).toThrow(ExpectedError);
125
126
  });
126
127
  });
@@ -142,12 +143,12 @@ test('[user observable behavior]', async () => {
142
143
  ### E2E Test (Playwright)
143
144
 
144
145
  ```typescript
145
- test("[critical user path]", async ({ page }) => {
146
+ test('[critical user path]', async ({ page }) => {
146
147
  // GIVEN: pre-authenticated (stored session — not login from UI every test)
147
148
  // WHEN: navigate and act
148
- await page.goto("/checkout");
149
+ await page.goto('/checkout');
149
150
  // THEN: verify final state
150
- await expect(page.getByText("Order confirmed")).toBeVisible();
151
+ await expect(page.getByText('Order confirmed')).toBeVisible();
151
152
  });
152
153
  ```
153
154
 
@@ -22,6 +22,7 @@ $ARGUMENTS
22
22
  ## Mandatory Pre-Flight Context Inspection
23
23
 
24
24
  Before auditing backend routes or server logic, you MUST inspect:
25
+
25
26
  1. Target Backend Source & Contracts → Read target route handlers, Server Actions, or controller methods
26
27
  2. Dependencies & Environment (`package.json`, `.env.example`) → Check backend framework versions, secret key placeholders, and ORM schemas
27
28
  3. 6-Reviewer Parallel Gate → Execute logic-reviewer, security-auditor, dependency-analyzer, type-safety, resilience-reviewer, and schema-reviewer before approving diffs
@@ -108,10 +109,10 @@ router.middleware(() => {}); // not a method — use app.use()
108
109
  router.beforeAll(() => {}); // not a method — use router.use()
109
110
 
110
111
  // ❌ Hono methods that don't exist
111
- app.middleware("/path", handler); // not valid — use app.use('/path', handler)
112
+ app.middleware('/path', handler); // not valid — use app.use('/path', handler)
112
113
 
113
114
  // ❌ next-auth v4 patterns in v5 projects
114
- import { getServerSession } from "next-auth"; // v4 — use auth() from './auth' in v5
115
+ import { getServerSession } from 'next-auth'; // v4 — use auth() from './auth' in v5
115
116
 
116
117
  // ❌ jwt.verify async form (it's synchronous)
117
118
  const payload = await jwt.verify(token, secret); // jwt.verify is NOT async
@@ -0,0 +1,104 @@
1
+ ---
2
+ description: CI/CD Pipeline & Workflow Tribunal. Runs Pipeline + Security + Dependency + Resilience reviewers. Use for GitHub Actions (.github/workflows/), GitLab CI (.gitlab-ci.yml), Dockerfiles, and deployment configs.
3
+ tools: Read, Grep, Glob, Bash, Edit, Write
4
+ version: 3.0.0
5
+ last-updated: 2026-08-14
6
+ required-skills:
7
+ - cicd-pro
8
+ - devops-engineer
9
+ - containerization-pro
10
+ scripts-binding:
11
+ - .agent/scripts/cicd_validator.js
12
+ - .agent/scripts/security_scan.js
13
+ - .agent/scripts/dependency_analyzer.js
14
+ ---
15
+
16
+ # /tribunal-cicd — Pipeline & Workflow Audit
17
+
18
+ $ARGUMENTS
19
+
20
+ ---
21
+
22
+ ## Mandatory Pre-Flight Context Inspection
23
+
24
+ Before auditing CI/CD configurations, you MUST inspect:
25
+
26
+ 1. Target Workflow Files (`.github/workflows/*.yml`, `.gitlab-ci.yml`, `Dockerfile`)
27
+ 2. Repository Secrets & OIDC Configuration (`id-token: write`, environment promotion rules)
28
+ 3. 5-Reviewer Parallel Gate: Execute `pipeline-reviewer`, `security-auditor`, `dependency-reviewer`, `resilience-reviewer`, and `precedence-reviewer`.
29
+
30
+ ---
31
+
32
+ ## When to Use /tribunal-cicd
33
+
34
+ | Use `/tribunal-cicd` when... | Use something else when... |
35
+ | :-------------------------------------------- | :---------------------------------------------- |
36
+ | Writing or modifying GitHub Actions workflows | Application API endpoints → `/tribunal-backend` |
37
+ | Authoring Dockerfiles or multi-stage builds | Frontend React code → `/tribunal-frontend` |
38
+ | Setting up automated release pipelines | Database schemas → `/tribunal-database` |
39
+ | Auditing CI pipeline security & secrets | Maximum system-wide coverage → `/tribunal-full` |
40
+ | Fixing broken CI builds or test matrices | Diagnosing live runner failure logs → `/fix-ci` |
41
+
42
+ ---
43
+
44
+ ## Active Reviewers (Run in Parallel)
45
+
46
+ ### precedence-reviewer
47
+
48
+ - Checks local repo Case Law for previously rejected pipeline patterns.
49
+
50
+ ### pipeline-reviewer
51
+
52
+ - Deprecated action tags (`actions/checkout@v2`/`@v3` → `@v4`).
53
+ - Missing concurrency mutex (`concurrency:` with `cancel-in-progress`).
54
+ - Insecure triggers (`pull_request_target` with PR checkout).
55
+ - Deterministic builds (`npm ci` vs `npm install`).
56
+ - Step and runner timeout settings.
57
+
58
+ ### security-auditor
59
+
60
+ - Script injection via unescaped context strings in inline bash.
61
+ - Hardcoded credentials, plain text tokens, or missing secret references.
62
+ - Excessive workflow-level permissions (e.g. `write-all`).
63
+ - Insecure artifact uploads/downloads.
64
+
65
+ ### dependency-reviewer
66
+
67
+ - Unpinned third-party community actions (missing SHA hash pinning).
68
+ - Supply chain security vulnerabilities in container base images.
69
+
70
+ ### resilience-reviewer
71
+
72
+ - Missing `if: failure()` alerting on deploy steps.
73
+ - Missing rollback triggers on health check failures.
74
+ - Unhandled matrix combinations or missing fallback retry logic.
75
+
76
+ ---
77
+
78
+ ## Verdict System
79
+
80
+ ```
81
+ If ANY reviewer → ❌ REJECTED: code must be fixed before Human Gate
82
+ If any reviewer → ⚠️ WARNING: proceed with flagged items noted
83
+ If all reviewers → ✅ APPROVED: present to Human Gate
84
+ ```
85
+
86
+ ---
87
+
88
+ ## Usage Examples
89
+
90
+ ```
91
+ /tribunal-cicd .github/workflows/ci.yml
92
+ /tribunal-cicd .github/workflows/deploy.yml
93
+ /tribunal-cicd Dockerfile and deployment manifest
94
+ ```
95
+
96
+ ---
97
+
98
+ ## After /tribunal-cicd — Next Steps
99
+
100
+ | Outcome | Next Command |
101
+ | :------------------------------ | :--------------------------------------------- |
102
+ | All checks pass | → `/deploy` or commit and push |
103
+ | Reviewers reject with fixes | → Apply fixes, then run `/tribunal-cicd` again |
104
+ | Live pipeline failure in GitHub | → `/fix-ci` with the failing runner logs |
@@ -21,6 +21,7 @@ $ARGUMENTS
21
21
  ## Mandatory Pre-Flight Context Inspection
22
22
 
23
23
  Before auditing database queries, migrations, or ORM transactions, you MUST inspect:
24
+
24
25
  1. ORM Schema Source of Truth (`prisma/schema.prisma` or SQL schema) → Verify active table schemas, indexes, and relations
25
26
  2. SQL Parameterization Inspection → Flag all raw SQL queries attempting string interpolation; enforce parameterized queries
26
27
  3. 3-Reviewer Database Gate → Execute logic-reviewer, security-auditor, and sql-pro before approving database modifications
@@ -24,6 +24,7 @@ $ARGUMENTS
24
24
  ## Mandatory Pre-Flight Context Inspection
25
25
 
26
26
  Before auditing React components or frontend UI logic, you MUST inspect:
27
+
27
28
  1. Design Tokens & Styling Context (`globals.css`, `tailwind.config`) → Verify OKLCH color palettes, typography scale, and dark mode classes
28
29
  2. Active UI Skill Pack (`.agent/skills/ui-skill-packs/SKILL.md`) → Load mandatory UI skill pack (Pack 1: Foundations, Pack 2: Motion, Pack 3: Systems)
29
30
  3. 7-Reviewer Frontend Gate → Run logic, security, frontend-reviewer, type-safety, ui-ux-auditor, motion-reviewer, and visual-auditor before approving UI diffs
@@ -111,12 +112,12 @@ If all reviewers → ✅ APPROVED: Human Gate
111
112
 
112
113
  ```typescript
113
114
  // ❌ React 19: useFormState renamed to useActionState
114
- import { useFormState } from 'react'; // useFormState no longer exists in React 19
115
- import { useActionState } from 'react'; // Correct React 19 name
115
+ import { useFormState } from 'react'; // useFormState no longer exists in React 19
116
+ import { useActionState } from 'react'; // Correct React 19 name
116
117
 
117
118
  // ❌ Next.js 15: params and searchParams must be awaited
118
- const { id } = params; // WRONG — params is a Promise in Next.js 15
119
- const { id } = await params; // CORRECT
119
+ const { id } = params; // WRONG — params is a Promise in Next.js 15
120
+ const { id } = await params; // CORRECT
120
121
 
121
122
  // ❌ Hook not valid in Server Component
122
123
  export default async function Page() {
@@ -124,8 +125,9 @@ export default async function Page() {
124
125
  }
125
126
 
126
127
  // ❌ Server Action missing 'use server'
127
- async function saveData(formData: FormData) { // Without 'use server' — not a Server Action
128
- 'use server'; // Must be FIRST line
128
+ async function saveData(formData: FormData) {
129
+ // Without 'use server' not a Server Action
130
+ 'use server'; // Must be FIRST line
129
131
  }
130
132
  ```
131
133
 
@@ -29,6 +29,7 @@ $ARGUMENTS
29
29
  ## Mandatory Pre-Flight Context Inspection
30
30
 
31
31
  Before launching the full 21-reviewer audit, you MUST inspect:
32
+
32
33
  1. Pending Code Modifications (`git diff` / modified files) → Inspect diffs across all domains (frontend, backend, database, mobile)
33
34
  2. Workspace Configuration Context (`package.json`, `tsconfig.json`, `tailwind.config`) → Verify project build contracts
34
35
  3. 21-Reviewer Synthesis Gate → Execute all 21 specialized reviewers in parallel; halt on any security violation or critical bug before Human Gate approval
@@ -93,7 +94,7 @@ Not all 21 reviewers produce meaningful findings on all code types. Active revie
93
94
  | AI LLM integration | logic, security, ai-code, dependency |
94
95
  | Test file | test-coverage, logic |
95
96
  | React Native / Expo | mobile, logic, security, performance, ui-ux |
96
- | Next.js page | logic, frontend, performance, accessibility, ui-ux |
97
+ | Next.js page | logic, frontend, performance, accessibility, ui-ux |
97
98
  | Auth/JWT code | security, logic, type-safety |
98
99
 
99
100
  ---
@@ -21,6 +21,7 @@ $ARGUMENTS
21
21
  ## Mandatory Pre-Flight Context Inspection
22
22
 
23
23
  Before auditing React Native, Expo, or native mobile code, you MUST inspect:
24
+
24
25
  1. Native Configuration Manifests (`app.json`, `app.config.js`, `package.json`) → Verify Expo SDK version, Reanimated dependencies, and permissions
25
26
  2. Gesture & 60fps Motion Rules → Enforce `react-native-reanimated` worklets on UI thread; ban JavaScript bridge layout thrashing
26
27
  3. 3-Reviewer Mobile Gate → Run logic-reviewer, security-auditor, and mobile-reviewer before approving mobile component diffs
@@ -93,19 +94,19 @@ If all reviewers → ✅ APPROVED: Human Gate
93
94
  const clamp = (val: number, min: number, max: number) => Math.min(Math.max(val, min), max);
94
95
  // ✅ Must have worklet directive
95
96
  const clamp = (val: number, min: number, max: number): number => {
96
- "worklet";
97
+ 'worklet';
97
98
  return Math.min(Math.max(val, min), max);
98
99
  };
99
100
 
100
101
  // ❌ Expo Router: navigate() was refactored in v4 — old API
101
- import { navigate } from "expo-router"; // Named export doesn't exist
102
+ import { navigate } from 'expo-router'; // Named export doesn't exist
102
103
  // ✅ Current Expo Router v4
103
- import { router } from "expo-router";
104
- router.push("/products/123");
104
+ import { router } from 'expo-router';
105
+ router.push('/products/123');
105
106
 
106
107
  // ❌ React Native: StyleSheet.create doesn't eval functions
107
108
  const styles = StyleSheet.create({
108
- box: { paddingTop: Platform.OS === "ios" ? 20 : 0 }, // Doesn't work in all contexts
109
+ box: { paddingTop: Platform.OS === 'ios' ? 20 : 0 }, // Doesn't work in all contexts
109
110
  });
110
111
  // ✅ Use Platform.select or dynamic style object
111
112
  const boxStyle = Platform.select({ ios: { paddingTop: 20 }, android: { paddingTop: 0 } });
@@ -21,6 +21,7 @@ $ARGUMENTS
21
21
  ## Mandatory Pre-Flight Context Inspection
22
22
 
23
23
  Before optimizing code or running performance reviews, you MUST inspect:
24
+
24
25
  1. Target Source & Heavy Import Inspection (`package.json`, `next.config.js`) → Identify heavy library imports (`moment`, full `lodash`) for tree-shaking
25
26
  2. Measured Baseline Metrics → Run `bundle_analyzer.js` or latency measurements; ban claiming performance improvements without measured proof
26
27
  3. 2-Reviewer Performance Gate → Run logic-reviewer and performance-optimizer before approving optimization diffs
@@ -21,6 +21,7 @@ $ARGUMENTS
21
21
  ## Mandatory Pre-Flight Context Inspection
22
22
 
23
23
  Before running a full-stack performance audit, you MUST inspect:
24
+
24
25
  1. Target Full-Stack File Map → Determine frontend components, Node.js server routes, and database models
25
26
  2. Max 5 AI Call Ceiling → Cap swarm executions to 3 parallel specialists + 1 synthesis step to prevent token explosion
26
27
  3. Ranked Impact Synthesis → Output findings strictly in a single unified table prioritized by user-facing latency impact