toolnet-memory 0.3.11 → 0.3.13
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 -4
- package/README.md +428 -202
- package/bin/toolnet-memory +15 -42
- package/bundle/agy-hook.js +47 -47
- package/bundle/agy.js +31 -31
- package/bundle/api.js +15 -52
- package/bundle/auto-integrate.js +34 -33
- package/bundle/claude-hook.js +9 -9
- package/bundle/codex.js +28 -28
- package/bundle/config.js +17 -12
- package/bundle/context-runtime.js +9 -9
- package/bundle/context.js +12 -12
- package/bundle/continuity-certify.js +13 -50
- package/bundle/copilot-hook.js +13 -13
- package/bundle/cursor-hook.js +13 -13
- package/bundle/doctor.js +4 -6
- package/bundle/full-index.js +21 -22
- package/bundle/graph-index.js +3 -3
- package/bundle/graph-ui.js +3 -3
- package/bundle/grok-hook.js +13 -13
- package/bundle/help-cli.js +4 -4
- package/bundle/impact.js +3 -3
- package/bundle/incremental.js +3 -3
- package/bundle/init.js +37 -36
- package/bundle/kilo.js +2 -0
- package/bundle/kiro-hook.js +14 -14
- package/bundle/learner.js +4 -4
- package/bundle/mcp.js +18 -56
- package/bundle/memory-agent.js +7 -47
- package/bundle/opencode.js +27 -27
- package/bundle/project-manual.js +2 -2
- package/bundle/recovery-certify.js +13 -53
- package/bundle/runtime.js +11 -11
- package/bundle/semantic.js +5 -6
- package/bundle/snapshot.js +3 -3
- package/bundle/status-cli.js +4 -4
- package/bundle/toolnet-cli.js +2 -0
- package/bundle/work-continuity.js +5 -5
- package/package.json +1 -3
- package/bundle/model-cli.js +0 -2
- package/bundle/provider.js +0 -6
- package/bundle/setup.js +0 -1159
package/bin/toolnet-memory
CHANGED
|
@@ -51,11 +51,6 @@ case "$COMMAND" in
|
|
|
51
51
|
run bundle/memory-query.js src/work-continuity/memory-query-cli.ts "$@"
|
|
52
52
|
;;
|
|
53
53
|
|
|
54
|
-
ask-ai)
|
|
55
|
-
shift
|
|
56
|
-
run bundle/memory-agent.js src/work-continuity/memory-agent-cli.ts "$@"
|
|
57
|
-
;;
|
|
58
|
-
|
|
59
54
|
handoff:refresh)
|
|
60
55
|
shift
|
|
61
56
|
run bundle/handoff-refresh.js src/work-continuity/handoff-cli.ts "$@"
|
|
@@ -71,38 +66,11 @@ case "$COMMAND" in
|
|
|
71
66
|
run bundle/config.js src/production/config-cli.ts "$@"
|
|
72
67
|
;;
|
|
73
68
|
|
|
74
|
-
setup)
|
|
75
|
-
if [ -f "$ROOT/bundle/setup.js" ]; then
|
|
76
|
-
exec node "$ROOT/bundle/setup.js" "$@"
|
|
77
|
-
elif [ -f "$ROOT/src/production/setup.ts" ]; then
|
|
78
|
-
exec npx --yes tsx "$ROOT/src/production/setup.ts" "$@"
|
|
79
|
-
else
|
|
80
|
-
echo "ToolNet setup module missing."
|
|
81
|
-
exit 1
|
|
82
|
-
fi
|
|
83
|
-
;;
|
|
84
|
-
|
|
85
|
-
|
|
86
69
|
doctor)
|
|
87
70
|
shift
|
|
88
71
|
run bundle/doctor.js src/production/doctor.ts "$@"
|
|
89
72
|
;;
|
|
90
73
|
|
|
91
|
-
provider:list)
|
|
92
|
-
shift
|
|
93
|
-
run bundle/provider.js src/ai/provider-cli.ts list "$@"
|
|
94
|
-
;;
|
|
95
|
-
|
|
96
|
-
provider:status)
|
|
97
|
-
shift
|
|
98
|
-
run bundle/provider.js src/ai/provider-cli.ts status "$@"
|
|
99
|
-
;;
|
|
100
|
-
|
|
101
|
-
provider:test)
|
|
102
|
-
shift
|
|
103
|
-
run bundle/provider.js src/ai/provider-cli.ts test "$@"
|
|
104
|
-
;;
|
|
105
|
-
|
|
106
74
|
run)
|
|
107
75
|
run bundle/runtime.js src/index.ts
|
|
108
76
|
;;
|
|
@@ -414,6 +382,21 @@ case "$COMMAND" in
|
|
|
414
382
|
run bundle/grok.js src/session/grok/cli.ts "$@"
|
|
415
383
|
;;
|
|
416
384
|
|
|
385
|
+
integrate:toolnet-cli)
|
|
386
|
+
shift
|
|
387
|
+
run bundle/toolnet-cli.js src/session/toolnet-cli/cli.ts "$@"
|
|
388
|
+
;;
|
|
389
|
+
|
|
390
|
+
integrate:kilo)
|
|
391
|
+
shift
|
|
392
|
+
run bundle/kilo.js src/session/kilo/cli.ts "$@"
|
|
393
|
+
;;
|
|
394
|
+
|
|
395
|
+
integrate:all)
|
|
396
|
+
shift
|
|
397
|
+
run bundle/auto-integrate.js src/production/auto-integrate.ts "$@"
|
|
398
|
+
;;
|
|
399
|
+
|
|
417
400
|
integrate:status)
|
|
418
401
|
shift
|
|
419
402
|
run bundle/integration-status.js src/session/new-agents/scoped-status-cli.ts "$@"
|
|
@@ -705,16 +688,6 @@ case "$COMMAND" in
|
|
|
705
688
|
run bundle/graph-cli.js src/production/graph-cli.ts "$@"
|
|
706
689
|
;;
|
|
707
690
|
|
|
708
|
-
model)
|
|
709
|
-
shift
|
|
710
|
-
run bundle/model-cli.js src/production/model-cli.ts "$@"
|
|
711
|
-
;;
|
|
712
|
-
|
|
713
|
-
provider)
|
|
714
|
-
shift
|
|
715
|
-
run bundle/provider.js src/ai/provider-cli.ts status "$@"
|
|
716
|
-
;;
|
|
717
|
-
|
|
718
691
|
status)
|
|
719
692
|
shift
|
|
720
693
|
run bundle/status-cli.js src/production/status-cli.ts "$@"
|