@agentclientprotocol/codex-acp 1.8.0 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/dist/index.js +925 -62
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -13,6 +13,7 @@ Use [OpenAI Codex](https://github.com/openai/codex) from [Agent Client Protocol]
|
|
|
13
13
|
- Text prompts, embedded context, images, resource links, and additional workspace directories.
|
|
14
14
|
- Shell command, file change, [permission request](docs/permission-extension.md), MCP tool call, terminal output, reasoning, plan, web search, image generation, image view, token usage, and review events.
|
|
15
15
|
- [Native ACP subagent sessions](docs/subagent-sessions.md) (after capability negotiation) with separate child histories and root-routed permissions; a legacy tool-call fallback otherwise.
|
|
16
|
+
- [Background terminal tasks](docs/async-tasks.md) in AIR, with task status and targeted stop support after capability negotiation.
|
|
16
17
|
- Session-scoped long-running goals through the provider-neutral [goal extension](docs/goal-extension.md).
|
|
17
18
|
- A per-turn [agent file-change report](docs/agent-file-change-report.md) after capability negotiation.
|
|
18
19
|
- Client-provided MCP servers over command-based stdio config and HTTP transport.
|
|
@@ -82,6 +83,12 @@ Subagent sessions follow the draft [ACP subagent RFD](https://github.com/agentcl
|
|
|
82
83
|
|
|
83
84
|
See [docs/subagent-sessions.md](docs/subagent-sessions.md) for the negotiation, lifecycle events, `session/load` reconstruction, and legacy fallback details.
|
|
84
85
|
|
|
86
|
+
### Background terminal tasks
|
|
87
|
+
|
|
88
|
+
Codex can keep a shell command running after a turn continues. AIR clients can show this work in the Async Tasks panel and stop one command.
|
|
89
|
+
|
|
90
|
+
See [docs/async-tasks.md](docs/async-tasks.md) for the capability, lifecycle events, and stop request.
|
|
91
|
+
|
|
85
92
|
## License
|
|
86
93
|
|
|
87
94
|
By contributing, you agree that your contributions will be licensed under the Apache 2.0 License.
|