Documented flags are available behaviors, not implied active behaviors.
Treat --wave N, --gaps-only, and --interactive as active only when the literal token appears in $ARGUMENTS.
If none of these tokens appear, run the standard full-phase execution flow.
The execution boundary is the shared THRUNT runtime contract:
- each material hunt action is shaped as a
QuerySpec
- connectors return one normalized result envelope
- query logs and receipts are emitted from runtime metadata, not connector-specific ad hoc blobs
- connector-backed execution can be inspected locally with
thrunt-tools runtime list-connectors, thrunt-tools runtime doctor, thrunt-tools runtime smoke, thrunt-tools pack render-targets, and thrunt-tools runtime execute
--wave N executes only a single wave and must not mark the whole phase complete until no incomplete plans remain.
Creates or updates:
.planning/QUERIES/*.md
.planning/RECEIPTS/*.md
- Phase
SUMMARY.md
.planning/STATE.md
.planning/HYPOTHESES.md when new pivots emerge
.planning/HUNTMAP.md when phase status changes
After this command: Run /hunt-validate-findings <phase>.
Active flags must be derived from $ARGUMENTS.
Do not infer that a flag is active just because it is documented in this prompt.
--interactive is active only if the literal --interactive token is present in $ARGUMENTS.
If none of these tokens appear, run the standard full-phase execution flow.
1---2name: hunt-run3description: Execute a hunt phase with parallel telemetry work, query logging, receipt generation, and optional wave targeting4---56<objective>7Execute a hunt phase.89Documented flags are available behaviors, not implied active behaviors.10Treat `--wave N`, `--gaps-only`, and `--interactive` as active only when the literal token appears in `$ARGUMENTS`.11If none of these tokens appear, run the standard full-phase execution flow.1213The execution boundary is the shared THRUNT runtime contract:14- each material hunt action is shaped as a `QuerySpec`15- connectors return one normalized result envelope16- query logs and receipts are emitted from runtime metadata, not connector-specific ad hoc blobs17- connector-backed execution can be inspected locally with `thrunt-tools runtime list-connectors`, `thrunt-tools runtime doctor`, `thrunt-tools runtime smoke`, `thrunt-tools pack render-targets`, and `thrunt-tools runtime execute`1819`--wave N` executes only a single wave and must not mark the whole phase complete until no incomplete plans remain.2021**Creates or updates:**22- `.planning/QUERIES/*.md`23- `.planning/RECEIPTS/*.md`24- Phase `SUMMARY.md`25- `.planning/STATE.md`26- `.planning/HYPOTHESES.md` when new pivots emerge27- `.planning/HUNTMAP.md` when phase status changes2829**After this command:** Run `/hunt-validate-findings <phase>`.30</objective>3132<context>33Available optional flags (documentation only):34- `--wave N` — run only Wave `N`35- `--gaps-only` — run only gap-closure plans36- `--interactive` — stop after each wave for operator review3738Active flags must be derived from `$ARGUMENTS`.39Do not infer that a flag is active just because it is documented in this prompt.40`--interactive` is active only if the literal `--interactive` token is present in `$ARGUMENTS`.41If none of these tokens appear, run the standard full-phase execution flow.42</context>4344<execution_context>45@.github/thrunt-god/workflows/hunt-run.md46@.github/thrunt-god/templates/query-log.md47@.github/thrunt-god/templates/receipt.md48@.github/thrunt-god/templates/summary-standard.md49</execution_context>5051<process>52Execute the hunt run workflow from @.github/thrunt-god/workflows/hunt-run.md.53Every non-trivial claim must cite receipts. Parallelize by telemetry domain when it helps.54When query execution occurs, treat `/hunt-run` as a `QuerySpec` producer and normalized-result consumer.55If the requested phase has not been planned yet, stop and instruct the operator to run `/hunt-plan <phase>` first instead of improvising execution.56Keep query-log `related_receipts` and receipt `related_queries` links exact and bidirectional for artifacts created in the run.57Before closing out, update `HYPOTHESES.md`, `STATE.md`, and `HUNTMAP.md` so hypothesis confidence and phase completion match the receipts actually collected.58When updating `HUNTMAP.md`, sync all affected surfaces: phase checkbox, per-plan checklist entries, and the progress table row for the executed phase.59When onboarding or debugging a real connector, use `thrunt-tools runtime doctor [<connector-id>]` before running hunts, and use `thrunt-tools runtime smoke [<connector-id>]` for a live read-only certification query.60When a phase is explicitly pack-backed, prefer `thrunt-tools runtime execute --pack <id>` or inspect the generated specs with `thrunt-tools pack render-targets <id>` before running.61</process>