@gonrocca/zero-pi 0.1.12 → 0.1.13

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,73 +1,73 @@
1
- {
2
- "name": "@gonrocca/zero-pi",
3
- "version": "0.1.12",
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
- "type": "module",
6
- "keywords": [
7
- "pi",
8
- "pi-package",
9
- "pi-extension",
10
- "zero",
11
- "sdd",
12
- "spec-driven-development",
13
- "ai-coding-agent"
14
- ],
15
- "pi": {
16
- "prompts": [
17
- "./prompts"
18
- ],
19
- "skills": [
20
- "./skills"
21
- ],
22
- "themes": [
23
- "./themes"
24
- ],
25
- "extensions": [
26
- "./extensions/startup-banner.ts",
27
- "./extensions/working-phrases.ts",
28
- "./extensions/conversation-resume.ts",
29
- "./extensions/zero-models.ts",
30
- "./extensions/autotune-extension.ts",
31
- "./extensions/spec-merge-extension.ts",
32
- "./extensions/provider-guard-extension.ts"
33
- ]
34
- },
35
- "files": [
36
- "prompts",
37
- "skills",
38
- "themes",
39
- "extensions/startup-banner.ts",
40
- "extensions/working-phrases.ts",
41
- "extensions/conversation-resume.ts",
42
- "extensions/zero-models.ts",
43
- "extensions/autotune.ts",
44
- "extensions/autotune-extension.ts",
45
- "extensions/spec-merge.ts",
46
- "extensions/spec-merge-extension.ts",
47
- "extensions/provider-guard.ts",
48
- "extensions/provider-guard-extension.ts",
49
- "README.md",
50
- "LICENSE"
51
- ],
52
- "scripts": {
53
- "test": "node --test --experimental-strip-types",
54
- "prepublishOnly": "node --test --experimental-strip-types"
55
- },
56
- "engines": {
57
- "node": ">=20.6.0"
58
- },
59
- "author": "Gonzalo Rocca",
60
- "license": "MIT",
61
- "publishConfig": {
62
- "access": "public"
63
- },
64
- "repository": {
65
- "type": "git",
66
- "url": "git+https://github.com/gonzalonicolasr/zero.git",
67
- "directory": "packages/zero-pi"
68
- },
69
- "homepage": "https://github.com/gonzalonicolasr/zero/tree/main/packages/zero-pi#readme",
70
- "bugs": {
71
- "url": "https://github.com/gonzalonicolasr/zero/issues"
72
- }
73
- }
1
+ {
2
+ "name": "@gonrocca/zero-pi",
3
+ "version": "0.1.13",
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
+ "type": "module",
6
+ "keywords": [
7
+ "pi",
8
+ "pi-package",
9
+ "pi-extension",
10
+ "zero",
11
+ "sdd",
12
+ "spec-driven-development",
13
+ "ai-coding-agent"
14
+ ],
15
+ "pi": {
16
+ "prompts": [
17
+ "./prompts"
18
+ ],
19
+ "skills": [
20
+ "./skills"
21
+ ],
22
+ "themes": [
23
+ "./themes"
24
+ ],
25
+ "extensions": [
26
+ "./extensions/startup-banner.ts",
27
+ "./extensions/working-phrases.ts",
28
+ "./extensions/conversation-resume.ts",
29
+ "./extensions/zero-models.ts",
30
+ "./extensions/autotune-extension.ts",
31
+ "./extensions/spec-merge-extension.ts",
32
+ "./extensions/provider-guard-extension.ts"
33
+ ]
34
+ },
35
+ "files": [
36
+ "prompts",
37
+ "skills",
38
+ "themes",
39
+ "extensions/startup-banner.ts",
40
+ "extensions/working-phrases.ts",
41
+ "extensions/conversation-resume.ts",
42
+ "extensions/zero-models.ts",
43
+ "extensions/autotune.ts",
44
+ "extensions/autotune-extension.ts",
45
+ "extensions/spec-merge.ts",
46
+ "extensions/spec-merge-extension.ts",
47
+ "extensions/provider-guard.ts",
48
+ "extensions/provider-guard-extension.ts",
49
+ "README.md",
50
+ "LICENSE"
51
+ ],
52
+ "scripts": {
53
+ "test": "node --test --experimental-strip-types",
54
+ "prepublishOnly": "node --test --experimental-strip-types"
55
+ },
56
+ "engines": {
57
+ "node": ">=20.6.0"
58
+ },
59
+ "author": "Gonzalo Rocca",
60
+ "license": "MIT",
61
+ "publishConfig": {
62
+ "access": "public"
63
+ },
64
+ "repository": {
65
+ "type": "git",
66
+ "url": "git+https://github.com/gonzalonicolasr/zero.git",
67
+ "directory": "packages/zero-pi"
68
+ },
69
+ "homepage": "https://github.com/gonzalonicolasr/zero/tree/main/packages/zero-pi#readme",
70
+ "bugs": {
71
+ "url": "https://github.com/gonzalonicolasr/zero/issues"
72
+ }
73
+ }
package/prompts/forge.md CHANGED
@@ -1,34 +1,34 @@
1
- ---
2
- description: Run an automatic spec-driven development pipeline for a feature request
3
- ---
4
-
5
- Run the zero SDD pipeline for the feature request in the arguments.
6
-
7
- **Parse the arguments first.** If the arguments start with `--continue`, this is
8
- a **resume** run, not a fresh one:
9
-
10
- - `--continue` with no slug → resume mode: hand control to the orchestrator's
11
- `## Resuming a run` section, which scans `.sdd/*/` for an unfinished run.
12
- - `--continue <slug>` → resume mode targeting `.sdd/<slug>/` directly. If that
13
- directory does not exist, report "no such run: <slug>" and stop — do **not**
14
- start a fresh run under that slug.
15
- - Anything else (a feature request, or no arguments) → a fresh run, exactly
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.
33
-
34
- Feature request: $ARGUMENTS
1
+ ---
2
+ description: Run an automatic spec-driven development pipeline for a feature request
3
+ ---
4
+
5
+ Run the zero SDD pipeline for the feature request in the arguments.
6
+
7
+ **Parse the arguments first.** If the arguments start with `--continue`, this is
8
+ a **resume** run, not a fresh one:
9
+
10
+ - `--continue` with no slug → resume mode: hand control to the orchestrator's
11
+ `## Resuming a run` section, which scans `.sdd/*/` for an unfinished run.
12
+ - `--continue <slug>` → resume mode targeting `.sdd/<slug>/` directly. If that
13
+ directory does not exist, report "no such run: <slug>" and stop — do **not**
14
+ start a fresh run under that slug.
15
+ - Anything else (a feature request, or no arguments) → a fresh run, exactly
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.
33
+
34
+ Feature request: $ARGUMENTS