toolnet-memory 0.2.21 → 0.3.1
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 +9 -0
- package/bin/toolnet-memory +5 -0
- package/bundle/agy-hook.js +66 -46
- package/bundle/agy.js +61 -43
- package/bundle/api.js +52 -0
- package/bundle/claude-hook.js +37 -32
- package/bundle/codex-context.js +29 -24
- package/bundle/codex.js +78 -60
- package/bundle/context-runtime.js +38 -33
- package/bundle/doctor.js +5 -4
- package/bundle/handoff-refresh.js +10 -10
- package/bundle/mcp.js +18 -16
- package/bundle/memory-agent.js +8 -8
- package/bundle/memory-query.js +6 -6
- package/bundle/opencode.js +69 -51
- package/bundle/runtime.js +11 -11
- package/dist/sdk/public.d.ts +2 -0
- package/dist/sdk/public.js +2 -0
- package/dist/sdk/remote-client.d.ts +41 -0
- package/dist/sdk/remote-client.js +185 -0
- package/dist/sdk/types.d.ts +402 -0
- package/dist/sdk/types.js +1 -0
- package/package.json +14 -5
package/.env.example
CHANGED
|
@@ -55,3 +55,12 @@ TOOLNET_SESSION_LEARNING=1
|
|
|
55
55
|
TOOLNET_WORK_CONTINUITY=1
|
|
56
56
|
TOOLNET_SEMANTIC_CONTINUITY=1
|
|
57
57
|
TOOLNET_SMART_HANDOFF=1
|
|
58
|
+
|
|
59
|
+
# ToolNet Memory HTTP API
|
|
60
|
+
TOOLNET_API_HOST=127.0.0.1
|
|
61
|
+
TOOLNET_API_PORT=9750
|
|
62
|
+
TOOLNET_API_TOKEN=
|
|
63
|
+
|
|
64
|
+
# ToolNet Memory Hub
|
|
65
|
+
TOOLNET_HUB_OWNER=owner
|
|
66
|
+
TOOLNET_HUB_MAX_EVENTS=100
|
package/bin/toolnet-memory
CHANGED
|
@@ -111,6 +111,10 @@ case "$COMMAND" in
|
|
|
111
111
|
run bundle/mcp.js src/mcp/bootstrap.ts
|
|
112
112
|
;;
|
|
113
113
|
|
|
114
|
+
api)
|
|
115
|
+
run bundle/api.js src/api/bootstrap.ts
|
|
116
|
+
;;
|
|
117
|
+
|
|
114
118
|
production:certify)
|
|
115
119
|
run bundle/production-certify.js src/production/production-certify-cli.ts
|
|
116
120
|
;;
|
|
@@ -635,6 +639,7 @@ SETUP & INTEGRATION:
|
|
|
635
639
|
toolnet-memory integrate:agy
|
|
636
640
|
toolnet-memory integrate:codex
|
|
637
641
|
toolnet-memory mcp
|
|
642
|
+
toolnet-memory api
|
|
638
643
|
|
|
639
644
|
PRODUCTION:
|
|
640
645
|
toolnet-memory production:certify Verify packaged production runtime
|