toolnet-memory 0.3.14 → 0.3.15
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/.env.example +0 -1
- package/.release-target +1 -1
- package/README.md +25 -1
- package/bin/toolnet-memory +5 -0
- package/bundle/agy-hook.js +67 -67
- package/bundle/agy.js +61 -61
- package/bundle/api.js +15 -15
- package/bundle/auto-integrate.js +28 -28
- package/bundle/background-refresh.js +7 -7
- package/bundle/claude-hook.js +51 -50
- package/bundle/codex-context.js +25 -24
- package/bundle/codex.js +71 -71
- package/bundle/context-runtime.js +45 -44
- package/bundle/context.js +15 -15
- package/bundle/continuity-certify.js +13 -13
- package/bundle/copilot-hook.js +87 -85
- package/bundle/copilot.js +4 -4
- package/bundle/cursor-hook.js +87 -85
- package/bundle/cursor.js +4 -4
- package/bundle/doctor.js +4 -4
- package/bundle/full-index.js +20 -20
- package/bundle/gc.js +3 -0
- package/bundle/graph-index.js +4 -4
- package/bundle/graph-ui.js +3 -3
- package/bundle/grok-hook.js +60 -59
- package/bundle/grok.js +5 -5
- package/bundle/handoff-refresh.js +10 -10
- package/bundle/help-cli.js +4 -4
- package/bundle/impact.js +4 -4
- package/bundle/incremental.js +5 -4
- package/bundle/init.js +37 -37
- package/bundle/integration-status.js +4 -4
- package/bundle/kiro-hook.js +82 -81
- package/bundle/learner.js +6 -6
- package/bundle/mcp.js +17 -17
- package/bundle/memory-agent.js +7 -7
- package/bundle/memory-query.js +7 -7
- package/bundle/opencode.js +80 -80
- package/bundle/project-manual.js +7 -7
- package/bundle/recovery-certify.js +15 -15
- package/bundle/runtime.js +13 -12
- package/bundle/semantic.js +5 -5
- package/bundle/snapshot.js +4 -4
- package/bundle/status-cli.js +4 -4
- package/bundle/toolnet-cli.js +60 -60
- package/bundle/work-continuity.js +7 -7
- package/package.json +9 -3
- package/release-manifest.json +54 -3
package/.env.example
CHANGED
package/.release-target
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.15
|
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
**One project. Multiple coding agents. Continuous context.**
|
|
13
13
|
|
|
14
|
-
Current release: **v0.3.
|
|
14
|
+
Current release: **v0.3.15**
|
|
15
15
|
|
|
16
16
|
</div>
|
|
17
17
|
|
|
@@ -34,6 +34,30 @@ ToolNet Memory is **not a raw transcript dump**. Raw session history is kept sep
|
|
|
34
34
|
|
|
35
35
|
Memory promotion, retrieval, conflict handling, and continuity decisions are deterministic and local. ToolNet Memory does not require an LLM or embedding provider for its memory runtime.
|
|
36
36
|
|
|
37
|
+
### v0.3.15 hardening
|
|
38
|
+
|
|
39
|
+
v0.3.15 strengthens the existing local-first architecture without adding an LLM, embedding provider, vector database, or encryption-key requirement.
|
|
40
|
+
|
|
41
|
+
- Safe retention / garbage collection with dry-run by default.
|
|
42
|
+
- Project-scoped cross-process and shared-volume container hook deduplication.
|
|
43
|
+
- Large-repository scanner limits, bounded indexing concurrency, cancellation, and conservative rename detection.
|
|
44
|
+
- Explicit TypeScript/JavaScript parser capability reporting and TypeScript monorepo/path-alias resolution.
|
|
45
|
+
- Incremental graph repair with dangling-edge protection.
|
|
46
|
+
- Secret Scanner v2 and one durable-data sanitization contract.
|
|
47
|
+
- Strict existing-project resolution for read/query commands.
|
|
48
|
+
- Repository instruction content is treated as untrusted project data rather than system authority.
|
|
49
|
+
Garbage collection is non-destructive by default:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
toolnet-memory gc
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Actual cleanup requires explicit application:
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
toolnet-memory gc --apply
|
|
59
|
+
```
|
|
60
|
+
|
|
37
61
|
---
|
|
38
62
|
|
|
39
63
|
## Supported Coding Agents
|