| name | oe-workflow-triage |
| description | Workflow bug triage for OpenEvent. Use when you have a regression/bug report (wrong step, wrong detour, HIL stuck, site visit issues) and need a minimal reproduction trace plus a fix plan tied to workflow invariants and tests. |
oe-workflow-triage
Minimal reproduction first (avoid “guess fixes”)
Pick the closest deterministic scenario:
- Site visit:
scripts/manual_ux_scenario_I.py,scripts/manual_ux_scenario_H.py - Late changes / detours:
scripts/manual_ux_scenario_E.pyetc.
- Site visit:
Produce a trace:
python3 scripts/manual_ux_scenario_I.py > /tmp/repro.json
Validate with invariants:
python3 scripts/validate_manual_ux_run.py /tmp/repro.json --require_site_visit
If the bug is not covered by existing scenarios:
- Create a new
scripts/manual_ux_scenario_*.pyby copying the closest scenario. - Keep it deterministic (AGENT_MODE=stub + explicit mapping + intent overrides).
- Add/extend validator checks only when they prevent regressions.
- Create a new
Fix plan outputs
- A 1–3 PR ladder:
- PR1: characterization test / scenario reproduction
- PR2: fix with minimal blast radius
- PR3: cleanup/refactor (optional)