tribunal-kit 4.2.0 → 4.3.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 (182) hide show
  1. package/.agent/ARCHITECTURE.md +21 -14
  2. package/.agent/agents/swarm-worker-contracts.md +5 -5
  3. package/.agent/agents/ui-ux-auditor.md +292 -0
  4. package/.agent/rules/GEMINI.md +8 -8
  5. package/.agent/scripts/__pycache__/_colors.cpython-311.pyc +0 -0
  6. package/.agent/scripts/__pycache__/_utils.cpython-311.pyc +0 -0
  7. package/.agent/scripts/__pycache__/case_law_manager.cpython-311.pyc +0 -0
  8. package/.agent/scripts/_colors.js +18 -0
  9. package/.agent/scripts/_utils.js +42 -0
  10. package/.agent/scripts/auto_preview.js +197 -0
  11. package/.agent/scripts/bundle_analyzer.js +290 -0
  12. package/.agent/scripts/case_law_manager.js +684 -0
  13. package/.agent/scripts/checklist.js +266 -0
  14. package/.agent/scripts/colors.js +17 -0
  15. package/.agent/scripts/compress_skills.js +141 -0
  16. package/.agent/scripts/consolidate_skills.js +149 -0
  17. package/.agent/scripts/context_broker.js +609 -0
  18. package/.agent/scripts/deep_compress.js +150 -0
  19. package/.agent/scripts/dependency_analyzer.js +272 -0
  20. package/.agent/scripts/inner_loop_validator.js +465 -0
  21. package/.agent/scripts/lint_runner.js +187 -0
  22. package/.agent/scripts/minify_context.js +100 -0
  23. package/.agent/scripts/patch_skills_meta.js +156 -0
  24. package/.agent/scripts/patch_skills_output.js +244 -0
  25. package/.agent/scripts/schema_validator.js +297 -0
  26. package/.agent/scripts/security_scan.js +303 -0
  27. package/.agent/scripts/session_manager.js +276 -0
  28. package/.agent/scripts/skill_evolution.js +644 -0
  29. package/.agent/scripts/skill_integrator.js +313 -0
  30. package/.agent/scripts/strengthen_skills.js +193 -0
  31. package/.agent/scripts/strip_tribunal.js +47 -0
  32. package/.agent/scripts/swarm_dispatcher.js +360 -0
  33. package/.agent/scripts/test_runner.js +193 -0
  34. package/.agent/scripts/utils.js +32 -0
  35. package/.agent/scripts/verify_all.js +256 -0
  36. package/.agent/skills/agent-organizer/SKILL.md +3 -3
  37. package/.agent/skills/agentic-patterns/SKILL.md +3 -3
  38. package/.agent/skills/ai-prompt-injection-defense/SKILL.md +3 -3
  39. package/.agent/skills/api-patterns/SKILL.md +3 -3
  40. package/.agent/skills/api-security-auditor/SKILL.md +3 -3
  41. package/.agent/skills/app-builder/SKILL.md +3 -3
  42. package/.agent/skills/app-builder/templates/SKILL.md +1 -1
  43. package/.agent/skills/app-builder/templates/astro-static/TEMPLATE.md +1 -1
  44. package/.agent/skills/app-builder/templates/chrome-extension/TEMPLATE.md +1 -1
  45. package/.agent/skills/app-builder/templates/cli-tool/TEMPLATE.md +1 -1
  46. package/.agent/skills/app-builder/templates/electron-desktop/TEMPLATE.md +1 -1
  47. package/.agent/skills/app-builder/templates/express-api/TEMPLATE.md +1 -1
  48. package/.agent/skills/app-builder/templates/flutter-app/TEMPLATE.md +1 -1
  49. package/.agent/skills/app-builder/templates/monorepo-turborepo/TEMPLATE.md +1 -1
  50. package/.agent/skills/app-builder/templates/nextjs-fullstack/TEMPLATE.md +1 -1
  51. package/.agent/skills/app-builder/templates/nextjs-saas/TEMPLATE.md +1 -1
  52. package/.agent/skills/app-builder/templates/nextjs-static/TEMPLATE.md +1 -1
  53. package/.agent/skills/app-builder/templates/nuxt-app/TEMPLATE.md +1 -1
  54. package/.agent/skills/app-builder/templates/python-fastapi/TEMPLATE.md +1 -1
  55. package/.agent/skills/app-builder/templates/react-native-app/TEMPLATE.md +1 -1
  56. package/.agent/skills/appflow-wireframe/SKILL.md +3 -3
  57. package/.agent/skills/architecture/SKILL.md +3 -3
  58. package/.agent/skills/authentication-best-practices/SKILL.md +3 -3
  59. package/.agent/skills/bash-linux/SKILL.md +3 -3
  60. package/.agent/skills/behavioral-modes/SKILL.md +3 -3
  61. package/.agent/skills/brainstorming/SKILL.md +3 -3
  62. package/.agent/skills/building-native-ui/SKILL.md +3 -3
  63. package/.agent/skills/clean-code/SKILL.md +3 -3
  64. package/.agent/skills/code-review-checklist/SKILL.md +3 -3
  65. package/.agent/skills/config-validator/SKILL.md +3 -3
  66. package/.agent/skills/csharp-developer/SKILL.md +3 -3
  67. package/.agent/skills/data-validation-schemas/SKILL.md +3 -3
  68. package/.agent/skills/database-design/SKILL.md +3 -3
  69. package/.agent/skills/deployment-procedures/SKILL.md +3 -3
  70. package/.agent/skills/devops-engineer/SKILL.md +3 -3
  71. package/.agent/skills/devops-incident-responder/SKILL.md +3 -3
  72. package/.agent/skills/doc.md +1 -1
  73. package/.agent/skills/documentation-templates/SKILL.md +3 -3
  74. package/.agent/skills/edge-computing/SKILL.md +3 -3
  75. package/.agent/skills/error-resilience/SKILL.md +3 -3
  76. package/.agent/skills/extract-design-system/SKILL.md +3 -3
  77. package/.agent/skills/framer-motion-expert/SKILL.md +3 -4
  78. package/.agent/skills/frontend-design/SKILL.md +3 -3
  79. package/.agent/skills/game-design-expert/SKILL.md +3 -3
  80. package/.agent/skills/game-engineering-expert/SKILL.md +3 -3
  81. package/.agent/skills/geo-fundamentals/SKILL.md +3 -3
  82. package/.agent/skills/github-operations/SKILL.md +3 -3
  83. package/.agent/skills/gsap-core/SKILL.md +0 -2
  84. package/.agent/skills/gsap-frameworks/SKILL.md +0 -2
  85. package/.agent/skills/gsap-performance/SKILL.md +0 -2
  86. package/.agent/skills/gsap-plugins/SKILL.md +0 -2
  87. package/.agent/skills/gsap-react/SKILL.md +0 -2
  88. package/.agent/skills/gsap-scrolltrigger/SKILL.md +0 -2
  89. package/.agent/skills/gsap-timeline/SKILL.md +0 -2
  90. package/.agent/skills/gsap-utils/SKILL.md +0 -2
  91. package/.agent/skills/i18n-localization/SKILL.md +3 -3
  92. package/.agent/skills/intelligent-routing/SKILL.md +3 -3
  93. package/.agent/skills/lint-and-validate/SKILL.md +3 -3
  94. package/.agent/skills/llm-engineering/SKILL.md +3 -3
  95. package/.agent/skills/local-first/SKILL.md +3 -3
  96. package/.agent/skills/mcp-builder/SKILL.md +3 -3
  97. package/.agent/skills/mobile-design/SKILL.md +3 -3
  98. package/.agent/skills/monorepo-management/SKILL.md +3 -3
  99. package/.agent/skills/motion-engineering/SKILL.md +4 -4
  100. package/.agent/skills/nextjs-react-expert/SKILL.md +3 -3
  101. package/.agent/skills/nodejs-best-practices/SKILL.md +3 -3
  102. package/.agent/skills/observability/SKILL.md +3 -3
  103. package/.agent/skills/parallel-agents/SKILL.md +3 -3
  104. package/.agent/skills/performance-profiling/SKILL.md +3 -3
  105. package/.agent/skills/plan-writing/SKILL.md +3 -3
  106. package/.agent/skills/platform-engineer/SKILL.md +3 -3
  107. package/.agent/skills/playwright-best-practices/SKILL.md +3 -3
  108. package/.agent/skills/powershell-windows/SKILL.md +3 -3
  109. package/.agent/skills/project-idioms/SKILL.md +3 -3
  110. package/.agent/skills/python-patterns/SKILL.md +3 -3
  111. package/.agent/skills/python-pro/SKILL.md +3 -3
  112. package/.agent/skills/react-specialist/SKILL.md +3 -3
  113. package/.agent/skills/readme-builder/SKILL.md +3 -3
  114. package/.agent/skills/realtime-patterns/SKILL.md +3 -3
  115. package/.agent/skills/red-team-tactics/SKILL.md +3 -3
  116. package/.agent/skills/rust-pro/SKILL.md +3 -3
  117. package/.agent/skills/seo-fundamentals/SKILL.md +3 -3
  118. package/.agent/skills/server-management/SKILL.md +3 -3
  119. package/.agent/skills/shadcn-ui-expert/SKILL.md +3 -3
  120. package/.agent/skills/skill-creator/SKILL.md +3 -3
  121. package/.agent/skills/sql-pro/SKILL.md +3 -3
  122. package/.agent/skills/supabase-postgres-best-practices/SKILL.md +3 -3
  123. package/.agent/skills/swiftui-expert/SKILL.md +3 -3
  124. package/.agent/skills/systematic-debugging/SKILL.md +3 -3
  125. package/.agent/skills/tailwind-patterns/SKILL.md +3 -3
  126. package/.agent/skills/tdd-workflow/SKILL.md +3 -3
  127. package/.agent/skills/test-result-analyzer/SKILL.md +3 -3
  128. package/.agent/skills/testing-patterns/SKILL.md +3 -3
  129. package/.agent/skills/trend-researcher/SKILL.md +3 -3
  130. package/.agent/skills/typescript-advanced/SKILL.md +3 -3
  131. package/.agent/skills/ui-ux-pro-max/SKILL.md +3 -3
  132. package/.agent/skills/ui-ux-researcher/SKILL.md +3 -3
  133. package/.agent/skills/vue-expert/SKILL.md +3 -3
  134. package/.agent/skills/vulnerability-scanner/SKILL.md +3 -3
  135. package/.agent/skills/web-accessibility-auditor/SKILL.md +3 -3
  136. package/.agent/skills/web-design-guidelines/SKILL.md +3 -3
  137. package/.agent/skills/webapp-testing/SKILL.md +3 -3
  138. package/.agent/skills/whimsy-injector/SKILL.md +3 -3
  139. package/.agent/skills/workflow-optimizer/SKILL.md +3 -3
  140. package/.agent/workflows/audit.md +6 -6
  141. package/.agent/workflows/deploy.md +1 -1
  142. package/.agent/workflows/generate.md +23 -6
  143. package/.agent/workflows/session.md +5 -5
  144. package/.agent/workflows/swarm.md +2 -2
  145. package/README.md +64 -8
  146. package/bin/tribunal-kit.js +277 -45
  147. package/package.json +9 -6
  148. package/scripts/changelog.js +167 -0
  149. package/scripts/sync-version.js +81 -0
  150. package/.agent/scripts/__pycache__/auto_preview.cpython-311.pyc +0 -0
  151. package/.agent/scripts/__pycache__/bundle_analyzer.cpython-311.pyc +0 -0
  152. package/.agent/scripts/__pycache__/checklist.cpython-311.pyc +0 -0
  153. package/.agent/scripts/__pycache__/dependency_analyzer.cpython-311.pyc +0 -0
  154. package/.agent/scripts/__pycache__/security_scan.cpython-311.pyc +0 -0
  155. package/.agent/scripts/__pycache__/session_manager.cpython-311.pyc +0 -0
  156. package/.agent/scripts/__pycache__/skill_integrator.cpython-311.pyc +0 -0
  157. package/.agent/scripts/__pycache__/swarm_dispatcher.cpython-311.pyc +0 -0
  158. package/.agent/scripts/__pycache__/test_runner.cpython-311.pyc +0 -0
  159. package/.agent/scripts/__pycache__/verify_all.cpython-311.pyc +0 -0
  160. package/.agent/scripts/auto_preview.py +0 -180
  161. package/.agent/scripts/bundle_analyzer.py +0 -259
  162. package/.agent/scripts/case_law_manager.py +0 -755
  163. package/.agent/scripts/checklist.py +0 -209
  164. package/.agent/scripts/compress_skills.py +0 -167
  165. package/.agent/scripts/consolidate_skills.py +0 -173
  166. package/.agent/scripts/deep_compress.py +0 -202
  167. package/.agent/scripts/dependency_analyzer.py +0 -247
  168. package/.agent/scripts/lint_runner.py +0 -188
  169. package/.agent/scripts/minify_context.py +0 -80
  170. package/.agent/scripts/patch_skills_meta.py +0 -177
  171. package/.agent/scripts/patch_skills_output.py +0 -285
  172. package/.agent/scripts/schema_validator.py +0 -279
  173. package/.agent/scripts/security_scan.py +0 -224
  174. package/.agent/scripts/session_manager.py +0 -261
  175. package/.agent/scripts/skill_evolution.py +0 -563
  176. package/.agent/scripts/skill_integrator.py +0 -234
  177. package/.agent/scripts/strengthen_skills.py +0 -220
  178. package/.agent/scripts/strip_tribunal.py +0 -41
  179. package/.agent/scripts/swarm_dispatcher.py +0 -350
  180. package/.agent/scripts/test_runner.py +0 -192
  181. package/.agent/scripts/test_swarm_dispatcher.py +0 -163
  182. package/.agent/scripts/verify_all.py +0 -195
