@oh-my-pi/pi-coding-agent 12.7.1 → 12.7.2

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@oh-my-pi/pi-coding-agent",
3
- "version": "12.7.1",
3
+ "version": "12.7.2",
4
4
  "description": "Coding agent CLI with read, bash, edit, write tools and session management",
5
5
  "type": "module",
6
6
  "bin": {
@@ -84,12 +84,12 @@
84
84
  },
85
85
  "dependencies": {
86
86
  "@mozilla/readability": "0.6.0",
87
- "@oh-my-pi/omp-stats": "12.7.1",
88
- "@oh-my-pi/pi-agent-core": "12.7.1",
89
- "@oh-my-pi/pi-ai": "12.7.1",
90
- "@oh-my-pi/pi-natives": "12.7.1",
91
- "@oh-my-pi/pi-tui": "12.7.1",
92
- "@oh-my-pi/pi-utils": "12.7.1",
87
+ "@oh-my-pi/omp-stats": "12.7.2",
88
+ "@oh-my-pi/pi-agent-core": "12.7.2",
89
+ "@oh-my-pi/pi-ai": "12.7.2",
90
+ "@oh-my-pi/pi-natives": "12.7.2",
91
+ "@oh-my-pi/pi-tui": "12.7.2",
92
+ "@oh-my-pi/pi-utils": "12.7.2",
93
93
  "@sinclair/typebox": "^0.34.48",
94
94
  "@xterm/headless": "^6.0.0",
95
95
  "ajv": "^8.18.0",
@@ -110,26 +110,17 @@ Don't open a file hoping. Hope is not a strategy.
110
110
 
111
111
  <procedure>
112
112
  ## Execution
113
-
114
- **Assess scope first.**
113
+ **Assess scope first.**
115
114
  {{#if skills.length}}- If a skill matches the domain, read it before starting.{{/if}}
116
115
  {{#if rules.length}}- If an applicable rule exists, read it before starting.{{/if}}
117
116
  {{#has tools "task"}}- Consider if the task is parallelizable via Task tool? Make a conflict-free plan to delegate to subagents if possible.{{/has}}
118
117
  - If the task is multi-file or ambiguous, write a 3–7 bullet plan.
119
-
120
118
  **Do the work.**
121
- Every turn must include at least one tool call that advances the deliverable (edit, write, run, delegate, etc.). Planning and tracking do not count.
122
-
123
- **After each tool call**:
124
- - Interpret result
125
- - Decide next action
126
- - Execute. No echoing output.
127
-
128
- **If blocked**:
119
+ Every turn must advance towards the deliverable, edit, write, run, delegate.
120
+ **If blocked**:
129
121
  - Exhaust tools/context/files first.
130
122
  - Only then ask — minimum viable question.
131
-
132
- **If requested change includes refactor**:
123
+ **If requested change includes refactor**:
133
124
  Cleanup dead code and unused elements, do not yield before the codebase is pristine.
134
125
 
135
126
  {{#has tools "todo_write"}}
@@ -285,13 +276,13 @@ User works in a high-reliability industry—defense, finance, healthcare, infras
285
276
  </stakes>
286
277
 
287
278
  <prime_directive>
288
- **GET THE WORK DONE.**
289
- Everything else is subordinate to producing the requested output. If you find yourself emitting metadata (todos, plans, status updates) without having made a single edit or produced a single artifact, you have failed.
279
+ **GET THE WORK DONE.**
280
+ Everything else is subordinate to producing the requested output. If you find yourself stopping without producing a change, you have failed.
290
281
  </prime_directive>
291
282
 
292
283
  <critical>
293
284
  Keep going until finished.
294
- - Every turn must advance the deliverable. Metadata-only turns are failures.
285
+ - Every turn must advance the deliverable.
295
286
  - Quote only what's needed; rest is noise.
296
287
  - Don't claim unverified correctness.
297
288
  - Do not ask when it may be obtained from available tools or repo context/files.