Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions codex-rs/core/src/agent/role.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ Rules:
reasoning_effort: Some(ReasoningEffort::Medium),
description: r#"Use `explorer` for all codebase questions.
Explorers are fast and authoritative.
Always prefer them over manual search or file reading.
Rules:
- Ask explorers first and precisely.
- Do not re-read or re-search code they cover.
Expand Down
16 changes: 10 additions & 6 deletions codex-rs/core/src/features.rs
Original file line number Diff line number Diff line change
Expand Up @@ -432,12 +432,6 @@ pub const FEATURES: &[FeatureSpec] = &[
stage: Stage::Deprecated,
default_enabled: false,
},
FeatureSpec {
id: Feature::Collab,
key: "collab",
stage: Stage::Stable,
default_enabled: true,
},
// Experimental program. Rendered in the `/experimental` menu for users.
FeatureSpec {
id: Feature::RuntimeMetrics,
Expand Down Expand Up @@ -517,6 +511,16 @@ pub const FEATURES: &[FeatureSpec] = &[
stage: Stage::Stable,
default_enabled: true,
},
FeatureSpec {
id: Feature::Collab,
key: "collab",
stage: Stage::Experimental {
name: "Sub-agents",
menu_description: "Ask Codex to spawn multiple agents to parallelize the work and win in efficiency.",
announcement: "NEW: Sub-agents can now be spawned by Codex. Enable in /experimental and restart Codex!",
},
default_enabled: false,
},
FeatureSpec {
id: Feature::Apps,
key: "apps",
Expand Down
55 changes: 0 additions & 55 deletions codex-rs/core/src/tools/spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1634,11 +1634,6 @@ mod tests {
external_web_access: Some(true),
},
create_view_image_tool(),
create_spawn_agent_tool(),
create_send_input_tool(),
create_resume_agent_tool(),
create_wait_tool(),
create_close_agent_tool(),
] {
expected.insert(tool_name(&spec).to_string(), spec);
}
Expand Down Expand Up @@ -1806,11 +1801,6 @@ mod tests {
"apply_patch",
"web_search",
"view_image",
"spawn_agent",
"send_input",
"resume_agent",
"wait",
"close_agent",
],
);
}
Expand All @@ -1833,11 +1823,6 @@ mod tests {
"apply_patch",
"web_search",
"view_image",
"spawn_agent",
"send_input",
"resume_agent",
"wait",
"close_agent",
],
);
}
Expand All @@ -1862,11 +1847,6 @@ mod tests {
"apply_patch",
"web_search",
"view_image",
"spawn_agent",
"send_input",
"resume_agent",
"wait",
"close_agent",
],
);
}
Expand All @@ -1891,11 +1871,6 @@ mod tests {
"apply_patch",
"web_search",
"view_image",
"spawn_agent",
"send_input",
"resume_agent",
"wait",
"close_agent",
],
);
}
Expand All @@ -1917,11 +1892,6 @@ mod tests {
"request_user_input",
"web_search",
"view_image",
"spawn_agent",
"send_input",
"resume_agent",
"wait",
"close_agent",
],
);
}
Expand All @@ -1944,11 +1914,6 @@ mod tests {
"apply_patch",
"web_search",
"view_image",
"spawn_agent",
"send_input",
"resume_agent",
"wait",
"close_agent",
],
);
}
Expand All @@ -1970,11 +1935,6 @@ mod tests {
"request_user_input",
"web_search",
"view_image",
"spawn_agent",
"send_input",
"resume_agent",
"wait",
"close_agent",
],
);
}
Expand All @@ -1997,11 +1957,6 @@ mod tests {
"apply_patch",
"web_search",
"view_image",
"spawn_agent",
"send_input",
"resume_agent",
"wait",
"close_agent",
],
);
}
Expand Down Expand Up @@ -2048,11 +2003,6 @@ mod tests {
"apply_patch",
"web_search",
"view_image",
"spawn_agent",
"send_input",
"resume_agent",
"wait",
"close_agent",
],
);
}
Expand All @@ -2076,11 +2026,6 @@ mod tests {
"request_user_input",
"web_search",
"view_image",
"spawn_agent",
"send_input",
"resume_agent",
"wait",
"close_agent",
],
);
}
Expand Down
32 changes: 1 addition & 31 deletions codex-rs/core/tests/suite/model_tools.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,6 @@ async fn model_selects_expected_tools() {
"request_user_input",
"web_search",
"view_image",
"spawn_agent",
"send_input",
"resume_agent",
"wait",
"close_agent",
],
),
"codex-mini-latest should expose the local shell tool",
Expand All @@ -105,11 +100,6 @@ async fn model_selects_expected_tools() {
"apply_patch",
"web_search",
"view_image",
"spawn_agent",
"send_input",
"resume_agent",
"wait",
"close_agent",
],
),
"gpt-5-codex should expose the apply_patch tool",
Expand All @@ -129,11 +119,6 @@ async fn model_selects_expected_tools() {
"apply_patch",
"web_search",
"view_image",
"spawn_agent",
"send_input",
"resume_agent",
"wait",
"close_agent",
],
),
"gpt-5.1-codex should expose the apply_patch tool",
Expand All @@ -152,11 +137,6 @@ async fn model_selects_expected_tools() {
"request_user_input",
"web_search",
"view_image",
"spawn_agent",
"send_input",
"resume_agent",
"wait",
"close_agent",
],
),
"gpt-5 should expose the apply_patch tool",
Expand All @@ -176,11 +156,6 @@ async fn model_selects_expected_tools() {
"apply_patch",
"web_search",
"view_image",
"spawn_agent",
"send_input",
"resume_agent",
"wait",
"close_agent",
],
),
"gpt-5.1 should expose the apply_patch tool",
Expand All @@ -198,12 +173,7 @@ async fn model_selects_expected_tools() {
"request_user_input".to_string(),
"apply_patch".to_string(),
"web_search".to_string(),
"view_image".to_string(),
"spawn_agent".to_string(),
"send_input".to_string(),
"resume_agent".to_string(),
"wait".to_string(),
"close_agent".to_string()
"view_image".to_string()
],
"exp-5.1 should expose the apply_patch tool",
);
Expand Down
5 changes: 0 additions & 5 deletions codex-rs/core/tests/suite/prompt_caching.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,11 +153,6 @@ async fn prompt_tools_are_consistent_across_requests() -> anyhow::Result<()> {
"apply_patch",
"web_search",
"view_image",
"spawn_agent",
"send_input",
"resume_agent",
"wait",
"close_agent",
]);
let body0 = req1.single_request().body_json();

Expand Down
Loading