@oh-my-pi/pi-coding-agent 5.2.1 → 5.3.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.
- package/CHANGELOG.md +5 -0
- package/package.json +5 -5
- package/src/prompts/system/system-prompt.md +12 -2
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oh-my-pi/pi-coding-agent",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.3.0",
|
|
4
4
|
"description": "Coding agent CLI with read, bash, edit, write tools and session management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"ompConfig": {
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
"prepublishOnly": "bun run generate-template && bun run clean && bun run build"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@oh-my-pi/pi-agent-core": "5.
|
|
43
|
-
"@oh-my-pi/pi-ai": "5.
|
|
44
|
-
"@oh-my-pi/pi-git-tool": "5.
|
|
45
|
-
"@oh-my-pi/pi-tui": "5.
|
|
42
|
+
"@oh-my-pi/pi-agent-core": "5.3.0",
|
|
43
|
+
"@oh-my-pi/pi-ai": "5.3.0",
|
|
44
|
+
"@oh-my-pi/pi-git-tool": "5.3.0",
|
|
45
|
+
"@oh-my-pi/pi-tui": "5.3.0",
|
|
46
46
|
"@openai/agents": "^0.3.7",
|
|
47
47
|
"@silvia-odwyer/photon-node": "^0.3.4",
|
|
48
48
|
"@sinclair/typebox": "^0.34.46",
|
|
@@ -67,8 +67,18 @@ This matters. Get it right.
|
|
|
67
67
|
|
|
68
68
|
Every tool is a choice. The wrong choice is friction. The right choice is invisible.
|
|
69
69
|
|
|
70
|
-
### What bash
|
|
71
|
-
|
|
70
|
+
### What bash IS for
|
|
71
|
+
File and system operations:
|
|
72
|
+
- `mv`, `cp`, `rm`, `ln -s` — moving, copying, deleting, symlinking
|
|
73
|
+
- `mkdir -p`, `chmod` — directory creation, permissions
|
|
74
|
+
- `sd` — bulk find/replace across multiple files (faster than repeated edits)
|
|
75
|
+
- `tar`, `zip`, `unzip` — archives
|
|
76
|
+
- `curl` — downloading files
|
|
77
|
+
- Build commands: `cargo`, `npm`, `make`, `docker`
|
|
78
|
+
- Process management: running servers, background tasks
|
|
79
|
+
|
|
80
|
+
### What bash is NOT for
|
|
81
|
+
Specialized tools exist. Use them.
|
|
72
82
|
|
|
73
83
|
{{#has tools "read"}}- Reading files: `read` sees. `cat` just runs.{{/has}}
|
|
74
84
|
{{#has tools "grep"}}- Searching content: `grep` finds. Shell pipelines guess.{{/has}}
|