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.
Files changed (349) hide show
  1. package/.agent/ARCHITECTURE.md +2 -2
  2. package/.agent/config/claude.json +18 -0
  3. package/.agent/config/plugin.json +102 -0
  4. package/.agent/config/slash-commands.json +103 -0
  5. package/.agent/config/specialist-registry.json +415 -0
  6. package/.agent/config/system-prompt.md +244 -0
  7. package/.agent/history/architecture-graph.yaml +302 -3
  8. package/.agent/history/graph-cache.json +515 -45
  9. package/.agent/history/memory.db +0 -0
  10. package/.agent/history/snapshots/bin__adapter-install.js.json +13 -0
  11. package/.agent/history/snapshots/bin__global-store.js.json +15 -0
  12. package/.agent/history/snapshots/bin__mcp-server.js.json +19 -0
  13. package/.agent/history/snapshots/bin__proxy-server.js.json +20 -0
  14. package/.agent/history/snapshots/bin__spawn-agent.js.json +12 -0
  15. package/.agent/history/snapshots/bin__tk-proxy.js.json +21 -0
  16. package/.agent/history/snapshots/bin__tribunal-kit.js.json +9 -7
  17. package/.agent/history/snapshots/bin__wrapper.js.json +14 -0
  18. package/.agent/history/snapshots/eslint.config.js.json +1 -2
  19. package/.agent/history/snapshots/scripts__benchmark.js.json +14 -0
  20. package/.agent/history/snapshots/scripts__changelog.js.json +1 -2
  21. package/.agent/history/snapshots/scripts__fix-vbc.js.json +11 -0
  22. package/.agent/history/snapshots/scripts__stress_benchmark.js.json +15 -0
  23. package/.agent/history/snapshots/scripts__sync-version.js.json +1 -2
  24. package/.agent/history/snapshots/scripts__validate-payload.js.json +1 -2
  25. package/.agent/history/snapshots/scripts__visual_audit.js.json +11 -0
  26. package/.agent/history/snapshots/test__integration__bridges.test.js.json +1 -2
  27. package/.agent/history/snapshots/test__integration__graceful_degradation.test.js.json +12 -0
  28. package/.agent/history/snapshots/test__integration__init.test.js.json +1 -2
  29. package/.agent/history/snapshots/test__integration__minimal_change_pipeline.test.js.json +13 -0
  30. package/.agent/history/snapshots/test__integration__parallel_tribunal.test.js.json +12 -0
  31. package/.agent/history/snapshots/test__integration__routing.test.js.json +1 -2
  32. package/.agent/history/snapshots/test__integration__swarm_dispatcher.test.js.json +1 -2
  33. package/.agent/history/snapshots/test__integration__sync_status.test.js.json +13 -0
  34. package/.agent/history/snapshots/test__integration__wave2.test.js.json +1 -2
  35. package/.agent/history/snapshots/test__integration__wrapper.test.js.json +13 -0
  36. package/.agent/history/snapshots/test__unit__align.test.js.json +10 -0
  37. package/.agent/history/snapshots/test__unit__args.test.js.json +3 -3
  38. package/.agent/history/snapshots/test__unit__audit_release.test.js.json +16 -0
  39. package/.agent/history/snapshots/test__unit__case_law_manager.test.js.json +1 -2
  40. package/.agent/history/snapshots/test__unit__cicd_validator.test.js.json +12 -0
  41. package/.agent/history/snapshots/test__unit__compile.test.js.json +10 -0
  42. package/.agent/history/snapshots/test__unit__context_broker.test.js.json +1 -2
  43. package/.agent/history/snapshots/test__unit__contract_engine.test.js.json +13 -0
  44. package/.agent/history/snapshots/test__unit__copyDir.test.js.json +3 -3
  45. package/.agent/history/snapshots/test__unit__graph_tools.test.js.json +1 -2
  46. package/.agent/history/snapshots/test__unit__guardrail_engine.test.js.json +10 -0
  47. package/.agent/history/snapshots/test__unit__impact_classifier.test.js.json +12 -0
  48. package/.agent/history/snapshots/test__unit__init.test.js.json +14 -0
  49. package/.agent/history/snapshots/test__unit__inner_loop_validator.test.js.json +1 -2
  50. package/.agent/history/snapshots/test__unit__integrity_manifest.test.js.json +13 -0
  51. package/.agent/history/snapshots/test__unit__learn.test.js.json +11 -0
  52. package/.agent/history/snapshots/test__unit__marathon.test.js.json +22 -0
  53. package/.agent/history/snapshots/test__unit__mcp_server.test.js.json +16 -0
  54. package/.agent/history/snapshots/test__unit__memory.test.js.json +13 -0
  55. package/.agent/history/snapshots/test__unit__minimal_change.test.js.json +10 -0
  56. package/.agent/history/snapshots/test__unit__native.test.js.json +10 -0
  57. package/.agent/history/snapshots/test__unit__optimize.test.js.json +13 -0
  58. package/.agent/history/snapshots/test__unit__path_resolution.test.js.json +14 -0
  59. package/.agent/history/snapshots/test__unit__production_readiness_evidence.test.js.json +21 -0
  60. package/.agent/history/snapshots/test__unit__selfInstall.test.js.json +3 -3
  61. package/.agent/history/snapshots/test__unit__semver.test.js.json +3 -3
  62. package/.agent/history/snapshots/test__unit__skill_evolution.test.js.json +11 -0
  63. package/.agent/history/snapshots/test__unit__stress.test.js.json +15 -0
  64. package/.agent/history/snapshots/test__unit__swarm_dispatcher.test.js.json +3 -3
  65. package/.agent/history/snapshots/test__unit__utils.test.js.json +10 -0
  66. package/.agent/routing_index.json +2 -2
  67. package/.agent/scripts/ast_context_loader.js +137 -0
  68. package/.agent/scripts/memory_engine.js +581 -0
  69. package/.agent/scripts/payload_schemas.js +146 -0
  70. package/.agent/scripts/prompt_compiler.js +59 -11
  71. package/.agent/scripts/swarm_dispatcher.js +295 -67
  72. package/.agent/scripts/token_budget_broker.js +117 -6
  73. package/.agent/skills/12-principles-of-animation/SKILL.md +19 -16
  74. package/.agent/skills/60fps-animation/SKILL.md +47 -21
  75. package/.agent/skills/accessible-animation/SKILL.md +19 -16
  76. package/.agent/skills/adapt/SKILL.md +19 -16
  77. package/.agent/skills/advanced-rag-pipelines/SKILL.md +41 -40
  78. package/.agent/skills/agent-organizer/SKILL.md +9 -59
  79. package/.agent/skills/agentic-patterns/SKILL.md +9 -57
  80. package/.agent/skills/agentic-workflows-2026/SKILL.md +45 -8
  81. package/.agent/skills/ai-app-hardening/SKILL.md +31 -5
  82. package/.agent/skills/ai-prompt-injection-defense/SKILL.md +28 -66
  83. package/.agent/skills/animation-on-scroll/SKILL.md +19 -16
  84. package/.agent/skills/animation-systems/SKILL.md +19 -15
  85. package/.agent/skills/antfu-conventions/SKILL.md +19 -18
  86. package/.agent/skills/api-patterns/SKILL.md +8 -58
  87. package/.agent/skills/api-security-auditor/SKILL.md +8 -58
  88. package/.agent/skills/app-builder/SKILL.md +9 -59
  89. package/.agent/skills/appflow-wireframe/SKILL.md +13 -57
  90. package/.agent/skills/apple-design/SKILL.md +22 -14
  91. package/.agent/skills/architecture/SKILL.md +9 -59
  92. package/.agent/skills/audit-and-fix/SKILL.md +19 -16
  93. package/.agent/skills/authentication-best-practices/SKILL.md +8 -58
  94. package/.agent/skills/backend-security-expert/SKILL.md +32 -65
  95. package/.agent/skills/baseline-ui/SKILL.md +22 -14
  96. package/.agent/skills/bash-linux/SKILL.md +9 -59
  97. package/.agent/skills/behavioral-modes/SKILL.md +9 -57
  98. package/.agent/skills/better-colors/SKILL.md +22 -14
  99. package/.agent/skills/better-typography/SKILL.md +26 -14
  100. package/.agent/skills/better-ui/SKILL.md +54 -19
  101. package/.agent/skills/bolder/SKILL.md +19 -16
  102. package/.agent/skills/brainstorming/SKILL.md +9 -57
  103. package/.agent/skills/browser-native-ai/SKILL.md +9 -28
  104. package/.agent/skills/build-primitive/SKILL.md +19 -16
  105. package/.agent/skills/building-native-ui/SKILL.md +9 -59
  106. package/.agent/skills/cicd-pro/SKILL.md +21 -28
  107. package/.agent/skills/clarify/SKILL.md +19 -16
  108. package/.agent/skills/clean-code/SKILL.md +18 -61
  109. package/.agent/skills/cloud-architect/SKILL.md +21 -28
  110. package/.agent/skills/cobejs/SKILL.md +19 -15
  111. package/.agent/skills/code-review-checklist/SKILL.md +8 -58
  112. package/.agent/skills/codebase-design/SKILL.md +33 -22
  113. package/.agent/skills/colorize/SKILL.md +19 -16
  114. package/.agent/skills/compact-landing/SKILL.md +19 -16
  115. package/.agent/skills/company-logos/SKILL.md +19 -16
  116. package/.agent/skills/config-validator/SKILL.md +9 -59
  117. package/.agent/skills/containerization-pro/SKILL.md +21 -28
  118. package/.agent/skills/context-engineering-pro/SKILL.md +31 -5
  119. package/.agent/skills/create-design-md/SKILL.md +22 -14
  120. package/.agent/skills/critique/SKILL.md +20 -11
  121. package/.agent/skills/csharp-developer/SKILL.md +8 -58
  122. package/.agent/skills/data-validation-schemas/SKILL.md +9 -59
  123. package/.agent/skills/database-design/SKILL.md +27 -67
  124. package/.agent/skills/delight/SKILL.md +19 -16
  125. package/.agent/skills/deployment-procedures/SKILL.md +9 -59
  126. package/.agent/skills/design-lab/SKILL.md +19 -16
  127. package/.agent/skills/devops-engineer/SKILL.md +8 -58
  128. package/.agent/skills/devops-incident-responder/SKILL.md +9 -59
  129. package/.agent/skills/diagnosing-bugs/SKILL.md +20 -21
  130. package/.agent/skills/distill/SKILL.md +19 -16
  131. package/.agent/skills/documentation-templates/SKILL.md +9 -59
  132. package/.agent/skills/domain-modeling/SKILL.md +19 -18
  133. package/.agent/skills/duckdb-analytical-sql/SKILL.md +31 -5
  134. package/.agent/skills/edge-ai-mobile/SKILL.md +31 -5
  135. package/.agent/skills/edge-computing/SKILL.md +9 -59
  136. package/.agent/skills/emil-design-eng/SKILL.md +21 -24
  137. package/.agent/skills/error-resilience/SKILL.md +31 -66
  138. package/.agent/skills/expo-router-v4/SKILL.md +31 -5
  139. package/.agent/skills/extract-design-system/SKILL.md +9 -59
  140. package/.agent/skills/fabel-protocol/SKILL.md +26 -8
  141. package/.agent/skills/fixing-accessibility/SKILL.md +22 -14
  142. package/.agent/skills/fixing-metadata/SKILL.md +19 -16
  143. package/.agent/skills/fixing-motion-performance/SKILL.md +22 -14
  144. package/.agent/skills/framer-motion-expert/SKILL.md +9 -57
  145. package/.agent/skills/frontend-design/SKILL.md +27 -7
  146. package/.agent/skills/frontend-security-expert/SKILL.md +8 -58
  147. package/.agent/skills/game-design-expert/SKILL.md +9 -59
  148. package/.agent/skills/game-engineering-expert/SKILL.md +9 -59
  149. package/.agent/skills/generative-ui-expert/SKILL.md +9 -28
  150. package/.agent/skills/geo-fundamentals/SKILL.md +9 -59
  151. package/.agent/skills/git-pro/SKILL.md +19 -30
  152. package/.agent/skills/github-operations/SKILL.md +8 -58
  153. package/.agent/skills/gpt-taste/SKILL.md +19 -16
  154. package/.agent/skills/gsap-core/SKILL.md +8 -78
  155. package/.agent/skills/gsap-frameworks/SKILL.md +8 -78
  156. package/.agent/skills/gsap-performance/SKILL.md +9 -77
  157. package/.agent/skills/gsap-plugins/SKILL.md +9 -77
  158. package/.agent/skills/gsap-react/SKILL.md +9 -21
  159. package/.agent/skills/gsap-scrolltrigger/SKILL.md +8 -78
  160. package/.agent/skills/gsap-timeline/SKILL.md +9 -77
  161. package/.agent/skills/gsap-utils/SKILL.md +9 -77
  162. package/.agent/skills/harden/SKILL.md +19 -16
  163. package/.agent/skills/harness-protocol/SKILL.md +9 -21
  164. package/.agent/skills/i18n-localization/SKILL.md +9 -59
  165. package/.agent/skills/impeccable/SKILL.md +19 -18
  166. package/.agent/skills/improve-codebase-architecture/SKILL.md +19 -17
  167. package/.agent/skills/improve-ui/SKILL.md +22 -14
  168. package/.agent/skills/intelligent-routing/SKILL.md +9 -23
  169. package/.agent/skills/knowledge-graph/SKILL.md +9 -21
  170. package/.agent/skills/landing-page/SKILL.md +19 -16
  171. package/.agent/skills/lint-and-validate/SKILL.md +9 -59
  172. package/.agent/skills/llm-engineering/SKILL.md +8 -58
  173. package/.agent/skills/local-first/SKILL.md +9 -59
  174. package/.agent/skills/local-first-architecture/SKILL.md +37 -20
  175. package/.agent/skills/lottie-animation/SKILL.md +19 -15
  176. package/.agent/skills/marquee-loop/SKILL.md +19 -16
  177. package/.agent/skills/masked-reveal/SKILL.md +19 -15
  178. package/.agent/skills/mcp-builder/SKILL.md +9 -59
  179. package/.agent/skills/micro-interaction/SKILL.md +19 -16
  180. package/.agent/skills/mobile-design/SKILL.md +8 -58
  181. package/.agent/skills/monorepo-management/SKILL.md +9 -59
  182. package/.agent/skills/morphing-icons/SKILL.md +19 -15
  183. package/.agent/skills/motion-engineering/SKILL.md +22 -15
  184. package/.agent/skills/nextjs-react-expert/SKILL.md +35 -67
  185. package/.agent/skills/nodejs-best-practices/SKILL.md +34 -61
  186. package/.agent/skills/observability/SKILL.md +8 -58
  187. package/.agent/skills/opentelemetry-observability/SKILL.md +31 -5
  188. package/.agent/skills/page-transition-animation/SKILL.md +19 -16
  189. package/.agent/skills/parallel-agents/SKILL.md +9 -59
  190. package/.agent/skills/performance-profiling/SKILL.md +8 -58
  191. package/.agent/skills/plan-writing/SKILL.md +36 -69
  192. package/.agent/skills/platform-engineer/SKILL.md +9 -59
  193. package/.agent/skills/platform-engineering-opentofu/SKILL.md +31 -5
  194. package/.agent/skills/playwright-ai-e2e/SKILL.md +31 -5
  195. package/.agent/skills/playwright-best-practices/SKILL.md +9 -59
  196. package/.agent/skills/polish/SKILL.md +19 -16
  197. package/.agent/skills/powershell-windows/SKILL.md +8 -58
  198. package/.agent/skills/pricing-page/SKILL.md +19 -16
  199. package/.agent/skills/product-aware-heuristics/SKILL.md +27 -8
  200. package/.agent/skills/progressive-blur/SKILL.md +19 -16
  201. package/.agent/skills/project-idioms/SKILL.md +9 -59
  202. package/.agent/skills/property-based-testing/SKILL.md +31 -5
  203. package/.agent/skills/python-patterns/SKILL.md +9 -59
  204. package/.agent/skills/python-pro/SKILL.md +35 -67
  205. package/.agent/skills/quieter/SKILL.md +19 -16
  206. package/.agent/skills/react-doctor/SKILL.md +19 -16
  207. package/.agent/skills/react-specialist/SKILL.md +26 -65
  208. package/.agent/skills/readme-builder/SKILL.md +9 -59
  209. package/.agent/skills/realtime-patterns/SKILL.md +8 -58
  210. package/.agent/skills/red-team-tactics/SKILL.md +9 -59
  211. package/.agent/skills/redesign-skill/SKILL.md +19 -16
  212. package/.agent/skills/review-animations/SKILL.md +21 -25
  213. package/.agent/skills/rust-pro/SKILL.md +30 -61
  214. package/.agent/skills/seo-fundamentals/SKILL.md +9 -59
  215. package/.agent/skills/server-management/SKILL.md +9 -59
  216. package/.agent/skills/shadcn-ui-expert/SKILL.md +9 -59
  217. package/.agent/skills/shape/SKILL.md +19 -16
  218. package/.agent/skills/skill-creator/SKILL.md +36 -86
  219. package/.agent/skills/soft-skill/SKILL.md +19 -16
  220. package/.agent/skills/sounds-on-the-web/SKILL.md +19 -16
  221. package/.agent/skills/sql-pro/SKILL.md +47 -62
  222. package/.agent/skills/supabase-postgres-best-practices/SKILL.md +9 -59
  223. package/.agent/skills/svg-animation/SKILL.md +19 -15
  224. package/.agent/skills/swiftui-expert/SKILL.md +9 -59
  225. package/.agent/skills/swiss-design/SKILL.md +19 -16
  226. package/.agent/skills/system-design-pro/SKILL.md +21 -26
  227. package/.agent/skills/systematic-debugging/SKILL.md +19 -60
  228. package/.agent/skills/systematic-debugging/condition-based-waiting.md +115 -0
  229. package/.agent/skills/systematic-debugging/defense-in-depth.md +122 -0
  230. package/.agent/skills/systematic-debugging/root-cause-tracing.md +169 -0
  231. package/.agent/skills/tailwind-patterns/SKILL.md +8 -58
  232. package/.agent/skills/taste-skill/SKILL.md +19 -16
  233. package/.agent/skills/tdd-workflow/SKILL.md +65 -25
  234. package/.agent/skills/test-result-analyzer/SKILL.md +9 -59
  235. package/.agent/skills/testing-patterns/SKILL.md +8 -58
  236. package/.agent/skills/thermo-nuclear-code-quality-review/SKILL.md +19 -18
  237. package/.agent/skills/thinking-protocol/SKILL.md +33 -2
  238. package/.agent/skills/to-spring-or-not-to-spring/SKILL.md +19 -15
  239. package/.agent/skills/transitions-dev/SKILL.md +19 -15
  240. package/.agent/skills/trend-researcher/SKILL.md +9 -59
  241. package/.agent/skills/typescript-advanced/SKILL.md +21 -64
  242. package/.agent/skills/typeset/SKILL.md +19 -16
  243. package/.agent/skills/ui-reasoning-engine/SKILL.md +27 -8
  244. package/.agent/skills/ui-skill-packs/SKILL.md +26 -16
  245. package/.agent/skills/ui-skills-root/SKILL.md +22 -14
  246. package/.agent/skills/ui-ux-pro-max/SKILL.md +38 -12
  247. package/.agent/skills/ui-ux-researcher/SKILL.md +9 -59
  248. package/.agent/skills/vector-search-pgvector/SKILL.md +31 -5
  249. package/.agent/skills/verification-before-completion/SKILL.md +125 -0
  250. package/.agent/skills/vue-expert/SKILL.md +9 -57
  251. package/.agent/skills/vulnerability-scanner/SKILL.md +8 -58
  252. package/.agent/skills/web-accessibility-auditor/SKILL.md +9 -59
  253. package/.agent/skills/web-design-guidelines/SKILL.md +27 -7
  254. package/.agent/skills/web-quality-audit/SKILL.md +19 -16
  255. package/.agent/skills/webapp-testing/SKILL.md +9 -59
  256. package/.agent/skills/webgpu-performance/SKILL.md +9 -28
  257. package/.agent/skills/whimsy-injector/SKILL.md +9 -57
  258. package/.agent/skills/workflow-optimizer/SKILL.md +9 -57
  259. package/.agent/skills/zero-trust-passkeys/SKILL.md +31 -5
  260. package/.agent/templates/DESIGN.md +680 -160
  261. package/.agent/templates/sdd/implementer-prompt.md +53 -0
  262. package/.agent/templates/sdd/re-review-prompt.md +28 -0
  263. package/.agent/templates/sdd/task-reviewer-prompt.md +59 -0
  264. package/.agent/workflows/acf.md +4 -0
  265. package/.agent/workflows/api-tester.md +5 -0
  266. package/.agent/workflows/audit.md +5 -0
  267. package/.agent/workflows/brainstorm.md +17 -1
  268. package/.agent/workflows/changelog.md +5 -0
  269. package/.agent/workflows/contract.md +19 -0
  270. package/.agent/workflows/create.md +6 -1
  271. package/.agent/workflows/debug.md +5 -0
  272. package/.agent/workflows/deploy.md +6 -1
  273. package/.agent/workflows/enhance.md +6 -1
  274. package/.agent/workflows/fix-ci.md +5 -0
  275. package/.agent/workflows/fix.md +5 -0
  276. package/.agent/workflows/generate.md +5 -0
  277. package/.agent/workflows/marathon.md +6 -1
  278. package/.agent/workflows/migrate.md +5 -0
  279. package/.agent/workflows/minimal.md +4 -0
  280. package/.agent/workflows/orchestrate.md +6 -1
  281. package/.agent/workflows/performance-benchmarker.md +6 -1
  282. package/.agent/workflows/pipeline.md +5 -0
  283. package/.agent/workflows/plan.md +6 -1
  284. package/.agent/workflows/preview.md +6 -1
  285. package/.agent/workflows/refactor.md +6 -0
  286. package/.agent/workflows/review-ai.md +5 -0
  287. package/.agent/workflows/review.md +5 -0
  288. package/.agent/workflows/sdd.md +122 -0
  289. package/.agent/workflows/session.md +5 -0
  290. package/.agent/workflows/status.md +4 -0
  291. package/.agent/workflows/super-prompt.md +4 -0
  292. package/.agent/workflows/swarm.md +6 -1
  293. package/.agent/workflows/test.md +6 -1
  294. package/.agent/workflows/tribunal-backend.md +5 -0
  295. package/.agent/workflows/tribunal-cicd.md +5 -0
  296. package/.agent/workflows/tribunal-database.md +5 -0
  297. package/.agent/workflows/tribunal-full.md +8 -0
  298. package/.agent/workflows/tribunal-mobile.md +5 -0
  299. package/.agent/workflows/tribunal-performance.md +5 -0
  300. package/.agent/workflows/tribunal-speed.md +5 -0
  301. package/.agent/workflows/tribunal-ui.md +7 -0
  302. package/.agents/plugins/marketplace.json +20 -0
  303. package/.claude/CLAUDE.md +442 -0
  304. package/.claude-plugin/marketplace.json +17 -0
  305. package/.claude-plugin/plugin.json +26 -0
  306. package/.codex-plugin/plugin.json +45 -0
  307. package/.cursor-plugin/plugin.json +26 -0
  308. package/.devin-plugin/plugin.json +14 -0
  309. package/.hermes-plugin/__init__.py +102 -0
  310. package/.hermes-plugin/plugin.yaml +6 -0
  311. package/.kimi-plugin/plugin.json +38 -0
  312. package/.opencode/INSTALL.md +41 -0
  313. package/.opencode/plugins/tribunal.js +101 -0
  314. package/.pi/extensions/tribunal.ts +133 -0
  315. package/CONTRIBUTING.md +1 -1
  316. package/README.md +253 -218
  317. package/SECURITY.md +3 -3
  318. package/bin/adapter-install.js +240 -0
  319. package/bin/global-store.js +48 -0
  320. package/bin/mcp-server.js +568 -252
  321. package/bin/proxy-server.js +113 -0
  322. package/bin/spawn-agent.js +39 -0
  323. package/bin/tk-proxy.js +34 -0
  324. package/bin/wrapper.js +1 -0
  325. package/dist/cli.js +355 -355
  326. package/dist/commands/init.js +8 -51
  327. package/dist/commands/status.js +61 -36
  328. package/dist/commands/validate.js +22 -31
  329. package/dist/esm/index.mjs +142 -142
  330. package/dist/index.d.ts +349 -343
  331. package/dist/tui/banner.js +77 -0
  332. package/dist/tui/index.js +21 -0
  333. package/dist/tui/reviewer-grid.js +90 -0
  334. package/dist/tui/shimmer.js +91 -0
  335. package/dist/tui/theme.js +130 -0
  336. package/dist/tui/tree.js +93 -0
  337. package/dist/tui/wizard.js +148 -0
  338. package/dist/utils/helpers.js +5 -41
  339. package/gemini-extension.json +6 -0
  340. package/hooks/hooks-cursor.json +16 -0
  341. package/hooks/hooks.json +16 -0
  342. package/hooks/session-start.js +77 -0
  343. package/package.json +165 -129
  344. package/scripts/audit_skill_sdo.js +87 -0
  345. package/scripts/build-graph.js +71 -0
  346. package/scripts/modernize_skills.js +254 -0
  347. package/.agent/history/snapshots/migrate_refs.js.json +0 -11
  348. package/.agent/scripts/compile_router.py +0 -5
  349. package/.agent/scripts/migrate_skills_frontmatter.py +0 -5
