@oh-my-pi/pi-coding-agent 13.9.13 → 13.9.14
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,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@oh-my-pi/pi-coding-agent",
|
|
4
|
-
"version": "13.9.
|
|
4
|
+
"version": "13.9.14",
|
|
5
5
|
"description": "Coding agent CLI with read, bash, edit, write tools and session management",
|
|
6
6
|
"homepage": "https://github.com/can1357/oh-my-pi",
|
|
7
7
|
"author": "Can Boluk",
|
|
@@ -41,12 +41,12 @@
|
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@mozilla/readability": "^0.6",
|
|
44
|
-
"@oh-my-pi/omp-stats": "13.9.
|
|
45
|
-
"@oh-my-pi/pi-agent-core": "13.9.
|
|
46
|
-
"@oh-my-pi/pi-ai": "13.9.
|
|
47
|
-
"@oh-my-pi/pi-natives": "13.9.
|
|
48
|
-
"@oh-my-pi/pi-tui": "13.9.
|
|
49
|
-
"@oh-my-pi/pi-utils": "13.9.
|
|
44
|
+
"@oh-my-pi/omp-stats": "13.9.14",
|
|
45
|
+
"@oh-my-pi/pi-agent-core": "13.9.14",
|
|
46
|
+
"@oh-my-pi/pi-ai": "13.9.14",
|
|
47
|
+
"@oh-my-pi/pi-natives": "13.9.14",
|
|
48
|
+
"@oh-my-pi/pi-tui": "13.9.14",
|
|
49
|
+
"@oh-my-pi/pi-utils": "13.9.14",
|
|
50
50
|
"@sinclair/typebox": "^0.34",
|
|
51
51
|
"@xterm/headless": "^6.0",
|
|
52
52
|
"ajv": "^8.18",
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: explore
|
|
3
3
|
description: Fast read-only codebase scout returning compressed context for handoff
|
|
4
|
-
tools: read, grep, find,
|
|
4
|
+
tools: read, grep, find, fetch, web_search
|
|
5
5
|
model: pi/smol
|
|
6
|
-
thinking-level:
|
|
6
|
+
thinking-level: off
|
|
7
7
|
output:
|
|
8
8
|
properties:
|
|
9
9
|
summary:
|
|
@@ -227,10 +227,10 @@ Remote filesystems: `~/.omp/remote/<hostname>/`. Windows paths need colons: `C:/
|
|
|
227
227
|
### Search before you read
|
|
228
228
|
|
|
229
229
|
Don't open a file hoping. Hope is not a strategy.
|
|
230
|
-
{{#has tools "task"}}- `task` to explore rapidly{{/has}}
|
|
231
230
|
{{#has tools "grep"}}- `grep` to locate target{{/has}}
|
|
232
231
|
{{#has tools "find"}}- `find` to map it{{/has}}
|
|
233
232
|
{{#has tools "read"}}- `read` with offset/limit, not whole file{{/has}}
|
|
233
|
+
{{#has tools "task"}}- `task` to gather context if needed via explore agent{{/has}}
|
|
234
234
|
{{/ifAny}}
|
|
235
235
|
|
|
236
236
|
{{#if (includes tools "inspect_image")}}
|