todo.md. changed a todo item

This commit is contained in:
Space-Banane
2026-05-22 22:32:35 +02:00
parent 33e8fe9315
commit 6d0b1a398b
2 changed files with 2 additions and 1 deletions

View File

@@ -35,5 +35,5 @@
### P3 (Backlog) ### P3 (Backlog)
- [ ] `FEATURE`: Add queue metrics and traces (queued/running age, success/failure counters, fallback usage) for operations visibility. - [ ] `FEATURE`: Add queue metrics and traces (queued/running age, success/failure counters, fallback usage) for operations visibility.
- [ ] `FEATURE`: Add superseded-job cancellation for same PR/head to avoid running obsolete queued jobs. - [ ] `FEATURE`: Add superseded-job cancellation for same PR/head to avoid running obsolete queued jobs.
- [ ] `FEATURE`: Add `@codex status` command to report latest job state/run ID for a PR. - [ ] `FEATURE`: Add `@codex status` command: "whoami", "permissions", "repo config status"
- [ ] `TEST`: Add property/fuzz tests for command parsing and webhook payload edge cases. - [ ] `TEST`: Add property/fuzz tests for command parsing and webhook payload edge cases.

View File

@@ -12,6 +12,7 @@ class ParsedCommand:
name: CommandName name: CommandName
raw: str raw: str
mode: str = "summary" mode: str = "summary"
mode_explicit: bool = False
full: bool = False full: bool = False
branch_fix: bool = False branch_fix: bool = False
arguments: list[str] = field(default_factory=list) arguments: list[str] = field(default_factory=list)