tribunal-kit 5.8.0 → 5.8.2
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/agents/project-planner.md +5 -0
- package/.agent/history/memory/.memory.idx +1232 -1
- package/.agent/history/memory/MEMORY.md +82 -1
- package/.agent/rules/GEMINI.md +30 -5
- package/.agent/scripts/signal_detector.js +173 -0
- package/.agent/scripts/skill_evolution.js +298 -53
- package/.agent/skills/fabel-protocol/SKILL.md +37 -1
- package/.agent/workflows/generate.md +1 -0
- package/.agent/workflows/tribunal-full.md +4 -3
- package/CONTRIBUTING.md +134 -0
- package/README.md +138 -12
- package/SECURITY.md +52 -0
- package/bin/mcp-server.js +38 -0
- package/bin/tribunal-kit.js +92 -46
- package/bin/wrapper.js +5 -1
- package/dist/cli.js +13 -0
- package/dist/commands/align.js +201 -0
- package/dist/commands/init.js +68 -30
- package/dist/esm/index.mjs +116 -0
- package/dist/index.d.ts +288 -0
- package/dist/utils/helpers.js +21 -9
- package/package.json +33 -9
|
@@ -103,6 +103,11 @@ Wave 4 — Polish & Deploy
|
|
|
103
103
|
> [!IMPORTANT]
|
|
104
104
|
> [Any breaking changes, architectural decisions, or open questions needing approval]
|
|
105
105
|
|
|
106
|
+
## Dependency Ladder Alignment
|
|
107
|
+
Evaluate proposed changes against the Dependency Ladder (Rungs 1 to 6). Confirm the lowest possible rung is chosen to avoid bloat:
|
|
108
|
+
- **Proposed Rung**: [e.g. Rung 3: Platform / Rung 4: Installed Dep]
|
|
109
|
+
- **Justification**: [Explain why lower rungs are not applicable. If using Rung 6 (custom code/new library), justify with a // VERIFY comment]
|
|
110
|
+
|
|
106
111
|
## Proposed Changes
|
|
107
112
|
|
|
108
113
|
### Wave 1 — Foundation
|