@gonrocca/zero-pi 0.1.52 → 0.1.53

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.
Files changed (40) hide show
  1. package/README.md +0 -0
  2. package/extensions/autotune-extension.ts +0 -0
  3. package/extensions/autotune.ts +0 -0
  4. package/extensions/conversation-resume.ts +0 -0
  5. package/extensions/gh-runner.ts +0 -0
  6. package/extensions/git-runner.ts +0 -0
  7. package/extensions/pr-body.ts +0 -0
  8. package/extensions/provider-guard-extension.ts +0 -0
  9. package/extensions/provider-guard.ts +0 -0
  10. package/extensions/scan-guard-extension.ts +0 -0
  11. package/extensions/scan-guard.ts +0 -0
  12. package/extensions/sdd-agents.ts +0 -0
  13. package/extensions/sdd-config.ts +0 -0
  14. package/extensions/sdd-links.ts +0 -0
  15. package/extensions/spec-merge-extension.ts +0 -0
  16. package/extensions/spec-merge.ts +0 -0
  17. package/extensions/win-tree-kill.ts +0 -0
  18. package/extensions/working-phrases.ts +0 -0
  19. package/extensions/zero-archive-extension.ts +0 -0
  20. package/extensions/zero-banner.ts +0 -0
  21. package/extensions/zero-branch-extension.ts +0 -0
  22. package/extensions/zero-diff-extension.ts +0 -0
  23. package/extensions/zero-git-validate-extension.ts +0 -0
  24. package/extensions/zero-issue-extension.ts +0 -0
  25. package/extensions/zero-models-picker.ts +0 -0
  26. package/extensions/zero-models.ts +0 -0
  27. package/extensions/zero-pr-extension.ts +0 -0
  28. package/extensions/zero-status-extension.ts +0 -0
  29. package/extensions/zero-status.ts +0 -0
  30. package/extensions/zero-statusline.ts +0 -0
  31. package/extensions/zero-validate-extension.ts +0 -0
  32. package/extensions/zero-validate.ts +0 -0
  33. package/package.json +1 -1
  34. package/prompts/forge.md +10 -2
  35. package/prompts/orchestrator.md +0 -0
  36. package/prompts/phases/build.md +0 -0
  37. package/prompts/phases/explore.md +0 -0
  38. package/prompts/phases/plan.md +0 -0
  39. package/prompts/phases/veredicto.md +0 -0
  40. package/skills/sdd-routing/SKILL.md +0 -0
package/README.md CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gonrocca/zero-pi",
3
- "version": "0.1.52",
3
+ "version": "0.1.53",
4
4
  "description": "zero-pi — an installable layer for pi (pi.dev): the zero spec-driven development workflow (explore → plan → build → veredicto) with per-phase model autotune and token-efficient batched builds. Adds capability to pi without modifying pi.",
5
5
  "type": "module",
6
6
  "keywords": [
package/prompts/forge.md CHANGED
@@ -11,8 +11,16 @@ report the result as not verified. Ask the user for interactive or automatic
11
11
  mode up front; in interactive mode pause after each phase for approval. Never
12
12
  claim success unless veredicto returned `pasa`.
13
13
 
14
- If the request begins with `--continue [slug]`, resume that unfinished run from
15
- its `.sdd/<slug>/` artifacts instead of starting fresh.
14
+ **Parse the arguments first.** If the request begins with `--continue`, this is
15
+ a **resume** run, not a fresh one:
16
+
17
+ - `--continue` with no slug → resume mode: hand control to the orchestrator's
18
+ `## Resuming a run` section, which scans `.sdd/*/` for an unfinished run.
19
+ - `--continue <slug>` → resume mode targeting `.sdd/<slug>/` directly. If that
20
+ directory does not exist, report "no such run: <slug>" and stop — do **not**
21
+ start a fresh run under that slug.
22
+ - Anything else (a feature request, or no arguments) → a fresh run: the
23
+ arguments are the feature request below.
16
24
 
17
25
  **Strict TDD by default.** Follow the orchestrator's `## Strict TDD forwarding`:
18
26
  build runs test-first (RED → GREEN → TRIANGULATE → REFACTOR) and emits a TDD
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes