mirror of
https://github.com/obra/superpowers.git
synced 2026-04-16 10:29:57 +00:00
Merge pull request #749 from ynyyn/fix-codex-multi-agent-flag
fix(docs): replace deprecated `collab` flag with `multi_agent` for Codex docs
This commit is contained in:
@@ -32,10 +32,10 @@ Fetch and follow instructions from https://raw.githubusercontent.com/obra/superp
|
|||||||
|
|
||||||
3. Restart Codex.
|
3. Restart Codex.
|
||||||
|
|
||||||
4. **For subagent skills** (optional): Skills like `dispatching-parallel-agents` and `subagent-driven-development` require Codex's collab feature. Add to your Codex config:
|
4. **For subagent skills** (optional): Skills like `dispatching-parallel-agents` and `subagent-driven-development` require Codex's multi-agent feature. Add to your Codex config:
|
||||||
```toml
|
```toml
|
||||||
[features]
|
[features]
|
||||||
collab = true
|
multi_agent = true
|
||||||
```
|
```
|
||||||
|
|
||||||
### Windows
|
### Windows
|
||||||
|
|||||||
@@ -13,13 +13,13 @@ Skills use Claude Code tool names. When you encounter these in a skill, use your
|
|||||||
| `Read`, `Write`, `Edit` (files) | Use your native file tools |
|
| `Read`, `Write`, `Edit` (files) | Use your native file tools |
|
||||||
| `Bash` (run commands) | Use your native shell tools |
|
| `Bash` (run commands) | Use your native shell tools |
|
||||||
|
|
||||||
## Subagent dispatch requires collab
|
## Subagent dispatch requires multi-agent support
|
||||||
|
|
||||||
Add to your Codex config (`~/.codex/config.toml`):
|
Add to your Codex config (`~/.codex/config.toml`):
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
[features]
|
[features]
|
||||||
collab = true
|
multi_agent = true
|
||||||
```
|
```
|
||||||
|
|
||||||
This enables `spawn_agent`, `wait`, and `close_agent` for skills like `dispatching-parallel-agents` and `subagent-driven-development`.
|
This enables `spawn_agent`, `wait`, and `close_agent` for skills like `dispatching-parallel-agents` and `subagent-driven-development`.
|
||||||
|
|||||||
Reference in New Issue
Block a user