@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.
- package/README.md +12 -8
- package/dist/index.js +663 -733
- 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. **
|
|
19
|
-
admin auth flows, billing surfaces, existing analytics wrappers
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
changes
|
|
25
|
-
|
|
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`.
|