@@ -2,8 +2,8 @@
2
2
  name: devops-engineer
3
3
  description: DevOps engineering mastery. Docker containerization, Docker Compose, CI/CD with GitHub Actions, Kubernetes basics, infrastructure as code (Terraform), monitoring/alerting, deployment strategies (blue/green, canary, rolling), secrets management, and production readiness checklists. Use when building CI/CD pipelines, containerizing apps, or managing infrastructure.
4
4
  tools: Read, Grep, Glob, Bash, Edit, Write
5
- version: 3.0.0
6
- last-updated: 2026-07-30
5
+ version: 4.0.0
6
+ last-updated: 2026-09-07
7
7
  skills:
8
8
  - cicd-pro
9
9
  - containerization-pro
@@ -25,7 +25,11 @@ Before building Dockerfiles, Docker Compose, or GitHub Actions pipelines, you MU
25
25
  2. Deterministic Package Installation (Section 28) โ†’ Use `npm ci` (or yarn/pnpm equivalent with lockfiles) in Docker and CI; ban `npm install`
26
26
  3. CI/CD Concurrency Group Cancellation (Section 142) โ†’ Configure `concurrency.cancel-in-progress: true` on PR workflows to cancel stale builds
27
27
 
28
- # DevOps Engineer โ€” CI/CD & Infrastructure Mastery
28
+
29
+ ## Activation Boundaries
30
+
31
+ - **Activate when:** Operating in tasks requiring DevOps engineering mastery. Docker containerization, Docker Compose, CI/CD with GitHub Actions, Kubernetes basics, infrastructure as code (Terraform), monitoring/alerting, deployment strategies (blue/green, canary, rolling), secrets management, and production readiness checklists. Use when building CI/CD pipelines, containerizing apps, or managing infrastructure..
32
+ - **DO NOT activate when:** The task falls strictly outside devops-engineer domain or belongs to a different dedicated specialist.
29
33
 
