@whisperr/wizard 0.7.3 → 0.8.0

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 (3) hide show
  1. package/README.md +13 -7
  2. package/dist/index.js +1054 -494
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -13,7 +13,7 @@ hands you a clean diff to review and commit.
13
13
 
14
14
  ## How it works
15
15
 
16
- The wizard is an agentic integrator with a planner/editor split:
16
+ The wizard is an agentic integrator with task-aware hybrid routing:
17
17
 
18
18
  1. **Plan** — one read-only pass charts your repo (entry points, end-user vs
19
19
  admin auth flows, billing surfaces, existing analytics wrappers) and
@@ -24,11 +24,15 @@ The wizard is an agentic integrator with a planner/editor split:
24
24
  changes. The run then proceeds on its own; pass `--review-plan` if you'd
25
25
  rather confirm placements first, or `--propose-only` to keep new
26
26
  events/interventions behind dashboard approval instead of adding them.
27
- 3. **Wire** — a fast editor model executes the plan mechanically.
28
- 4. **Review** the agent re-reads its own diff and fixes wrong subjects,
27
+ 3. **Wire** — Terra surveys and runs up to four file-isolated, four-event edit
28
+ clusters concurrently. Opus 5 handles SDK setup and automatically retries a
29
+ clean cluster when Terra is unavailable, quota-limited, incomplete, or
30
+ invalid. No two workers edit the same file concurrently.
31
+ 4. **Review** — up to two fast Opus 5 tasks re-read diffs and fix wrong subjects,
29
32
  wrong lifecycle moments, and missing discriminators.
30
- 5. **Verify** — placements are scanned back out of the diff, your build/lint
31
- command runs, and failures get one automatic repair pass. Every event ends
33
+ 5. **Verify** — placements receive structural checks before their patches merge,
34
+ then one full build/lint runs after all serial merges. Failures get an Opus
35
+ repair pass. Every event ends
32
36
  the run as `✓ wired @ file` or `○ skipped — reason`.
33
37
 
34
38
  Multi-surface aware: run it in your web app, then your mobile app, then your
@@ -65,8 +69,10 @@ Options:
65
69
  -v, --version Show version
66
70
  ```
67
71
 
68
- Environment knobs: `WHISPERR_WIZARD_PLANNER_MODEL`,
69
- `WHISPERR_WIZARD_BUDGET_USD` (default 25), `WHISPERR_WIZARD_EFFORT`.
72
+ Environment knobs: `WHISPERR_WIZARD_ENGINE_<TASK>_MODEL` (for example
73
+ `WHISPERR_WIZARD_ENGINE_DESIGN_MODEL`), `WHISPERR_WIZARD_BUDGET_USD`
74
+ (default 25), `WHISPERR_WIZARD_EFFORT`.
75
+ Set `WHISPERR_WIZARD_PRESET=claude-default` for the Opus-only rollback preset.
70
76
 
71
77
  ## Safety
72
78