@@ -438,7 +438,7 @@ STEP 4: Format Output
438
438
 
439
439
  ---
440
440
 
441
- ## 🤖 LLM-Specific Traps
441
+
442
442
 
443
443
  AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
444
444
 
@@ -450,7 +450,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
450
450
 
451
451
  ---
452
452
 
453
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
453
+
454
454
 
455
455
  **Slash command: `/review` or `/tribunal-full`**
456
456
  **Active reviewers: `logic-reviewer` · `security-auditor`**
@@ -461,7 +461,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
461
461
  2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
462
462
  3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
463
463
 
464
- ### ✅ Pre-Flight Self-Audit
464
+
465
465
 
466
466
  Review these questions before confirming output:
467
467
  ```
@@ -154,7 +154,7 @@ export function FastList({ data }) {
154
154
 
155
155
  ---
156
156
 
157
- ## 🤖 LLM-Specific Traps
157
+
158
158
 
159
159
  AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
160
160
 
@@ -166,7 +166,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
166
166
 
167
167
  ---
168
168
 
169
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
169
+
170
170
 
171
171
  **Slash command: `/review` or `/tribunal-full`**
172
172
  **Active reviewers: `logic-reviewer` · `security-auditor`**
@@ -177,7 +177,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
177
177
  2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
178
178
  3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
179
179
 
180
- ### ✅ Pre-Flight Self-Audit
180
+
181
181
 
182
182
  Review these questions before confirming output:
183
183
  ```