30
34
  ---
31
35
 
@@ -324,69 +328,17 @@ AI coding assistants often fall into specific bad habits when dealing with this
324
328
 
325
329
  ---
326
330
 
327
- **Slash command: `/review` or `/tribunal-full`**
328
- **Active reviewers: `logic-reviewer` ยท `security-auditor`**
329
-
330
- ### โŒ Forbidden AI Tropes
331
-
332
- 1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
333
- 2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
334
- 3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
335
-
336
- Review these questions before confirming output:
337
-
338
- ```
339
- โœ… Did I rely ONLY on real, verified tools and methods?
340
- โœ… Is this solution appropriately scoped to the user's constraints?
341
- โœ… Did I handle potential failure modes and edge cases?
342
- โœ… Have I avoided generic boilerplate that doesn't add value?
343
- ```
344
-
345
- ### ๐Ÿ›‘ Verification-Before-Completion (VBC) Protocol
346
-
347
- **CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
348
-
349
- - โŒ **Forbidden:** Declaring a task complete because the output "looks correct."
350
- - โœ… **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.
351
-
352
- ## Pre-Flight Checklist
353
-
354
- - [ ] Have I reviewed the user's specific constraints and requests?
355
- - [ ] Have I checked the environment for relevant existing implementations?
356
-
357
- ## VBC Protocol (Verification-Before-Completion)
358
-
359
- You MUST verify existing code signatures and variables before attempting to modify or call them. No hallucination is permitted.
360
-
361
- ---
362
-
363
- ## ๐Ÿค– LLM-Specific Traps
364
-
365
- AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
366
-
367
- 1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
368
- 2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
369
- 3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
370
- 4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
371
- 5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
372
-
373
- ---
374
-
375
- ## ๐Ÿ›๏ธ Tribunal Integration (Anti-Hallucination)
331
+ ## ๐Ÿ›๏ธ Tribunal Verification & Guardrails
376
332
 
