@kuralle-agents/core 0.9.0 → 0.10.0
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.
|
@@ -122,7 +122,11 @@ export function createFsTool(opts) {
|
|
|
122
122
|
const { fs, readOnly = DEFAULT_READ_ONLY, timeoutMs } = opts;
|
|
123
123
|
return defineTool({
|
|
124
124
|
name: 'workspace',
|
|
125
|
-
description: 'Explore and edit the agent workspace.
|
|
125
|
+
description: 'Explore and edit the agent workspace. Cheapest first: ls/find to locate files, ' +
|
|
126
|
+
'grep for exact terms, names, codes, or keywords (returns matching lines only), ' +
|
|
127
|
+
'cat/read for full file contents. Prefer grep over semantic knowledge search when ' +
|
|
128
|
+
'the user mentions an exact term or identifier — it is faster, cheaper, and exact. ' +
|
|
129
|
+
'Ops: ls, cat, grep, find, read, write, edit.',
|
|
126
130
|
timeoutMs,
|
|
127
131
|
input: workspaceInput,
|
|
128
132
|
execute: async (args) => {
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"url": "git+https://github.com/kuralle/kuralle-agents.git",
|
|
7
7
|
"directory": "packages/kuralle-core"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.
|
|
9
|
+
"version": "0.10.0",
|
|
10
10
|
"description": "A framework for structured conversational AI agents",
|
|
11
11
|
"publishConfig": {
|
|
12
12
|
"access": "public"
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
"typescript": "^5.3.0",
|
|
104
104
|
"vitest": "^3.2.4",
|
|
105
105
|
"zod": "^4.0.0",
|
|
106
|
-
"@kuralle-agents/realtime-audio": "0.
|
|
106
|
+
"@kuralle-agents/realtime-audio": "0.10.0"
|
|
107
107
|
},
|
|
108
108
|
"dependencies": {
|
|
109
109
|
"chrono-node": "^2.6.0"
|