@step-forge/step-forge 0.0.24 → 0.0.25-alpha.2

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/RUNTIME.md CHANGED
@@ -143,10 +143,16 @@ fails, so it drops straight into CI.
143
143
 
144
144
  ## Interactive mode
145
145
 
146
- `step-forge -i` opens a Claude-Code-style typeahead prompt and watches your
147
- feature/step directories. Start typing to filter every **tag**, **feature**, and
148
- **scenario** in your suite; `↑`/`↓` move the highlight. A **scenario outline**
149
- appears as a single entry that runs all of its example rows.
146
+ `step-forge -i` takes over the terminal with a full-screen dashboard and watches
147
+ your feature/step directories. It is laid out top-to-bottom:
148
+
149
+ 1. **Prompt** a Claude-Code-style typeahead. Start typing to filter every
150
+ **tag**, **feature**, and **scenario** in your suite. A **scenario outline**
151
+ appears as a single entry that runs all of its example rows.
152
+ 2. **Selection** — the ranked matches; `↑`/`↓` move the highlight.
153
+ 3. **Results** — the current run, ordered so the summary is right under the
154
+ controls: **stats** (live pass/fail/skip tallies + duration) on top, the
155
+ **progress dots** below them, and any **failures** at the bottom.
150
156
 
151
157
  ```bash
152
158
  step-forge -i # browse and pick from everything
@@ -160,17 +166,23 @@ population):
160
166
  every subsequent file change. Pressing Enter again forces a re-run.
161
167
  - **Editing the query** suspends auto-runs until you press Enter again — so you
162
168
  can retarget without a half-typed selection firing.
169
+ - **↑ / ↓** move the selection highlight. The **mouse wheel** (or **PgUp /
170
+ PgDn**) scrolls the failures pane when a run has more failures than fit on
171
+ screen — the prompt, selection, and stats stay pinned. (While the dashboard is
172
+ up the wheel drives the results pane, so hold **Shift** for native terminal
173
+ text selection.)
163
174
  - **Esc** disarms and returns to browsing.
164
- - **Ctrl-C** quits.
175
+ - **Ctrl-C** quits and restores the terminal.
165
176
 
166
- A selection that resolves to a **single scenario** is run in `--verbose` mode and
167
- first passed through the analyzer so undefined/ambiguous steps and dependency
168
- problems surface before it runs. Broader populations use your configured
169
- reporter.
177
+ A selection that resolves to a **single scenario** is first passed through the
178
+ analyzer, so undefined/ambiguous steps and dependency problems surface (above the
179
+ dots) before it runs.
170
180
 
171
181
  Each run executes in a fresh `step-forge` child process, so edited step
172
182
  definitions are always picked up — there is no stale module cache between runs.
173
- Recursive watching works on macOS, Windows, and modern Linux (Node 20 / Bun).
183
+ The child streams its results back as an event stream, which the dashboard
184
+ renders in place. Recursive watching works on macOS, Windows, and modern Linux
185
+ (Node ≥ 20 / Bun).
174
186
 
175
187
  ## Hooks
176
188