377
333
  **Slash command: `/review` or `/tribunal-full`**
378
334
  **Active reviewers: `logic-reviewer` ยท `security-auditor`**
379
335
 
380
336
  ### โŒ Forbidden AI Tropes
381
-
382
337
  1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
383
338
  2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
384
339
  3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
385
340
 
386
341
  ### โœ… Pre-Flight Self-Audit
387
-
388
- Review these questions before confirming output:
389
-
390
342
  ```
391
343
  โœ… Did I rely ONLY on real, verified tools and methods?
392
344
  โœ… Is this solution appropriately scoped to the user's constraints?
@@ -395,8 +347,6 @@ Review these questions before confirming output:
395
347
  ```
396
348
 
397
349
  ### ๐Ÿ›‘ Verification-Before-Completion (VBC) Protocol
398
-
399
350
  **CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
400
-
401
351
  - โŒ **Forbidden:** Declaring a task complete because the output "looks correct."
402
352
  - โœ… **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: devops-incident-responder
3
3
  description: Production incident response mastery. MTTR (Mean Time to Recovery) reduction, blameless post-mortems, rapid triaging, halting systemic cascading failures, isolating problematic deployments, and evidence-based forensic analysis. Use when stabilizing broken systems, fighting active production fires, or conducting root-cause post-mortems.
