oh-my-codex v0.7.2
Hotfix: team shutdown --force flag was not being parsed from CLI arguments.
Fixed
- Team shutdown
--forceflag now correctly parsed from CLI args instead of being hardcoded tofalse(src/cli/team.ts) - Added
shutdown_gate_forcedaudit event when force-bypass is used, closing an observability gap in the event log
Changed
- Updated usage string to document
[--force]option:omx team shutdown <team-name> [--force] - Added
shutdown_gate_forcedtoTeamEventTypeunion andTEAM_EVENT_TYPESconstant
Root Cause
src/cli/team.ts:174 hardcoded { force: false }, so omx team shutdown <name> --force never actually bypassed the shutdown gate.
Full Changelog: v0.7.1...v0.7.2