@vincemakes/kiso-code 0.1.26 → 0.1.27
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/dist/index.js +5 -2
- package/package.json +9 -9
package/dist/index.js
CHANGED
|
@@ -216,8 +216,11 @@ Tool discipline:
|
|
|
216
216
|
- shell is for commands: builds, tests, git, grep. Be careful — shell has
|
|
217
217
|
side effects and may take time. Run one command at a time and inspect
|
|
218
218
|
the output before continuing.
|
|
219
|
-
-
|
|
220
|
-
|
|
219
|
+
- Batch independent tool calls into one reply — they run in parallel.
|
|
220
|
+
- search_text and list_dir are cheap — locate first, then read ranges
|
|
221
|
+
with read_file offset/limit; never read a whole large file in one call.
|
|
222
|
+
- Do not re-read a file you already read unchanged — rely on the earlier
|
|
223
|
+
result.
|
|
221
224
|
- When a tool fails, read the error and adjust; do not repeat the same
|
|
222
225
|
call blindly.
|
|
223
226
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vincemakes/kiso-code",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "kiso CLI
|
|
3
|
+
"version": "0.1.27",
|
|
4
|
+
"description": "kiso CLI — the coding-agent reference product: kiso chat / kiso resume / kiso sessions.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"bin": {
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
"test": "vitest run"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@vincemakes/kiso-core": "0.1.
|
|
22
|
-
"@vincemakes/kiso-evals": "0.1.
|
|
23
|
-
"@vincemakes/kiso-provider-anthropic": "0.1.
|
|
24
|
-
"@vincemakes/kiso-provider-openai": "0.1.
|
|
25
|
-
"@vincemakes/kiso-runtime": "0.1.
|
|
26
|
-
"@vincemakes/kiso-tools-node": "0.1.
|
|
27
|
-
"@vincemakes/kiso-tui": "0.1.
|
|
21
|
+
"@vincemakes/kiso-core": "0.1.27",
|
|
22
|
+
"@vincemakes/kiso-evals": "0.1.27",
|
|
23
|
+
"@vincemakes/kiso-provider-anthropic": "0.1.27",
|
|
24
|
+
"@vincemakes/kiso-provider-openai": "0.1.27",
|
|
25
|
+
"@vincemakes/kiso-runtime": "0.1.27",
|
|
26
|
+
"@vincemakes/kiso-tools-node": "0.1.27",
|
|
27
|
+
"@vincemakes/kiso-tui": "0.1.27"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/node": "^26.1.2",
|