- Co-Authored-By
- Claude Opus 5 (1M context) <noreply@anthropic.com>
- Claude-Session
- https://claude.ai/code/session_01SoZMfWRSGnf6FZX2Ar9rQ2
Answer a `devin` request instead of dropping it on the floor
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/computer.rs -
modified
crates/openagents-cli/tests/computer_api_test.rs
Diff
2 files changed, +97 -6
crates/openagents-cli/src/computer.rs modified +15 -5
@@ -2290,12 +2290,22 @@ fn serve_connection(
| 2290 | 2290 |
|
| 2291 | 2291 |
|
| 2292 | 2292 |
|
| 2293 |
|
|
| 2294 |
|
|
| 2295 |
|
|
| 2296 |
|
|
| 2293 |
|
|
| 2294 |
|
|
| 2295 |
|
|
| 2296 |
|
|
| 2297 |
|
|
| 2298 |
|
|
| 2299 |
|
|
| 2300 |
|
|
| 2301 |
|
|
| 2302 |
|
|
| 2303 |
|
|
| 2304 |
|
|
| 2305 |
|
|
| 2306 |
|
|
| 2297 | 2307 |
|
| 2298 |
|
|
| 2308 |
|
|
| 2299 | 2309 |
|
| 2300 | 2310 |
|
| 2301 | 2311 |
|
crates/openagents-cli/tests/computer_api_test.rs modified +82 -1
@@ -570,6 +570,20 @@ struct StubController {
| 570 | 570 |
|
| 571 | 571 |
|
| 572 | 572 |
|
| 573 |
|
|
| 574 |
|
|
| 575 |
|
|
| 576 |
|
|
| 577 |
|
|
| 578 |
|
|
| 579 |
|
|
| 580 |
|
|
| 581 |
|
|
| 582 |
|
|
| 583 |
|
|
| 584 |
|
|
| 585 |
|
|
| 586 |
|
|
| 573 | 587 |
|
| 574 | 588 |
|
| 575 | 589 |
|
@@ -589,7 +603,7 @@ fn start_stub_controller(machine_id: &str, run_payload: serde_json::Value) -> St
| 589 | 603 |
|
| 590 | 604 |
|
| 591 | 605 |
|
| 592 |
|
|
| 606 |
|
|
| 593 | 607 |
|
| 594 | 608 |
|
| 595 | 609 |
|
@@ -708,6 +722,73 @@ fn test_up_refuses_a_command_outside_the_allowlist_and_journals_it() {
| 708 | 722 |
|
| 709 | 723 |
|
| 710 | 724 |
|
| 725 |
|
|
| 726 |
|
|
| 727 |
|
|
| 728 |
|
|
| 729 |
|
|
| 730 |
|
|
| 731 |
|
|
| 732 |
|
|
| 733 |
|
|
| 734 |
|
|
| 735 |
|
|
| 736 |
|
|
| 737 |
|
|
| 738 |
|
|
| 739 |
|
|
| 740 |
|
|
| 741 |
|
|
| 742 |
|
|
| 743 |
|
|
| 744 |
|
|
| 745 |
|
|
| 746 |
|
|
| 747 |
|
|
| 748 |
|
|
| 749 |
|
|
| 750 |
|
|
| 751 |
|
|
| 752 |
|
|
| 753 |
|
|
| 754 |
|
|
| 755 |
|
|
| 756 |
|
|
| 757 |
|
|
| 758 |
|
|
| 759 |
|
|
| 760 |
|
|
| 761 |
|
|
| 762 |
|
|
| 763 |
|
|
| 764 |
|
|
| 765 |
|
|
| 766 |
|
|
| 767 |
|
|
| 768 |
|
|
| 769 |
|
|
| 770 |
|
|
| 771 |
|
|
| 772 |
|
|
| 773 |
|
|
| 774 |
|
|
| 775 |
|
|
| 776 |
|
|
| 777 |
|
|
| 778 |
|
|
| 779 |
|
|
| 780 |
|
|
| 781 |
|
|
| 782 |
|
|
| 783 |
|
|
| 784 |
|
|
| 785 |
|
|
| 786 |
|
|
| 787 |
|
|
| 788 |
|
|
| 789 |
|
|
| 790 |
|
|
| 791 |
|
|
| 711 | 792 |
|
| 712 | 793 |
|
| 713 | 794 |
|