tribunal-kit 4.6.0 → 5.7.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 (41) hide show
  1. package/.agent/ARCHITECTURE.md +7 -4
  2. package/.agent/routing_index.json +714 -654
  3. package/.agent/rules/GEMINI.md +10 -9
  4. package/.agent/skills/emil-design-eng/SKILL.md +147 -0
  5. package/.agent/skills/review-animations/SKILL.md +72 -0
  6. package/.agent/skills/review-animations/STANDARDS.md +73 -0
  7. package/.agent/workflows/generate.md +1 -1
  8. package/.agent/workflows/tribunal-database.md +8 -1
  9. package/.agent/workflows/tribunal-frontend.md +18 -99
  10. package/.agent/workflows/tribunal-full.md +12 -10
  11. package/.agent/workflows/tribunal-mobile.md +8 -1
  12. package/.agent/workflows/tribunal-performance.md +1 -1
  13. package/.agent/workflows/tribunal-speed.md +1 -1
  14. package/.agent/workflows/ui-ux-pro-max.md +22 -12
  15. package/README.md +15 -1
  16. package/bin/mcp-server.js +89 -19
  17. package/bin/wrapper.js +5 -4
  18. package/dist/cli.js +234 -0
  19. package/dist/commands/case.js +48 -0
  20. package/dist/commands/context.js +66 -0
  21. package/dist/commands/graph.js +38 -0
  22. package/dist/commands/hook.js +28 -0
  23. package/dist/commands/init.js +297 -0
  24. package/dist/commands/learn.js +60 -0
  25. package/dist/commands/marathon.js +45 -0
  26. package/dist/commands/mutate.js +30 -0
  27. package/dist/commands/status.js +35 -0
  28. package/dist/commands/sync.js +25 -0
  29. package/dist/commands/uninstall.js +42 -0
  30. package/dist/commands/update.js +37 -0
  31. package/dist/mcp/server.js +142 -0
  32. package/dist/types.js +8 -0
  33. package/dist/utils/fs.js +96 -0
  34. package/dist/utils/hasher.js +142 -0
  35. package/dist/utils/helpers.js +68 -0
  36. package/dist/utils/logger.js +54 -0
  37. package/dist/utils/version.js +150 -0
  38. package/package.json +3 -2
  39. package/scripts/benchmark.js +160 -0
  40. package/.agent/GEMINI.md +0 -127
  41. package/.agent/skills/doc.md +0 -209
@@ -42,7 +42,7 @@ Type any of these in your AI IDE chat:
42
42
  | ----------------------- | -------------------------------------------------------------------------------------- | ----------------------------------- |
43
43
  | `/generate` | Full Tribunal: Maker → Parallel Review → Human Gate | `workflows/generate.md` |
44
44
  | `/review` | Audit existing code (no generation) | `workflows/review.md` |
45
- | `/tribunal-full` | ALL 16 reviewers at once — maximum coverage | `workflows/tribunal-full.md` |
45
+ | `/tribunal-full` | ALL 18 reviewers at once — maximum coverage | `workflows/tribunal-full.md` |
46
46
  | `/tribunal-backend` | Logic + Security + Deps + Types | `workflows/tribunal-backend.md` |
47
47
  | `/tribunal-frontend` | Logic + Security + Frontend + Types | `workflows/tribunal-frontend.md` |
48
48
  | `/tribunal-database` | Logic + Security + SQL | `workflows/tribunal-database.md` |
@@ -71,7 +71,7 @@ Type any of these in your AI IDE chat:
71
71
 
72
72
  ---
73
73
 
74
- ## The 16 Tribunal Agents
74
+ ## The 18 Tribunal Agents
75
75
 
76
76
  | Agent | File | Activates When |
77
77
  | ------------------------ | ---------------------------------- | ----------------------------------------------------------------------------------- |
@@ -90,7 +90,10 @@ Type any of these in your AI IDE chat:
90
90
  | `schema-reviewer` | `agents/schema-reviewer.md` | "validation", "zod", "pydantic", `/tribunal-backend`, `/tribunal-full` |
91
91
  | `precedence-reviewer` | `agents/precedence-reviewer.md` | All sessions — checks Case Law before generation |
92
92
  | `penetration-tester` | `agents/penetration-tester.md` | "pentest", "red team", "attack surface", `/tribunal-full` |
93
- | `db-latency-auditor` | `agents/db-latency-auditor.md` | "slow query", "index", "N+1", `/tribunal-database`, `/tribunal-full` |
93
+ | `ui-ux-auditor` | `agents/ui-ux-auditor.md` | "component", "ui", "design", "landing", `/tribunal-frontend`, `/tribunal-full` |
94
+ | `vitals-reviewer` | `agents/vitals-reviewer.md` | Frontend CWV depth, `/tribunal-speed`, `/tribunal-full` |
95
+ | `throughput-optimizer` | `agents/throughput-optimizer.md` | Server runtime, event-loop, `/tribunal-speed`, `/tribunal-full` |
96
+ | `db-latency-auditor` | `agents/db-latency-auditor.md` | "slow query", "index", "N+1", `/tribunal-speed`, `/tribunal-full` |
94
97
 
95
98
  ---
96
99
 
@@ -264,7 +267,7 @@ Script failures follow cascade rules:
264
267
  .agent/
265
268
  ├── ARCHITECTURE.md ← This file
266
269
  ├── GEMINI.md ← Root behavior config (includes /swarm routing)
267
- ├── agents/ ← 40 specialist + reviewer agents (16 reviewers + 24 domain)
270
+ ├── agents/ ← 43 specialist + reviewer agents (18 reviewers + 25 domain)
268
271
  │ ├── supervisor-agent.md ← Swarm triage, dispatch, synthesis
269
272
  │ ├── swarm-worker-contracts.md ← WorkerRequest/WorkerResult schemas
270
273
  │ └── swarm-worker-registry.md ← Task type → agent routing map