@plumpslabs/kuma 2.3.0 → 2.3.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/README.md +3 -1
- package/dist/{agentDetector-FDRVUNJY.js → agentDetector-G4RBMZ6X.js} +1 -1
- package/dist/chunk-5N6KXACT.js +880 -0
- package/dist/{chunk-IXMWW5WA.js → chunk-E2KFPEBT.js} +80 -1
- package/dist/{chunk-OUPFJQKW.js → chunk-EIK7T746.js} +43 -2
- package/dist/{chunk-IMO4QAFJ.js → chunk-EQ2CE4UC.js} +120 -5
- package/dist/{chunk-WP3WRPDC.js → chunk-JIL533AM.js} +2 -2
- package/dist/{chunk-5A6AKUJZ.js → chunk-L5WU2HTN.js} +3 -1
- package/dist/{chunk-TT37TE4P.js → chunk-SU7BTOND.js} +37 -2
- package/dist/index.js +393 -107
- package/dist/{init-O4MBXFZL.js → init-AJAESUZZ.js} +2 -2
- package/dist/kumaDb-RC2EO3OB.js +63 -0
- package/dist/{kumaGraph-GW5SWOHQ.js → kumaGraph-5IZ4FDZA.js} +3 -3
- package/dist/{kumaMemory-IO7TVE7W.js → kumaMemory-ME4XWD5Z.js} +3 -3
- package/dist/kumaMiner-GFEGUWGH.js +142 -0
- package/dist/kumaVerifier-VYW5WH6V.js +108 -0
- package/dist/pathValidator-V4DC6U6Z.js +22 -0
- package/dist/{safetyScore-7FU7XSY5.js → safetyScore-QX2LBJ7H.js} +31 -7
- package/dist/{sessionMemory-52ECPXZ6.js → sessionMemory-LI4FIAMF.js} +1 -1
- package/package.json +1 -1
- package/dist/chunk-6NEMSUKP.js +0 -304
- package/dist/kumaDb-KN7Z4B5V.js +0 -19
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
# Kuma
|
|
6
6
|
|
|
7
|
-
**Safety-first context & orchestration engine for AI coding agents**
|
|
7
|
+
**Safety-first context & orchestration engine for AI coding agents**
|
|
8
8
|
|
|
9
9
|
[](https://www.npmjs.com/package/@plumpslabs/kuma)
|
|
10
10
|
[](LICENSE)
|
|
@@ -122,6 +122,7 @@ Kuma consolidates everything into **3 coarse-grained tools**. Each action trigge
|
|
|
122
122
|
| Action | Use case |
|
|
123
123
|
|--------|----------|
|
|
124
124
|
| `decision` | ADR-style recording: template, suggest, or record. |
|
|
125
|
+
| `mine` | Mine historical decisions from git log & inline code comments. |
|
|
125
126
|
| `research_save` | Persist research to graph + `.kuma/research/<scope>.json`. |
|
|
126
127
|
| `session` | "What happened this session?" — files, failures, progress. |
|
|
127
128
|
| `heal` | Self-heal knowledge graph — stale detection, git repair. |
|
|
@@ -133,6 +134,7 @@ Kuma consolidates everything into **3 coarse-grained tools**. Each action trigge
|
|
|
133
134
|
| Action | Use case |
|
|
134
135
|
|--------|----------|
|
|
135
136
|
| `guard` | Anti-pattern, drift, tool-loop, and failure checks. |
|
|
137
|
+
| `verify` | Integrated auto-verification — auto-detect runner & execute scoped tests. |
|
|
136
138
|
| `check` | Pre-execution safety: policy, path, lock, risk level. |
|
|
137
139
|
| `audit` | Query audit trail + stats + override log. |
|
|
138
140
|
| `lock` | Multi-agent file locking. |
|