refactor: tighten codex toolset parity without freeform (#1014)

This commit is contained in:
Charles Packer
2026-02-18 12:55:09 -08:00
committed by GitHub
parent a1637b313a
commit 4e1827ebc1
17 changed files with 336 additions and 136 deletions

View File

@@ -109,7 +109,11 @@ function getBashInfo(approval: ApprovalRequest): BashInfo | null {
command =
typeof args.command === "string" ? args.command : "(no command)";
description =
typeof args.description === "string" ? args.description : "";
typeof args.description === "string"
? args.description
: typeof args.justification === "string"
? args.justification
: "";
}
return {