botholomew 0.11.2 → 0.11.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "botholomew",
3
- "version": "0.11.2",
3
+ "version": "0.11.4",
4
4
  "description": "An autonomous AI agent for knowledge work — works your task queue while you sleep.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -28,7 +28,7 @@
28
28
  "dependencies": {
29
29
  "@anthropic-ai/sdk": "^0.92.0",
30
30
  "@duckdb/node-api": "^1.5.2-r.1",
31
- "@evantahler/mcpx": "0.18.7",
31
+ "@evantahler/mcpx": "0.19.1",
32
32
  "@huggingface/transformers": "^4.2.0",
33
33
  "ansis": "^4.2.0",
34
34
  "commander": "^14.0.0",
@@ -57,7 +57,6 @@
57
57
  "protobufjs"
58
58
  ],
59
59
  "patchedDependencies": {
60
- "@huggingface/transformers@4.2.0": "patches/@huggingface%2Ftransformers@4.2.0.patch",
61
- "@huggingface/transformers@3.8.1": "patches/@huggingface%2Ftransformers@3.8.1.patch"
60
+ "@huggingface/transformers@4.2.0": "patches/@huggingface%2Ftransformers@4.2.0.patch"
62
61
  }
63
62
  }
package/src/chat/agent.ts CHANGED
@@ -29,7 +29,7 @@ import {
29
29
 
30
30
  registerAllTools();
31
31
 
32
- /** Tools available in chat mode — no worker terminal tools, no destructive file tools */
32
+ /** Tools available in chat mode — no worker terminal tools (complete/fail/wait), no bulk-destructive file tools (delete, copy/move, dir ops) */
33
33
  const CHAT_TOOL_NAMES = new Set([
34
34
  "create_task",
35
35
  "list_tasks",
@@ -39,6 +39,9 @@ const CHAT_TOOL_NAMES = new Set([
39
39
  "context_refresh",
40
40
  "context_tree",
41
41
  "context_list_drives",
42
+ "context_read",
43
+ "context_write",
44
+ "context_edit",
42
45
  "search_grep",
43
46
  "search_semantic",
44
47
  "list_threads",