@gonrocca/zero-pi 0.1.17 → 0.1.18
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 +1 -1
- package/prompts/forge.md +12 -29
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gonrocca/zero-pi",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.18",
|
|
4
4
|
"description": "zero-pi — an installable layer for pi (pi.dev): the zero spec-driven development workflow, skill auto-learning, and an animated ZERO startup banner. Adds capability to pi without modifying pi.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
package/prompts/forge.md
CHANGED
|
@@ -1,34 +1,17 @@
|
|
|
1
1
|
---
|
|
2
|
-
description: Run
|
|
2
|
+
description: Run the zero spec-driven development pipeline for a feature request
|
|
3
3
|
---
|
|
4
4
|
|
|
5
|
-
Run the zero SDD pipeline for the feature request
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
today's behaviour: the arguments are the feature request.
|
|
17
|
-
|
|
18
|
-
Follow the zero SDD orchestrator instructions: drive the run through the
|
|
19
|
-
explore → plan → build → veredicto phases, honour the build/veredicto iteration
|
|
20
|
-
cap, and use the execution mode (interactive or automatic) the user chose.
|
|
21
|
-
|
|
22
|
-
Delegate each phase to its dedicated sub-agent so the phase runs on the model
|
|
23
|
-
it is configured for: `zero-explore`, `zero-plan`, `zero-build`, and
|
|
24
|
-
`zero-veredicto`. You stay the orchestrator — you decide phase order and count
|
|
25
|
-
the rounds; the sub-agents only execute their phase.
|
|
26
|
-
|
|
27
|
-
In interactive mode, pause after each phase with a summary and ask before
|
|
28
|
-
continuing. Never report success unless the veredicto phase returned a `pasa`
|
|
29
|
-
verdict; if the cap is reached first, report that the result is not verified.
|
|
30
|
-
|
|
31
|
-
To change the per-phase models, the user runs the `/zero-models` command — do
|
|
32
|
-
not handle model configuration here.
|
|
5
|
+
Run the zero SDD pipeline for the feature request below — you are the
|
|
6
|
+
orchestrator. Drive it through four phases in order: **explore → plan → build →
|
|
7
|
+
veredicto**, delegating each to its sub-agent (`zero-explore`, `zero-plan`,
|
|
8
|
+
`zero-build`, `zero-veredicto`). A `corregir` verdict re-runs `build`; a
|
|
9
|
+
`replantear` verdict re-runs `plan`; after a few rounds with no `pasa`, stop and
|
|
10
|
+
report the result as not verified. Ask the user for interactive or automatic
|
|
11
|
+
mode up front; in interactive mode pause after each phase for approval. Never
|
|
12
|
+
claim success unless veredicto returned `pasa`.
|
|
13
|
+
|
|
14
|
+
If the request begins with `--continue [slug]`, resume that unfinished run from
|
|
15
|
+
its `.sdd/<slug>/` artifacts instead of starting fresh.
|
|
33
16
|
|
|
34
17
|
Feature request: $ARGUMENTS
|