@whisperr/wizard 0.5.4 → 0.6.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 +12 -8
  2. package/dist/index.js +663 -733
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -15,14 +15,18 @@ hands you a clean diff to review and commit.
15
15
 
16
16
  The wizard is an agentic integrator with a planner/editor split:
17
17
 
18
- 1. **Map** — a read-only pass charts your repo: entry points, end-user vs
19
- admin auth flows, billing surfaces, existing analytics wrappers.
20
- 2. **Plan** — a reasoning model decides, per event, exactly where it belongs
21
- (`file @ anchor`) with the properties available in scope — or says
22
- honestly that it doesn't exist on this surface.
23
- 3. **Review the plan** — you see every placement before a single line
24
- changes, and pick what gets wired.
25
- 4. **Wire** a fast editor model executes the approved plan mechanically.
18
+ 1. **Plan** — one read-only pass charts your repo (entry points, end-user vs
19
+ admin auth flows, billing surfaces, existing analytics wrappers) and
20
+ decides, per event, exactly where it belongs (`file @ anchor`) with the
21
+ properties available in scope — or says honestly that it doesn't exist on
22
+ this surface. It also notes churn-relevant moments your plan is missing.
23
+ 2. **See the plan** — every placement is printed before a single line
24
+ changes. The run then proceeds on its own; pass `--review-plan` if you'd
25
+ rather confirm placements first, or `--propose-only` to keep new
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,
29
+ wrong lifecycle moments, and missing discriminators.
26
30
  5. **Verify** — placements are scanned back out of the diff, your build/lint
27
31
  command runs, and failures get one automatic repair pass. Every event ends
28
32
  the run as `✓ wired @ file` or `○ skipped — reason`.