@botbotgo/agent-harness 0.0.226 → 0.0.227

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.
@@ -1 +1 @@
1
- export declare const AGENT_HARNESS_VERSION = "0.0.225";
1
+ export declare const AGENT_HARNESS_VERSION = "0.0.226";
@@ -1 +1 @@
1
- export const AGENT_HARNESS_VERSION = "0.0.225";
1
+ export const AGENT_HARNESS_VERSION = "0.0.226";
@@ -105,8 +105,8 @@ class CompatibleCompositeBackend {
105
105
  : (command) => this.composite.execute(command);
106
106
  }
107
107
  }
108
- lsInfo(filePath) {
109
- return this.composite.lsInfo(filePath);
108
+ ls(filePath) {
109
+ return this.composite.ls(filePath);
110
110
  }
111
111
  read(filePath, offset, limit) {
112
112
  return this.composite.read(filePath, offset, limit);
@@ -114,11 +114,11 @@ class CompatibleCompositeBackend {
114
114
  readRaw(filePath) {
115
115
  return this.composite.readRaw(filePath);
116
116
  }
117
- grepRaw(pattern, filePath, glob) {
118
- return this.composite.grepRaw(pattern, filePath ?? undefined, glob ?? undefined);
117
+ grep(pattern, filePath, glob) {
118
+ return this.composite.grep(pattern, filePath ?? undefined, glob ?? undefined);
119
119
  }
120
- globInfo(pattern, filePath) {
121
- return this.composite.globInfo(pattern, filePath);
120
+ glob(pattern, filePath) {
121
+ return this.composite.glob(pattern, filePath);
122
122
  }
123
123
  write(filePath, content) {
124
124
  return this.composite.write(filePath, content);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botbotgo/agent-harness",
3
- "version": "0.0.226",
3
+ "version": "0.0.227",
4
4
  "description": "Workspace runtime for multi-agent applications",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -54,8 +54,8 @@
54
54
  "@modelcontextprotocol/sdk": "^1.12.0",
55
55
  "@qdrant/js-client-rest": "^1.17.0",
56
56
  "better-sqlite3": "^12.8.0",
57
- "deepagents": "1.8.4",
58
- "langchain": "^1.2.36",
57
+ "deepagents": "^1.9.0",
58
+ "langchain": "^1.3.1",
59
59
  "llamaindex": "^0.12.1",
60
60
  "mem0ai": "^2.4.6",
61
61
  "mustache": "^4.2.0",