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.
Files changed (48) hide show
  1. package/.env.example +0 -1
  2. package/.release-target +1 -1
  3. package/README.md +25 -1
  4. package/bin/toolnet-memory +5 -0
  5. package/bundle/agy-hook.js +67 -67
  6. package/bundle/agy.js +61 -61
  7. package/bundle/api.js +15 -15
  8. package/bundle/auto-integrate.js +28 -28
  9. package/bundle/background-refresh.js +7 -7
  10. package/bundle/claude-hook.js +51 -50
  11. package/bundle/codex-context.js +25 -24
  12. package/bundle/codex.js +71 -71
  13. package/bundle/context-runtime.js +45 -44
  14. package/bundle/context.js +15 -15
  15. package/bundle/continuity-certify.js +13 -13
  16. package/bundle/copilot-hook.js +87 -85
  17. package/bundle/copilot.js +4 -4
  18. package/bundle/cursor-hook.js +87 -85
  19. package/bundle/cursor.js +4 -4
  20. package/bundle/doctor.js +4 -4
  21. package/bundle/full-index.js +20 -20
  22. package/bundle/gc.js +3 -0
  23. package/bundle/graph-index.js +4 -4
  24. package/bundle/graph-ui.js +3 -3
  25. package/bundle/grok-hook.js +60 -59
  26. package/bundle/grok.js +5 -5
  27. package/bundle/handoff-refresh.js +10 -10
  28. package/bundle/help-cli.js +4 -4
  29. package/bundle/impact.js +4 -4
  30. package/bundle/incremental.js +5 -4
  31. package/bundle/init.js +37 -37
  32. package/bundle/integration-status.js +4 -4
  33. package/bundle/kiro-hook.js +82 -81
  34. package/bundle/learner.js +6 -6
  35. package/bundle/mcp.js +17 -17
  36. package/bundle/memory-agent.js +7 -7
  37. package/bundle/memory-query.js +7 -7
  38. package/bundle/opencode.js +80 -80
  39. package/bundle/project-manual.js +7 -7
  40. package/bundle/recovery-certify.js +15 -15
  41. package/bundle/runtime.js +13 -12
  42. package/bundle/semantic.js +5 -5
  43. package/bundle/snapshot.js +4 -4
  44. package/bundle/status-cli.js +4 -4
  45. package/bundle/toolnet-cli.js +60 -60
  46. package/bundle/work-continuity.js +7 -7
  47. package/package.json +9 -3
  48. package/release-manifest.json +54 -3
package/.env.example CHANGED
@@ -37,7 +37,6 @@ MEMORY_LOCAL_CACHE_MB=200
37
37
  # Automation
38
38
  MEMORY_AUTO_CAPTURE=true
39
39
  MEMORY_AUTO_RETRIEVE=true
40
- MEMORY_AUTO_SUMMARIZE=true
41
40
  MEMORY_AUTO_SYNC=true
42
41
 
43
42
  # Retrieval
package/.release-target CHANGED
@@ -1 +1 @@
1
- 0.3.14
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**
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
@@ -76,6 +76,11 @@ case "$COMMAND" in
76
76
  run bundle/doctor.js src/production/doctor.ts "$@"
77
77
  ;;
78
78
 
79
+ gc)
80
+ shift
81
+ run bundle/gc.js src/retention/cli.ts "$@"
82
+ ;;
83
+
79
84
  run)
80
85
  run bundle/runtime.js src/index.ts
81
86
  ;;