@@ -333,7 +333,7 @@ function processUser(user: User) {
333
333
 
334
334
  ---
335
335
 
336
- ## 🤖 LLM-Specific Traps
336
+
337
337
 
338
338
  AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
339
339
 
@@ -345,7 +345,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
345
345
 
346
346
  ---
347
347
 
348
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
348
+
349
349
 
350
350
  **Slash command: `/review` or `/tribunal-full`**
351
351
  **Active reviewers: `logic-reviewer` · `security-auditor`**
@@ -356,7 +356,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
356
356
  2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
357
357
  3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
358
358
 
359
- ### ✅ Pre-Flight Self-Audit
359
+
360
360
 
361
361
  Review these questions before confirming output:
362
362
  ```
@@ -146,7 +146,7 @@ Evidence: [link to terminal output, test result, or file diff]
146
146
 
147
147
  ---
148
148
 
149
- ## 🤖 LLM-Specific Traps
149
+
150
150
 
151
151
  AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
152
152
 
@@ -158,7 +158,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
158
158
 
159
159
  ---
160
160
 
161
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
161
+
162
162
 
163
163
  **Slash command: `/review` or `/tribunal-full`**
164
164
  **Active reviewers: `logic-reviewer` · `security-auditor`**
@@ -169,7 +169,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
169
169
  2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
170
170
  3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
171
171
 
172
- ### ✅ Pre-Flight Self-Audit
172
+
173
173
 
174
174
  Review these questions before confirming output:
175
175
  ```
@@ -117,7 +117,7 @@ When automating updates to a JSON configuration (e.g., adding a new skill to `co
117
117
 
118
118
  ---
119
119
 
120
- ## 🤖 LLM-Specific Traps
120
+
121
121
 
122
122
  AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
123
123
 
@@ -129,7 +129,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
129
129
 
130
130
  ---
131
131
 
132
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
132
+
133
133
 
134
134
  **Slash command: `/review` or `/tribunal-full`**
135
135
  **Active reviewers: `logic-reviewer` · `security-auditor`**
@@ -140,7 +140,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
140
140
  2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
141
141
  3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
142
142
 
143
- ### ✅ Pre-Flight Self-Audit
143
+
144
144
 
145
145
  Review these questions before confirming output:
146
146
  ```
@@ -470,7 +470,7 @@ public class UsersApiTests(WebApplicationFactory<Program> factory)
470
470
 
471
471
  ---
472
472
 
473
- ## 🤖 LLM-Specific Traps
473
+
474
474
 
475
475
  AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
476
476
 
@@ -482,7 +482,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
482
482
 
483
483
  ---
484
484
 
485
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
485
+
486
486
 
487
487
  **Slash command: `/review` or `/tribunal-full`**
488
488
  **Active reviewers: `logic-reviewer` · `security-auditor`**
@@ -493,7 +493,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
493
493
  2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
494
494
  3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
495
495
 
496
- ### ✅ Pre-Flight Self-Audit
496
+
497
497
 
498
498
  Review these questions before confirming output:
499
499
  ```
@@ -280,7 +280,7 @@ function SignupForm() {
280
280
 
281
281
  ---
282
282
 
283
- ## 🤖 LLM-Specific Traps
283
+
284
284
 
285
285
  AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
286
286
 
@@ -292,7 +292,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
292
292
 
293
293
  ---
294
294
 
295
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
295
+
296
296
 
297
297
  **Slash command: `/review` or `/tribunal-full`**
298
298
  **Active reviewers: `logic-reviewer` · `security-auditor`**
@@ -303,7 +303,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
303
303
  2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
304
304
  3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
305
305
 
306
- ### ✅ Pre-Flight Self-Audit
306
+
307
307
 
308
308
  Review these questions before confirming output:
309
309
  ```
@@ -192,7 +192,7 @@ Poolers:
192
192
 
193
193
  ---
194
194
 
195
- ## 🤖 LLM-Specific Traps
195
+
196
196
 
197
197
  AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
198
198
 
@@ -204,7 +204,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
204
204
 
205
205
  ---
206
206
 
207
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
207
+
208
208
 
209
209
  **Slash command: `/review` or `/tribunal-full`**
210
210
  **Active reviewers: `logic-reviewer` · `security-auditor`**
@@ -215,7 +215,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
215
215
  2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
216
216
  3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
217
217
 
218
- ### ✅ Pre-Flight Self-Audit
218
+
219
219
 
220
220
  Review these questions before confirming output:
221
221
  ```
@@ -121,7 +121,7 @@ If the answer relies on "recompiling the old git commit," you have failed.
121
121
 
122
122
  ---
123
123
 
124
- ## 🤖 LLM-Specific Traps
124
+
125
125
 
126
126
  AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
127
127
 
@@ -133,7 +133,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
133
133
 
134
134
  ---
135
135
 
136
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
136
+
137
137
 
138
138
  **Slash command: `/review` or `/tribunal-full`**
139
139
  **Active reviewers: `logic-reviewer` · `security-auditor`**
@@ -144,7 +144,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
144
144
  2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
145
145
  3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
146
146
 
147
- ### ✅ Pre-Flight Self-Audit
147
+
148
148
 
149
149
  Review these questions before confirming output:
150
150
  ```
@@ -297,7 +297,7 @@ Security:
297
297
 
298
298
  ---
299
299
 
300
- ## 🤖 LLM-Specific Traps
300
+
301
301
 
302
302
  AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
303
303
 
@@ -309,7 +309,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
309
309
 
310
310
  ---
311
311
 
312
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
312
+
313
313
 
314
314
  **Slash command: `/review` or `/tribunal-full`**
315
315
  **Active reviewers: `logic-reviewer` · `security-auditor`**
@@ -320,7 +320,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
320
320
  2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
321
321
  3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
322
322
 
323
- ### ✅ Pre-Flight Self-Audit
323
+
324
324
 
325
325
  Review these questions before confirming output:
326
326
  ```
@@ -89,7 +89,7 @@ Incident response does not end when the system recovers. It ends when the system
89
89
 
90
90
  ---
91
91
 
92
- ## 🤖 LLM-Specific Traps
92
+
93
93
 
94
94
  AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
95
95
 
@@ -101,7 +101,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
101
101
 
102
102
  ---
103
103
 
104
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
104
+
105
105
 
106
106
  **Slash command: `/review` or `/tribunal-full`**
107
107
  **Active reviewers: `logic-reviewer` · `security-auditor`**
@@ -112,7 +112,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
112
112
  2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
113
113
  3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
114
114
 
115
- ### ✅ Pre-Flight Self-Audit
115
+
116
116
 
117
117
  Review these questions before confirming output:
118
118
  ```
@@ -174,4 +174,4 @@ By creating Skills, you transform a general AI model into an expert for your pro
174
174
  - ✅ Automatically add license headers
175
175
  - ✅ The Agent automatically knows how to work with your team
176
176
 
177
- Instead of constantly reminding the AI to "remember to add the license" or "fix the commit format," now the Agent will do it automatically!
177
+ Instead of constantly reminding the AI to "remember to add the license" or "fix the commit format," now the Agent will do it automatically!
@@ -231,7 +231,7 @@ Evidence: [link to terminal output, test result, or file diff]
231
231
 
232
232
  ---
233
233
 
234
- ## 🤖 LLM-Specific Traps
234
+
235
235
 
236
236
  AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
237
237
 
@@ -243,7 +243,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
243
243
 
244
244
  ---
245
245
 
246
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
246
+
247
247
 
248
248
  **Slash command: `/review` or `/tribunal-full`**
249
249
  **Active reviewers: `logic-reviewer` · `security-auditor`**
@@ -254,7 +254,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
254
254
  2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
255
255
  3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
256
256
 
257
- ### ✅ Pre-Flight Self-Audit
257
+
258
258
 
259
259
  Review these questions before confirming output:
260
260
  ```
@@ -133,7 +133,7 @@ export class ChatRoom {
133
133
 
134
134
  ---
135
135
 
136
- ## 🤖 LLM-Specific Traps
136
+
137
137
 
138
138
  AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
139
139
 
@@ -145,7 +145,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
145
145
 
146
146
  ---
147
147
 
148
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
148
+
149
149
 
150
150
  **Slash command: `/review` or `/tribunal-full`**
151
151
  **Active reviewers: `logic-reviewer` · `security-auditor`**
@@ -156,7 +156,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
156
156
  2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
157
157
  3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
158
158
 
159
- ### ✅ Pre-Flight Self-Audit
159
+
160
160
 
161
161
  Review these questions before confirming output:
162
162
  ```
@@ -380,7 +380,7 @@ async function processWithDLQ<T>(
380
380
 
381
381
  ---
382
382
 
383
- ## 🤖 LLM-Specific Traps
383
+
384
384
 
385
385
  AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
386
386
 
@@ -392,7 +392,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
392
392
 
393
393
  ---
394
394
 
395
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
395
+
396
396
 
397
397
  **Slash command: `/review` or `/tribunal-full`**
398
398
  **Active reviewers: `logic-reviewer` · `security-auditor`**
@@ -403,7 +403,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
403
403
  2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
404
404
  3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
405
405
 
406
- ### ✅ Pre-Flight Self-Audit
406
+
407
407
 
408
408
  Review these questions before confirming output:
409
409
  ```
@@ -110,7 +110,7 @@ A Design System must mandate accessibility at the token level, preventing develo
110
110
 
111
111
  ---
112
112
 
113
- ## 🤖 LLM-Specific Traps
113
+
114
114
 
115
115
  AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
116
116
 
@@ -122,7 +122,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
122
122
 
123
123
  ---
124
124
 
125
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
125
+
126
126
 
127
127
  **Slash command: `/review` or `/tribunal-full`**
128
128
  **Active reviewers: `logic-reviewer` · `security-auditor`**
@@ -133,7 +133,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
133
133
  2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
134
134
  3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
135
135
 
136
- ### ✅ Pre-Flight Self-Audit
136
+
137
137
 
138
138
  Review these questions before confirming output:
139
139
  ```
@@ -48,7 +48,6 @@ const item = {
48
48
  <motion.ul variants={container} initial="hidden" animate="visible">
49
49
  {list.map(e => <motion.li key={e.id} variants={item}>{e.name}</motion.li>)}
50
50
  </motion.ul>
51
- // Variant names propagate to children automatically — no need to set initial/animate on each child
52
51
  ```
53
52
 
54
53
  ### Transitions
@@ -197,7 +196,7 @@ const reduce = useReducedMotion();
197
196
 
198
197
  ---
199
198
 
200
- ## 🤖 LLM-Specific Traps
199
+
201
200
 
202
201
  AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
203
202
 
@@ -209,7 +208,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
209
208
 
210
209
  ---
211
210
 
212
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
211
+
213
212
 
214
213
  **Slash command: `/review` or `/tribunal-full`**
215
214
  **Active reviewers: `logic-reviewer` · `security-auditor`**
@@ -220,7 +219,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
220
219
  2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
221
220
  3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
222
221
 
223
- ### ✅ Pre-Flight Self-Audit
222
+
224
223
 
225
224
  Review these questions before confirming output:
226
225
  ```
@@ -153,7 +153,7 @@ Design is fundamentally broken if it excludes users.
153
153
 
154
154
  ---
155
155
 
156
- ## 🤖 LLM-Specific Traps
156
+
157
157
 
158
158
  AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
159
159
 
@@ -165,7 +165,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
165
165
 
166
166
  ---
167
167
 
168
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
168
+
169
169
 
170
170
  **Slash command: `/review` or `/tribunal-full`**
171
171
  **Active reviewers: `logic-reviewer` · `security-auditor`**
@@ -176,7 +176,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
176
176
  2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
177
177
  3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
178
178
 
179
- ### ✅ Pre-Flight Self-Audit
179
+
180
180
 
181
181
  Review these questions before confirming output:
182
182
  ```
@@ -81,7 +81,7 @@ Never rely on developers "feeling" the game. You must systematically log death c
81
81
 
82
82
  ---
83
83
 
84
- ## 🤖 LLM-Specific Traps
84
+
85
85
 
86
86
  AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
87
87
 
@@ -93,7 +93,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
93
93
 
94
94
  ---
95
95
 
96
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
96
+
97
97
 
98
98
  **Slash command: `/review` or `/tribunal-full`**
99
99
  **Active reviewers: `logic-reviewer` · `security-auditor`**
@@ -104,7 +104,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
104
104
  2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
105
105
  3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
106
106
 
107
- ### ✅ Pre-Flight Self-Audit
107
+
108
108
 
109
109
  Review these questions before confirming output:
110
110
  ```
@@ -98,7 +98,7 @@ Never trust the client. A multiplayer architecture dictates latency fundamentall
98
98
 
99
99
  ---
100
100
 
101
- ## 🤖 LLM-Specific Traps
101
+
102
102
 
103
103
  AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
104
104
 
@@ -110,7 +110,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
110
110
 
111
111
  ---
112
112
 
113
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
113
+
114
114
 
115
115
  **Slash command: `/review` or `/tribunal-full`**
116
116
  **Active reviewers: `logic-reviewer` · `security-auditor`**
@@ -121,7 +121,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
121
121
  2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
122
122
  3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
123
123
 
124
- ### ✅ Pre-Flight Self-Audit
124
+
125
125
 
126
126
  Review these questions before confirming output:
127
127
  ```
@@ -99,7 +99,7 @@ When an AI tries to write code using your product, it scrapes your API documenta
99
99
 
100
100
  ---
101
101
 
102
- ## 🤖 LLM-Specific Traps
102
+
103
103
 
104
104
  AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
105
105
 
@@ -111,7 +111,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
111
111
 
112
112
  ---
113
113
 
114
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
114
+
115
115
 
116
116
  **Slash command: `/review` or `/tribunal-full`**
117
117
  **Active reviewers: `logic-reviewer` · `security-auditor`**
@@ -122,7 +122,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
122
122
  2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
123
123
  3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
124
124
 
125
- ### ✅ Pre-Flight Self-Audit
125
+
126
126
 
127
127
  Review these questions before confirming output:
128
128
  ```
@@ -281,7 +281,7 @@ export default {
281
281
 
282
282
  ---
283
283
 
284
- ## 🤖 LLM-Specific Traps
284
+
285
285
 
286
286
  AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
287
287
 
@@ -293,7 +293,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
293
293
 
294
294
  ---
295
295
 
296
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
296
+
297
297
 
298
298
  **Slash command: `/review` or `/tribunal-full`**
299
299
  **Active reviewers: `logic-reviewer` · `security-auditor`**
@@ -304,7 +304,7 @@ AI coding assistants often fall into specific bad habits when dealing with this
304
304
  2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
305
305
  3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
306
306
 
307
- ### ✅ Pre-Flight Self-Audit
307
+
308
308
 
309
309
  Review these questions before confirming output:
310
310
  ```
@@ -255,8 +255,6 @@ Full docs: [gsap.matchMedia()](https://gsap.com/docs/v3/GSAP/gsap.matchMedia/).
255
255
 
256
256
  ---
257
257
 
258
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
259
-
260
258
  **Slash command: `/review` or `/tribunal-full`**
261
259
  **Active reviewers: `logic-reviewer` · `security-auditor`**
262
260
 
@@ -154,8 +154,6 @@ Do not create GSAP animations in the component’s setup or in a synchronous top
154
154
 
155
155
  ---
156
156
 
157
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
158
-
159
157
  **Slash command: `/review` or `/tribunal-full`**
160
158
  **Active reviewers: `logic-reviewer` · `security-auditor`**
161
159
 
@@ -80,8 +80,6 @@ document.querySelector("#container").addEventListener("mousemove", (e) => {
80
80
 
81
81
  ---
82
82
 
83
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
84
-
85
83
  **Slash command: `/review` or `/tribunal-full`**
86
84
  **Active reviewers: `logic-reviewer` · `security-auditor`**
87
85
 
@@ -427,8 +427,6 @@ https://gsap.com/docs/v3/Plugins/
427
427
 
428
428
  ---
429
429
 
430
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
431
-
432
430
  **Slash command: `/review` or `/tribunal-full`**
433
431
  **Active reviewers: `logic-reviewer` · `security-auditor`**
434
432
 
@@ -136,8 +136,6 @@ GSAP runs in the browser. Do not call gsap or ScrollTrigger during SSR.
136
136
  https://gsap.com/resources/React
137
137
  ---
138
138
 
139
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
140
-
141
139
  **Slash command: `/review` or `/tribunal-full`**
142
140
  **Active reviewers: `logic-reviewer` · `security-auditor`**
143
141
 
@@ -297,8 +297,6 @@ https://gsap.com/docs/v3/Plugins/ScrollTrigger/
297
297
 
298
298
  ---
299
299
 
300
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
301
-
302
300
  **Slash command: `/review` or `/tribunal-full`**
303
301
  **Active reviewers: `logic-reviewer` · `security-auditor`**
304
302
 
@@ -108,8 +108,6 @@ master.to(".c", { opacity: 0 }, "+=0.2");
108
108
 
109
109
  ---
110
110
 
111
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
112
-
113
111
  **Slash command: `/review` or `/tribunal-full`**
114
112
  **Active reviewers: `logic-reviewer` · `security-auditor`**
115
113
 
@@ -285,8 +285,6 @@ https://gsap.com/docs/v3/HelperFunctions
285
285
 
286
286
  ---
287
287
 
288
- ## 🏛️ Tribunal Integration (Anti-Hallucination)
289
-
290
288
  **Slash command: `/review` or `/tribunal-full`**
291
289
  **Active reviewers: `logic-reviewer` · `security-auditor`**
292
290