@openaide/codex-acp 1.0.0 → 1.1.1

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.
Files changed (3) hide show
  1. package/README.md +9 -2
  2. package/dist/index.js +6558 -4911
  3. package/package.json +11 -11
package/README.md CHANGED
@@ -11,9 +11,10 @@ Use [OpenAI Codex](https://github.com/openai/codex) from [Agent Client Protocol]
11
11
  - ChatGPT, API key, and client-provided custom gateway authentication.
12
12
  - Model, reasoning effort, fast mode, approval, and sandbox mode configuration.
13
13
  - Text prompts, embedded context, images, resource links, and additional workspace directories.
14
- - Shell command, file change, permission request, MCP tool call, terminal output, reasoning, plan, web search, image generation, image view, token usage, and review events.
15
- - Subagent launches as standard ACP tool calls, with Codex thread identity and activity details in namespaced `_meta.codex.subagent` metadata.
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
+ - [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
16
  - Session-scoped long-running goals through the provider-neutral [goal extension](docs/goal-extension.md).
17
+ - A per-turn [agent file-change report](docs/agent-file-change-report.md) after capability negotiation.
17
18
  - Client-provided MCP servers over command-based stdio config and HTTP transport.
18
19
  - Slash commands: `/status`, `/mcp`, `/skills`, `/goal`, `/review`, `/review-branch`, `/review-commit`, `/compact`, and `/logout`, as well as configured skills.
19
20
 
@@ -75,6 +76,12 @@ npm run bundle:all
75
76
 
76
77
  See [readme-dev.md](readme-dev.md) for local client configuration, binary packaging, and Codex type regeneration.
77
78
 
79
+ ### Subagent sessions
80
+
81
+ Subagent sessions follow the draft [ACP subagent RFD](https://github.com/agentclientprotocol/agent-client-protocol/pull/1992) and are enabled only after bilateral capability negotiation during `initialize`. Without native negotiation, the subagent lifecycle stays an ordinary ACP tool call.
82
+
83
+ See [docs/subagent-sessions.md](docs/subagent-sessions.md) for the negotiation, lifecycle events, `session/load` reconstruction, and legacy fallback details.
84
+
78
85
  ## License
79
86
 
80
87
  By contributing, you agree that your contributions will be licensed under the Apache 2.0 License.