4
4
  tools: Read, Grep, Glob, Bash, Edit, Write
5
- version: 3.0.0
6
- last-updated: 2026-07-30
5
+ version: 4.0.0
6
+ last-updated: 2026-09-07
7
7
  skills:
8
8
  - devops-engineer
9
9
  - error-resilience
@@ -25,6 +25,12 @@ Before responding to production outages or performing incident triage, you MUST
25
25
  2. Circuit Breaker Severance (Section 42) โ†’ Sever failing downstream dependencies immediately to prevent cascading overload across the system
26
26
  3. Triage Hierarchy (Section 73) โ†’ Analyze metrics (what) โ†’ traces (where) โ†’ logs (why) sequentially to pinpoint root causes
27
27
 
28
+
29
+ ## Activation Boundaries
30
+
31
+ - **Activate when:** Operating in tasks requiring Production incident response mastery. MTTR (Mean Time to Recovery) reduction, blameless post-mortems, rapid triaging, halting systemic cascading failures, isolating problematic deployments, and evidence-based forensic analysis. Use when stabilizing broken systems, fighting active production fires, or conducting root-cause post-mortems..
32
+ - **DO NOT activate when:** The task falls strictly outside devops-incident-responder domain or belongs to a different dedicated specialist.
33
+
28
34
  ## Hallucination Traps (Read First)
29
35
 
30
36
  - โŒ Changing code during an active incident -> โœ… STABILIZE first (rollback, feature flag, traffic shift), investigate AFTER
@@ -33,8 +39,6 @@ Before responding to production outages or performing incident triage, you MUST
33
39
 
34
40
  ---
35
41
 
36
- # Incident Responder โ€” Production Stabilization Mastery
37
-
38
42
  ---
39
43
 
40
44
  ## 1. The Prime Directive (Stop the Bleeding)
@@ -122,69 +126,17 @@ AI coding assistants often fall into specific bad habits when dealing with this
122
126
 
123
127
  ---
124
128
 
125
- **Slash command: `/review` or `/tribunal-full`**
126
- **Active reviewers: `logic-reviewer` ยท `security-auditor`**
127
-
128
- ### โŒ Forbidden AI Tropes
129
-
130
- 1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
131
- 2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
132
- 3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
133
-
134
- Review these questions before confirming output:
135
-
136
- ```
137
- โœ… Did I rely ONLY on real, verified tools and methods?
138
- โœ… Is this solution appropriately scoped to the user's constraints?
139
- โœ… Did I handle potential failure modes and edge cases?
140
- โœ… Have I avoided generic boilerplate that doesn't add value?
141
- ```
142
-
143
- ### ๐Ÿ›‘ Verification-Before-Completion (VBC) Protocol
144
-
145
- **CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
146
-
147
- - โŒ **Forbidden:** Declaring a task complete because the output "looks correct."
148
- - โœ… **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.
149
-
150
- ## Pre-Flight Checklist
151
-
152
- - [ ] Have I reviewed the user's specific constraints and requests?
153
- - [ ] Have I checked the environment for relevant existing implementations?
154
-
155
- ## VBC Protocol (Verification-Before-Completion)
156
-
157
- You MUST verify existing code signatures and variables before attempting to modify or call them. No hallucination is permitted.
158
-
159
- ---
160
-
161
- ## ๐Ÿค– LLM-Specific Traps
162
-
163
- AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
164
-
165
- 1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
166
- 2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
167
- 3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
168
- 4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
169
- 5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
170
-
171
- ---
172
-
173
- ## ๐Ÿ›๏ธ Tribunal Integration (Anti-Hallucination)
129
+ ## ๐Ÿ›๏ธ Tribunal Verification & Guardrails
174
130
 
175
131
  **Slash command: `/review` or `/tribunal-full`**
176
132
  **Active reviewers: `logic-reviewer` ยท `security-auditor`**
177
133
 
178
134
  ### โŒ Forbidden AI Tropes
179
-
180
135
  1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
181
136
  2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
182
137
  3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
183
138
 
184
139
  ### โœ… Pre-Flight Self-Audit
185
-
186
- Review these questions before confirming output:
187
-
188
140
  ```
189
141
  โœ… Did I rely ONLY on real, verified tools and methods?
190
142
  โœ… Is this solution appropriately scoped to the user's constraints?
@@ -193,8 +145,6 @@ Review these questions before confirming output:
193
145
  ```
194
146
 
195
147
  ### ๐Ÿ›‘ Verification-Before-Completion (VBC) Protocol
196
-
197
148
  **CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
