@juicesharp/rpiv-pi 1.4.0 → 1.4.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": "@juicesharp/rpiv-pi",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.2",
|
|
4
4
|
"description": "A skill-based development workflow for Pi Agent. Five skills (research, design, plan, implement, validate) and the shared subagents that compose its ship-loop.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package",
|
|
@@ -362,11 +362,13 @@ fresh dispatch, not from a stronger model.
|
|
|
362
362
|
|
|
363
363
|
### 10.1. Dispatch the plan-reviewer subagent
|
|
364
364
|
|
|
365
|
+
Reuse the exact `file_path` string passed to `Write` at Step 6 — the runtime already resolved it for this platform; do not rebuild it from `pwd`. `ls` to verify it still exists; abort dispatch on miss.
|
|
366
|
+
|
|
365
367
|
```
|
|
366
368
|
Agent({
|
|
367
369
|
subagent_type: "plan-reviewer",
|
|
368
370
|
description: "post-finalization plan review",
|
|
369
|
-
prompt: `Plan artifact: {
|
|
371
|
+
prompt: `Plan artifact: {Step-6 Write file_path, ls-verified}
|
|
370
372
|
|
|
371
373
|
Review the finalized plan against the live codebase at HEAD. Walk every Phase code fence, audit against code-quality / codebase-fit / actionability, emit one severity-tagged row per finding.`
|
|
372
374
|
})
|