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.
- package/.agent/ARCHITECTURE.md +7 -4
- package/.agent/routing_index.json +714 -654
- package/.agent/rules/GEMINI.md +10 -9
- package/.agent/skills/emil-design-eng/SKILL.md +147 -0
- package/.agent/skills/review-animations/SKILL.md +72 -0
- package/.agent/skills/review-animations/STANDARDS.md +73 -0
- package/.agent/workflows/generate.md +1 -1
- package/.agent/workflows/tribunal-database.md +8 -1
- package/.agent/workflows/tribunal-frontend.md +18 -99
- package/.agent/workflows/tribunal-full.md +12 -10
- package/.agent/workflows/tribunal-mobile.md +8 -1
- package/.agent/workflows/tribunal-performance.md +1 -1
- package/.agent/workflows/tribunal-speed.md +1 -1
- package/.agent/workflows/ui-ux-pro-max.md +22 -12
- package/README.md +15 -1
- package/bin/mcp-server.js +89 -19
- package/bin/wrapper.js +5 -4
- package/dist/cli.js +234 -0
- package/dist/commands/case.js +48 -0
- package/dist/commands/context.js +66 -0
- package/dist/commands/graph.js +38 -0
- package/dist/commands/hook.js +28 -0
- package/dist/commands/init.js +297 -0
- package/dist/commands/learn.js +60 -0
- package/dist/commands/marathon.js +45 -0
- package/dist/commands/mutate.js +30 -0
- package/dist/commands/status.js +35 -0
- package/dist/commands/sync.js +25 -0
- package/dist/commands/uninstall.js +42 -0
- package/dist/commands/update.js +37 -0
- package/dist/mcp/server.js +142 -0
- package/dist/types.js +8 -0
- package/dist/utils/fs.js +96 -0
- package/dist/utils/hasher.js +142 -0
- package/dist/utils/helpers.js +68 -0
- package/dist/utils/logger.js +54 -0
- package/dist/utils/version.js +150 -0
- package/package.json +3 -2
- package/scripts/benchmark.js +160 -0
- package/.agent/GEMINI.md +0 -127
- package/.agent/skills/doc.md +0 -209
package/.agent/ARCHITECTURE.md
CHANGED
|
@@ -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
|
|
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
|
|
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
|
-
| `
|
|
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/ ←
|
|
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
|