Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
690b95b
Project selected plugin runtime by environment availability
jif-oai Jun 25, 2026
e3cc8a2
Test selected capability stack across availability and resume
jif-oai Jun 25, 2026
f850a5c
Gate selected capability stack test on Windows
jif-oai Jun 25, 2026
51a5fc4
Cover same-turn selected capability activation
jif-oai Jun 25, 2026
85d4bd6
Strengthen selected capability integration coverage
jif-oai Jun 26, 2026
24dd7a8
Merge branch 'main' into jif/selected-capability-stack-integration
jif-oai Jun 26, 2026
7da42a5
Reuse unchanged MCP projections
jif-oai Jun 26, 2026
d1f0d66
Merge branch 'main' into jif/selected-capability-stack-integration
jif-oai Jun 26, 2026
ff54d8b
Merge branch 'jif/selected-capability-stack-integration' into jif/reu…
jif-oai Jun 26, 2026
9420863
Merge branch 'main' into jif/selected-capability-stack-integration
jif-oai Jun 26, 2026
54ba136
Merge branch 'jif/selected-capability-stack-integration' into jif/reu…
jif-oai Jun 26, 2026
60655e8
Fall back when remote filesystem walk is unavailable
jif-oai Jun 26, 2026
4595b6d
Test selected capability stack across availability and resume
jif-oai Jun 25, 2026
866e462
Gate selected capability stack test on Windows
jif-oai Jun 25, 2026
2581640
Cover same-turn selected capability activation
jif-oai Jun 25, 2026
c38d428
Strengthen selected capability integration coverage
jif-oai Jun 26, 2026
6b27435
Merge branch 'jif/selected-capability-stack-integration' into jif/reu…
jif-oai Jun 26, 2026
6583082
Keep selected capability executor separate in integration test
jif-oai Jun 26, 2026
7099edf
Merge branch 'jif/selected-capability-stack-integration' into jif/reu…
jif-oai Jun 26, 2026
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
4 changes: 2 additions & 2 deletions codex-rs/app-server/tests/suite/v2/app_list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1533,7 +1533,7 @@ impl ServerHandler for AppListMcpServer {
}
}

async fn start_apps_server_with_delays(
pub(super) async fn start_apps_server_with_delays(
connectors: Vec<AppInfo>,
tools: Vec<Tool>,
directory_delay: Duration,
Expand Down Expand Up @@ -1693,7 +1693,7 @@ async fn list_directory_connectors(
}
}

fn connector_tool(connector_id: &str, connector_name: &str) -> Result<Tool> {
pub(super) fn connector_tool(connector_id: &str, connector_name: &str) -> Result<Tool> {
let schema: JsonObject = serde_json::from_value(json!({
"type": "object",
"additionalProperties": false
Expand Down
2 changes: 2 additions & 0 deletions codex-rs/app-server/tests/suite/v2/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ mod request_user_input;
mod request_validation;
mod review;
mod safety_check_downgrade;
#[cfg(not(target_os = "windows"))]
mod selected_capability_stack;
mod skills_list;
mod sleep;
mod thread_archive;
Expand Down
Loading
Loading