198
-
199
149
  - โŒ **Forbidden:** Declaring a task complete because the output "looks correct."
200
150
  - โœ… **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: diagnosing-bugs
3
3
  description: Systematic bug diagnosis methodology for hard bugs: Phase 1 (Build feedback loop), Phase 2 (Reproduce + minimise), Phase 3 (Hypothesise), Phase 4 (Instrument), Phase 5 (Fix + regression test), Phase 6 (Cleanup + post-mortem).
4
4
  tools: Read, Grep, Glob, Bash, Edit, Write
5
- version: 3.0.0
6
- last-updated: 2026-07-30
5
+ version: 4.0.0
6
+ last-updated: 2026-09-07
7
7
  skills:
8
8
  - systematic-debugging
9
9
  - test-result-analyzer
@@ -25,12 +25,16 @@ Before attempting bug diagnostics or proposing code fixes, you MUST inspect:
25
25
  2. Falsifiable Hypotheses Formulation (Section 107) โ†’ Formulate 3โ€“5 falsifiable hypotheses (`"If X is cause, then Y prediction"`) before testing any single theory
26
26
  3. Tagged Debug Logging & Cleanup (Section 123) โ†’ Tag debug log instrumentation (`[DEBUG-id]`) and sweep clean before finalizing regression fixes
27
27
 
28
- # Diagnosing Bugs โ€” A Discipline for Hard Bugs
29
-
30
28
  A systematic discipline for hard bugs. Skip phases only when explicitly justified.
31
29
 
32
30
  When exploring the codebase, read `CONTEXT.md` (if it exists) to get a clear mental model of the relevant modules, and check ADRs in the area you're touching.
33
31
 
32
+
33
+ ## Activation Boundaries
34
+
35
+ - **Activate when:** Operating in tasks requiring Systematic bug diagnosis methodology for hard bugs: Phase 1 (Build feedback loop), Phase 2 (Reproduce + minimise), Phase 3 (Hypothesise), Phase 4 (Instrument), Phase 5 (Fix + regression test), Phase 6 (Cleanup + post-mortem)..
36
+ - **DO NOT activate when:** The task falls strictly outside diagnosing-bugs domain or belongs to a different dedicated specialist.
37
+
34
38
  ---
35
39
 
36
40
  ## Protocol Overview
@@ -182,30 +186,25 @@ Ask: **What would have prevented this bug?** If the answer involves architectura
182
186
 
183
187
  ---
184
188
 
185
- ## ๐Ÿค– LLM-Specific Traps
189
+ ## ๐Ÿ›๏ธ Tribunal Verification & Guardrails
186
190
 
187
- 1. **Shotgun Debugging**: Making random edits across multiple files hoping the error disappears.
188
- 2. **Reading Code to Build Theories Before Having a Red Loop**: Jumping straight to hypotheses without a red-capable command.
189
- 3. **Symptom Swallowing**: Wrapping a throwing call in silent `try/catch` or returning empty fallbacks instead of addressing root cause.
190
- 4. **Testing Multiple Hypotheses at Once**: Changing multiple variables simultaneously, creating ambiguous results.
191
+ **Slash command: `/review` or `/tribunal-full`**
192
+ **Active reviewers: `logic-reviewer` ยท `security-auditor`**
191
193
 
192
- ---
193
-
194
- ## ๐Ÿ›๏ธ Tribunal Integration & Pre-Flight Self-Audit
195
-
196
- **Active Reviewers: `debugger` ยท `logic-reviewer` ยท `resilience-reviewer`**
194
+ ### โŒ Forbidden AI Tropes
195
+ 1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
196
+ 2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
197
+ 3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
197
198
 
199
+ ### โœ… Pre-Flight Self-Audit
198
200
  ```
199
- โœ… Has a red-capable feedback loop command been executed and verified red?
200
- โœ… Has the repro scenario been minimised to only load-bearing elements?
201
- โœ… Were 3โ€“5 falsifiable hypotheses formulated before testing?
202
- โœ… Are all debug logs tagged with [DEBUG-...] and cleaned up before merge?
203
- โœ… Has a regression test been added at a valid seam?
201
+ โœ… Did I rely ONLY on real, verified tools and methods?
202
+ โœ… Is this solution appropriately scoped to the user's constraints?
203
+ โœ… Did I handle potential failure modes and edge cases?
204
+ โœ… Have I avoided generic boilerplate that doesn't add value?
204
205
  ```
205
206
 
206
207
  ### ๐Ÿ›‘ Verification-Before-Completion (VBC) Protocol
207
-
208
208
  **CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
209
-
210
209
  - โŒ **Forbidden:** Declaring a task complete because the output "looks correct."
211
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.
@@ -1,8 +1,8 @@
1
1
  ---
2
2
  name: distill
3
3
  description: Simplify noisy interfaces by removing non-essential visual and operational complexity. Use when a UI has too many options, crowded toolbars, redundant text, or unnecessary visual containers.
4
- version: 3.0.0
5
- last-updated: 2026-07-30
4
+ version: 4.0.0
5
+ last-updated: 2026-09-07
6
6
  skills:
7
7
  - quieter
8
8
  - clarify
@@ -27,6 +27,12 @@ Before decluttering UI layouts, you MUST inspect:
27
27
 
28
28
  Systematically strip away visual clutter, redundant controls, and cognitive friction to reveal the core user task.
29
29
 
30
+
31
+ ## Activation Boundaries
32
+
33
+ - **Activate when:** Operating in tasks requiring Simplify noisy interfaces by removing non-essential visual and operational complexity. Use when a UI has too many options, crowded toolbars, redundant text, or unnecessary visual containers..
34
+ - **DO NOT activate when:** The task falls strictly outside distill domain or belongs to a different dedicated specialist.
35
+
30
36
  ---
31
37
 
32
38
  ## The 4 Distillation Steps
@@ -52,28 +58,25 @@ Systematically strip away visual clutter, redundant controls, and cognitive fric
52
58
 
53
59
  ---
54
60
 
55
- ## ๐Ÿค– LLM-Specific Traps
61
+ ## ๐Ÿ›๏ธ Tribunal Verification & Guardrails
56
62
 
57
- 1. **Hiding Essential Actions**: Removing actions that users need frequently, forcing extra clicks.
58
- 2. **Deleting Error Context**: Removing helpful inline validation messages while trimming copy.
59
-
60
- ---
63
+ **Slash command: `/review` or `/tribunal-full`**
64
+ **Active reviewers: `logic-reviewer` ยท `security-auditor`**
61
65
 
62
- ## ๐Ÿ›๏ธ Tribunal Integration (Anti-Hallucination)
63
-
64
- **Active reviewers: `frontend-reviewer` ยท `ui-ux-auditor`**
66
+ ### โŒ Forbidden AI Tropes
67
+ 1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
68
+ 2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
69
+ 3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
65
70
 
66
71
  ### โœ… Pre-Flight Self-Audit
