Let the CLI compile for Windows again `ops/release-cli.sh` declares seven platforms and `windows-x86_64` did not build: `process_group` is a Unix extension on `Command`, and two call sites invoked it unconditionally, so the whole crate failed with `no method named process_group` plus four cascading inference errors from the chain it broke. `tools.rs` and `computer.rs` already guarded theirs with `#[cfg(unix)]`. These two did not, and nothing caught it because no test and no gate builds a Windows target — the release script is the only thing that does, and it reports a missing platform rather than a failure, so it looked like a toolchain gap. Both are guarded the same way `computer.rs` does it, which also forced the chains apart so the intent reads: build the command, then set the group where that means something. Verified by building the target: `PE32+ executable (console) x86-64, for MS Windows`. The host toolchain also needed `mingw-w64` for `dlltool`, which is a machine prerequisite rather than a repository change; the script's own error was clear enough to name it.
Let the CLI compile for Windows again
Deploy story
What this commit did to the running system — joined from the forge receipt chain, the part a commit page elsewhere cannot show.
Not deployed through the forge lane
No push, promotion, build, or deploy receipt references this commit (receipts are scanned over a bounded recent window). Changes shipped by full node replacement carry their proof in the release gate receipt instead.
Changed files
-
modified
crates/openagents-cli/src/acp.rs -
modified
crates/openagents-cli/src/delegate.rs
Diff
2 files changed, +20 -8
crates/openagents-cli/src/acp.rs modified +10 -4
@@ -279,10 +279,16 @@ impl AcpHarness {
| 279 | 279 |
|
| 280 | 280 |
|
| 281 | 281 |
|
| 282 |
|
|
| 283 |
|
|
| 284 |
|
|
| 285 |
|
|
| 282 |
|
|
| 283 |
|
|
| 284 |
|
|
| 285 |
|
|
| 286 |
|
|
| 287 |
|
|
| 288 |
|
|
| 289 |
|
|
| 290 |
|
|
| 291 |
|
|
| 286 | 292 |
|
| 287 | 293 |
|
| 288 | 294 |
|
crates/openagents-cli/src/delegate.rs modified +10 -4
@@ -696,7 +696,8 @@ async fn run_cli_child(
| 696 | 696 |
|
| 697 | 697 |
|
| 698 | 698 |
|
| 699 |
|
|
| 699 |
|
|
| 700 |
|
|
| 700 | 701 |
|
| 701 | 702 |
|
| 702 | 703 |
|
@@ -704,10 +705,15 @@ async fn run_cli_child(
| 704 | 705 |
|
| 705 | 706 |
|
| 706 | 707 |
|
| 707 |
|
|
| 708 |
|
|
| 709 |
|
|
| 708 |
|
|
| 709 |
|
|
| 710 |
|
|
| 711 |
|
|
| 710 | 712 |
|
| 713 |
|
|
| 714 |
|
|
| 715 |
|
|
| 716 |
|
|
| 711 | 717 |
|
| 712 | 718 |
|
| 713 | 719 |
|