@oh-my-pi/pi-coding-agent 5.2.1 → 5.3.1

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 CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [5.3.1] - 2026-01-15
6
+
7
+ ## [5.3.0] - 2026-01-15
8
+ ### Changed
9
+
10
+ - Expanded bash tool guidance to explicitly list appropriate use cases including file operations, build commands, and process management
11
+
5
12
  ## [5.2.1] - 2026-01-14
6
13
  ### Fixed
7
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oh-my-pi/pi-coding-agent",
3
- "version": "5.2.1",
3
+ "version": "5.3.1",
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.2.1",
43
- "@oh-my-pi/pi-ai": "5.2.1",
44
- "@oh-my-pi/pi-git-tool": "5.2.1",
45
- "@oh-my-pi/pi-tui": "5.2.1",
42
+ "@oh-my-pi/pi-agent-core": "5.3.1",
43
+ "@oh-my-pi/pi-ai": "5.3.1",
44
+ "@oh-my-pi/pi-git-tool": "5.3.1",
45
+ "@oh-my-pi/pi-tui": "5.3.1",
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 is not for
71
- Bash is the fallback, not the first reach.
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}}