67
-
68
72
  ```
69
- โœ… Is the primary task front and center without distraction?
70
- โœ… Have secondary/tertiary options been cleanly collapsed or progressively disclosed?
71
- โœ… Is all microcopy concise, active, and direct?
73
+ โœ… Did I rely ONLY on real, verified tools and methods?
74
+ โœ… Is this solution appropriately scoped to the user's constraints?
75
+ โœ… Did I handle potential failure modes and edge cases?
76
+ โœ… Have I avoided generic boilerplate that doesn't add value?
72
77
  ```
73
78
 
74
79
  ### ๐Ÿ›‘ Verification-Before-Completion (VBC) Protocol
75
-
76
80
  **CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
77
-
78
81
  - โŒ **Forbidden:** Declaring a task complete because the output "looks correct."
79
82
  - โœ… **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: documentation-templates
3
3
  description: Documentation templates and structure guidelines. README, API docs, code comments, and AI-friendly documentation.
4
4
  tools: Read, Grep, Glob, Bash, Edit, Write
5
- version: 3.0.0
6
- last-updated: 2026-07-30
5
+ version: 4.0.0
6
+ last-updated: 2026-09-07
7
7
  skills:
8
8
  - readme-builder
9
9
  - geo-fundamentals
@@ -25,6 +25,12 @@ Before creating or editing documentation, API references, or comments, you MUST
25
25
  2. Explain "Why", Not "What" in Code Comments (Section 147) โ†’ Document non-obvious business rules or bug workarounds; ban restating obvious code syntax
26
26
  3. AI-Friendly Documentation Mapping (Section 171) โ†’ Maintain `ARCHITECTURE.md` and `@purpose:` annotations for codebase mental models and automated ingestion
27
27
 
28
+
29
+ ## Activation Boundaries
30
+
31
+ - **Activate when:** Operating in tasks requiring Documentation templates and structure guidelines. README, API docs, code comments, and AI-friendly documentation..
32
+ - **DO NOT activate when:** The task falls strictly outside documentation-templates domain or belongs to a different dedicated specialist.
33
+
28
34
  ## Hallucination Traps (Read First)
29
35
 
30
36
  - โŒ Writing documentation that only AI-generated code can understand -> โœ… Docs are for HUMANS; use clear language and real examples
@@ -33,8 +39,6 @@ Before creating or editing documentation, API references, or comments, you MUST
33
39
 
34
40
  ---
35
41
 
36
- # Documentation Standards
37
-
38
42
  ---
39
43
 
40
44
  ## Documentation Types and Their Audiences
@@ -270,69 +274,17 @@ AI coding assistants often fall into specific bad habits when dealing with this
270
274
 
271
275
  ---
272
276
 
273
- **Slash command: `/review` or `/tribunal-full`**
274
- **Active reviewers: `logic-reviewer` ยท `security-auditor`**
275
-
276
- ### โŒ Forbidden AI Tropes
277
-
278
- 1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
279
- 2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
280
- 3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
281
-
282
- Review these questions before confirming output:
283
-
284
- ```
285
- โœ… Did I rely ONLY on real, verified tools and methods?
286
- โœ… Is this solution appropriately scoped to the user's constraints?
287
- โœ… Did I handle potential failure modes and edge cases?
288
- โœ… Have I avoided generic boilerplate that doesn't add value?
289
- ```
290
-
291
- ### ๐Ÿ›‘ Verification-Before-Completion (VBC) Protocol
292
-
293
- **CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
294
-
295
- - โŒ **Forbidden:** Declaring a task complete because the output "looks correct."
296
- - โœ… **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.
297
-
298
- ## Pre-Flight Checklist
299
-
300
- - [ ] Have I reviewed the user's specific constraints and requests?
301
- - [ ] Have I checked the environment for relevant existing implementations?
302
-
303
- ## VBC Protocol (Verification-Before-Completion)
304
-
305
- You MUST verify existing code signatures and variables before attempting to modify or call them. No hallucination is permitted.
306
-
307
- ---
308
-
309
- ## ๐Ÿค– LLM-Specific Traps
310
-
311
- AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
312
-
313
- 1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
314
- 2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
315
- 3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
316
- 4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
317
- 5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
318
-
319
- ---
320
-
321
- ## ๐Ÿ›๏ธ Tribunal Integration (Anti-Hallucination)
277
+ ## ๐Ÿ›๏ธ Tribunal Verification & Guardrails
322
278
 
323
279
  **Slash command: `/review` or `/tribunal-full`**
324
280
  **Active reviewers: `logic-reviewer` ยท `security-auditor`**
325
281
 
326
282
  ### โŒ Forbidden AI Tropes
327
-
328
283
  1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
329
284
  2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
330
285
  3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
331
286
 
332
287
  ### โœ… Pre-Flight Self-Audit
333
-
334
- Review these questions before confirming output:
335
-
336
288
  ```
337
289
  โœ… Did I rely ONLY on real, verified tools and methods?
338
290
  โœ… Is this solution appropriately scoped to the user's constraints?
@@ -341,8 +293,6 @@ Review these questions before confirming output:
341
293
  ```
342
294
 
343
295
  ### ๐Ÿ›‘ Verification-Before-Completion (VBC) Protocol
344
-
345
296
  **CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
346
-
347
297
  - โŒ **Forbidden:** Declaring a task complete because the output "looks correct."
348
298
  - โœ… **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: domain-modeling
3
3
  description: Builds and sharpens project domain models, ubiquitous language, entity relationships, and bounded contexts before writing code.
4
4
  tools: Read, Grep, Glob, Bash, Edit, Write
5
- version: 3.0.0
6
- last-updated: 2026-07-30
5
+ version: 4.0.0
6
+ last-updated: 2026-09-07
7
7
  skills:
8
8
  - architecture
9
9
  - codebase-design
@@ -25,10 +25,14 @@ Before designing domain entities or business modeling, you MUST inspect:
25
25
  2. Bounded Context Separation (Section 30) โ†’ Isolate models per context (e.g. Inventory Product vs Catalog Product); ban 60-column monolithic entities
26
26
  3. Aggregate Root Invariants (Section 34) โ†’ Mutate child entities strictly through Aggregate Root methods (`order.addItem(...)`); ban direct child mutations
27
27
 
28
- # Domain Modeling โ€” Ubiquitous Language & Bounded Contexts
29
-
30
28
  Model business domain concepts cleanly before committing to database schemas or API signatures.
31
29
 
30
+
31
+ ## Activation Boundaries
32
+
33
+ - **Activate when:** Operating in tasks requiring Builds and sharpens project domain models, ubiquitous language, entity relationships, and bounded contexts before writing code..
34
+ - **DO NOT activate when:** The task falls strictly outside domain-modeling domain or belongs to a different dedicated specialist.
35
+
32
36
  ---
33
37
 
34
38
  ## 4 Domain Modeling Rules
