Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
46b6cd3
feat: implement multi-agent orchestration system
metaphorics Sep 15, 2025
9582502
Merge branch 'openai:main' into main
metaphorics Sep 15, 2025
160774d
chore: apply clippy lints
metaphorics Sep 15, 2025
f3d900f
Merge branch 'main' into main
metaphorics Sep 15, 2025
26975dc
Merge branch 'main' into main
metaphorics Sep 15, 2025
ae07076
feat: update subagents ux experiences
metaphorics Sep 15, 2025
f3f14bd
docs: update documents to meet the new subagents features accordingly
metaphorics Sep 15, 2025
2c2768a
Merge branch 'main' into main
metaphorics Sep 15, 2025
458e3d1
feat: implement path validation for agent prompt files
metaphorics Sep 15, 2025
2c322f2
refactor: enhance agent context handling and task extraction
metaphorics Sep 15, 2025
117f524
chore: update tests accordingly (added agent tool)
metaphorics Sep 15, 2025
cfd8248
Merge branch 'main' into main
metaphorics Sep 15, 2025
54b6acd
refactor: improve agent ID generation and context management
metaphorics Sep 15, 2025
23d04b1
refactor: improve agent context management and logging
metaphorics Sep 15, 2025
cd24d73
Merge branch 'main' into main
metaphorics Sep 15, 2025
275f92e
refactor: enhance agent event handling and context management
metaphorics Sep 15, 2025
d7f89b1
Merge branch 'main' into main
metaphorics Sep 15, 2025
784464e
Implement validation and prompt loading for AgentConfig
metaphorics Sep 15, 2025
374dcf7
Refactor agent tool call handling for parallel execution
metaphorics Sep 16, 2025
1ad8bae
Merge branch 'main' into main
metaphorics Sep 16, 2025
7199be9
fix: Refactor agent execution for true parallelism
metaphorics Sep 16, 2025
6a36f32
refactor: Improve mutex handling and state management
metaphorics Sep 16, 2025
96aaa91
refactor: Improve tool call execution strategy for concurrency
metaphorics Sep 16, 2025
0af39e8
Merge branch 'main' into main
metaphorics Sep 16, 2025
9f4d05d
fixr: Update agent message structure for input handling
metaphorics Sep 16, 2025
8d526a3
refactor: Enhance agent tool handling for improved parallel execution
metaphorics Sep 16, 2025
086a049
refactor: Implement agent context management to prevent recursion
metaphorics Sep 16, 2025
9f1e3c0
Merge branch 'main' into main
metaphorics Sep 18, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ You can also use Codex with an API key, but this requires [additional setup](./d

Codex CLI supports [MCP servers](./docs/advanced.md#model-context-protocol-mcp). Enable by adding an `mcp_servers` section to your `~/.codex/config.toml`.


### Configuration

Codex CLI supports a rich set of configuration options, with preferences stored in `~/.codex/config.toml`. For full configuration options, see [Configuration](./docs/config.md).
Expand All @@ -88,6 +87,10 @@ Codex CLI supports a rich set of configuration options, with preferences stored
- [Non-interactive / CI mode](./docs/advanced.md#non-interactive--ci-mode)
- [Tracing / verbose logging](./docs/advanced.md#tracing--verbose-logging)
- [Model Context Protocol (MCP)](./docs/advanced.md#model-context-protocol-mcp)
- [**Multi-Agent System**](./docs/subagents.md)
- [Custom agent configuration](./docs/subagents.md#custom-agent-configuration)
- [Agent behavior](./docs/subagents.md#agent-behavior)
- [Best practices](./docs/subagents.md#best-practices)
- [**Zero data retention (ZDR)**](./docs/zdr.md)
- [**Contributing**](./docs/contributing.md)
- [**Install & build**](./docs/install.md)
Expand All @@ -102,4 +105,3 @@ Codex CLI supports a rich set of configuration options, with preferences stored
## License

This repository is licensed under the [Apache-2.0 License](LICENSE).

Loading