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.
@@ -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 "$@"