@@ -70,28 +74,25 @@ export class EmailAddress {
70
74
 
71
75
  ---
72
76
 
73
- ## ๐Ÿค– LLM-Specific Traps
77
+ ## ๐Ÿ›๏ธ Tribunal Verification & Guardrails
74
78
 
75
- 1. **Anemic Domain Models**: Creating plain data structures (`DTOs`) without domain methods, pushing business logic into scattered service files.
76
- 2. **Mixing Contexts**: Creating 1 giant `User` table with 60 columns spanning auth, billing, shipping, and notification preferences.
79
+ **Slash command: `/review` or `/tribunal-full`**
80
+ **Active reviewers: `logic-reviewer` ยท `security-auditor`**
77
81
 
78
- ---
79
-
80
- ## ๐Ÿ›๏ธ Tribunal Integration (Anti-Hallucination)
81
-
82
- **Active reviewers: `logic-reviewer` ยท `type-safety`**
82
+ ### โŒ Forbidden AI Tropes
83
+ 1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
84
+ 2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
85
+ 3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
83
86
 
84
87
  ### โœ… Pre-Flight Self-Audit
85
-
86
88
  ```
87
- โœ… Are entity names strictly consistent with the project's ubiquitous language?
88
- โœ… Are domain invariants enforced inside Aggregate Roots?
89
- โœ… Have complex primitives been converted into type-safe Value Objects?
89
+ โœ… Did I rely ONLY on real, verified tools and methods?
90
+ โœ… Is this solution appropriately scoped to the user's constraints?
91
+ โœ… Did I handle potential failure modes and edge cases?
92
+ โœ… Have I avoided generic boilerplate that doesn't add value?
90
93
  ```
91
94
 
92
95
  ### ๐Ÿ›‘ Verification-Before-Completion (VBC) Protocol
93
-
94
96
  **CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
95
-
96
97
  - โŒ **Forbidden:** Declaring a task complete because the output "looks correct."
97
98
  - โœ… **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
@@ -2,8 +2,8 @@
2
2
  name: duckdb-analytical-sql
3
3
  description: Embedded OLAP analytics, high-speed Parquet/JSON processing, in-memory analytical SQL, and DuckDB integrations in Node.js, Python, and WASM.
4
4
  tools: Read, Grep, Glob, Edit, Write
5
- version: 3.0.0
6
- last-updated: 2026-08-05
5
+ version: 4.0.0
6
+ last-updated: 2026-09-07
7
7
  script: .agent/scripts/schema_validator.js
8
8
  scripts-binding:
9
9
  - .agent/scripts/schema_validator.js
@@ -23,6 +23,12 @@ Before writing analytical queries:
23
23
  2. Memory Allocation โ†’ Set explicit memory limit (`SET max_memory = '4GB'`) to prevent OOM
24
24
  3. Vectorized Engine Usage โ†’ Use column-oriented aggregation over line-by-line loops
25
25
 
26
+
27
+ ## Activation Boundaries
28
+
29
+ - **Activate when:** Operating in tasks requiring Embedded OLAP analytics, high-speed Parquet/JSON processing, in-memory analytical SQL, and DuckDB integrations in Node.js, Python, and WASM..
30
+ - **DO NOT activate when:** The task falls strictly outside duckdb-analytical-sql domain or belongs to a different dedicated specialist.
31
+
26
32
  ## Node.js DuckDB Parquet Query Pattern
27
33
 
28
34
  ```typescript
@@ -53,7 +59,27 @@ export async function runAnalyticalReport(parquetGlobPath: string) {
53
59
  }
54
60
  ```
55
61
 
56
- ## ๐Ÿ›‘ Verification-Before-Completion (VBC) Protocol
62
+ ---
63
+
64
+ ## ๐Ÿ›๏ธ Tribunal Verification & Guardrails
65
+
66
+ **Slash command: `/review` or `/tribunal-full`**
67
+ **Active reviewers: `logic-reviewer` ยท `security-auditor`**
68
+
69
+ ### โŒ Forbidden AI Tropes
70
+ 1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
71
+ 2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
72
+ 3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
73
+
74
+ ### โœ… Pre-Flight Self-Audit
75
+ ```
76
+ โœ… Did I rely ONLY on real, verified tools and methods?
77
+ โœ… Is this solution appropriately scoped to the user's constraints?
78
+ โœ… Did I handle potential failure modes and edge cases?
79
+ โœ… Have I avoided generic boilerplate that doesn't add value?
80
+ ```
57
81
 
58
- - Verify query execution on sample Parquet dataset without loading entire file into RAM.
59
- - Benchmark query throughput against memory constraints.
82
+ ### ๐Ÿ›‘ Verification-Before-Completion (VBC) Protocol
83
+ **CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
84
+ - โŒ **Forbidden:** Declaring a task complete because the output "looks correct."
85
+ - โœ… **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: edge-ai-mobile
3
3
  description: On-device mobile AI, CoreML, Android NNAPI, ONNX Runtime Web/Mobile, local LLM execution (SLMs), and sub-10ms privacy-first edge inference.
4
4
  tools: Read, Grep, Glob, Edit, Write
5
- version: 3.0.0
6
- last-updated: 2026-08-05
5
+ version: 4.0.0
6
+ last-updated: 2026-09-07
7
7
  script: .agent/scripts/bundle_analyzer.js
8
8
  scripts-binding:
9
9
  - .agent/scripts/bundle_analyzer.js
@@ -23,6 +23,12 @@ Before deploying on-device AI models:
23
23
  2. Hardware Acceleration โ†’ Bind inference engine to Apple Neural Engine (ANE) or Android NPU
24
24
  3. Fallback Mechanism โ†’ Fall back gracefully to cloud LLM API if local inference exceeds latency budget (>200ms)
25
25
 
26
+
27
+ ## Activation Boundaries
28
+
29
+ - **Activate when:** Operating in tasks requiring On-device mobile AI, CoreML, Android NNAPI, ONNX Runtime Web/Mobile, local LLM execution (SLMs), and sub-10ms privacy-first edge inference..
30
+ - **DO NOT activate when:** The task falls strictly outside edge-ai-mobile domain or belongs to a different dedicated specialist.
31
+
26
32
  ## Mobile ONNX Edge Inference Pattern
27
33
 
28
34
  ```typescript
@@ -44,7 +50,27 @@ export async function runLocalEmbeddings(textTokens: number[]): Promise<Float32A
44
50
  }
45
51
  ```
46
52
 
47
- ## ๐Ÿ›‘ Verification-Before-Completion (VBC) Protocol
53
+ ---
54
+
55
+ ## ๐Ÿ›๏ธ Tribunal Verification & Guardrails
56
+
57
+ **Slash command: `/review` or `/tribunal-full`**
58
+ **Active reviewers: `logic-reviewer` ยท `security-auditor`**
59
+
60
+ ### โŒ Forbidden AI Tropes
61
+ 1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
62
+ 2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
63
+ 3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
64
+
65
+ ### โœ… Pre-Flight Self-Audit
66
+ ```
67
+ โœ… Did I rely ONLY on real, verified tools and methods?
68
+ โœ… Is this solution appropriately scoped to the user's constraints?
69
+ โœ… Did I handle potential failure modes and edge cases?
70
+ โœ… Have I avoided generic boilerplate that doesn't add value?
71
+ ```
48
72
 
49
- - Verify local memory usage remains under 300MB during active model inference.
50
- - Measure battery consumption impact.
73
+ ### ๐Ÿ›‘ Verification-Before-Completion (VBC) Protocol
74
+ **CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
75
+ - โŒ **Forbidden:** Declaring a task complete because the output "looks correct."
76
+ - โœ… **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.