Commit ca28716
committed
feat(trogon-acp-runner): add RpcServer and standalone binary
- Add RpcServer: handles all non-prompt ACP methods (initialize,
authenticate, new_session, load_session, set_session_mode,
set_session_config_option, list_sessions, fork_session, resume_session)
via NATS request-reply, so acp-nats-ws can be a pure dumb pipe
- Add main.rs binary that runs RpcServer + Runner together, pairing
with acp-nats-ws for the WebSocket deployment path
- Fix coverage build: add #![cfg_attr(coverage, allow(dead_code,
unused_imports))] to acp-nats-stdio/src/main.rs and
acp-nats-ws/src/main.rs to silence dead_code errors under --cfg=coverage
- Move terminal_output_cap from Bridge to TrogonAcpAgent (Cell<bool>)
following the dumb-pipe Bridge refactor1 parent 466793c commit ca28716
File tree
8 files changed
+646
-19
lines changed- rsworkspace
- crates
- acp-nats-stdio/src
- acp-nats-ws/src
- trogon-acp-runner
- src
- trogon-acp/src
8 files changed
+646
-19
lines changedSome generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
1 | 2 | | |
2 | 3 | | |
3 | 4 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
1 | 2 | | |
2 | 3 | | |
3 | 4 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| 11 | + | |
| 12 | + | |
11 | 13 | | |
12 | 14 | | |
13 | 15 | | |
| |||
16 | 18 | | |
17 | 19 | | |
18 | 20 | | |
19 | | - | |
| 21 | + | |
| 22 | + | |
20 | 23 | | |
21 | 24 | | |
22 | 25 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
| 4 | + | |
4 | 5 | | |
5 | 6 | | |
6 | 7 | | |
7 | 8 | | |
| 9 | + | |
8 | 10 | | |
9 | 11 | | |
0 commit comments