mirror of
https://github.com/openai/codex.git
synced 2026-04-28 00:25:56 +00:00
## Why The previous `codex-tools` migration steps moved the shared schema models, local-host specs, collaboration specs, and related adapters out of `codex-core`, but `core/src/tools/spec.rs` still contained a grab bag of pure utility tool builders. Those specs do not need session state or handler logic; they only describe wire shapes for tools that `codex-core` already knows how to execute. Moving that remaining low-coupling layer into `codex-tools` keeps the migration moving in meaningful chunks and trims another large block of passive tool-spec construction out of `codex-core` without touching the runtime-coupled handlers. ## What changed - extended `codex-tools` to own the pure spec builders for: - code-mode `exec` / `wait` - `js_repl` / `js_repl_reset` - MCP resource tools `list_mcp_resources`, `list_mcp_resource_templates`, and `read_mcp_resource` - utility tools `list_dir` and `test_sync_tool` - split those builders across small module files with sibling `*_tests.rs` coverage, keeping `src/lib.rs` exports-only - rewired `core/src/tools/spec.rs` to call the extracted builders and deleted the duplicated core-local implementations - moved the direct JS REPL grammar seam test out of `core/src/tools/spec_tests.rs` so it now lives with the extracted implementation in `codex-tools` - updated `codex-rs/tools/README.md` so the documented crate boundary matches the new utility-spec surface ## Test plan - `CARGO_TARGET_DIR=/tmp/codex-tools-utility-specs cargo test -p codex-tools` - `CARGO_TARGET_DIR=/tmp/codex-core-utility-specs cargo test -p codex-core --lib tools::spec::` - `just fix -p codex-tools -p codex-core` - `just argument-comment-lint` ## References - #15923 - #15928 - #15944 - #15953 - #16031 - #16047 - #16129 - #16132 - #16138 - #16141
126 lines
3.7 KiB
Rust
126 lines
3.7 KiB
Rust
use crate::JsonSchema;
|
|
use crate::ResponsesApiTool;
|
|
use crate::ToolSpec;
|
|
use std::collections::BTreeMap;
|
|
|
|
pub fn create_list_dir_tool() -> ToolSpec {
|
|
let properties = BTreeMap::from([
|
|
(
|
|
"dir_path".to_string(),
|
|
JsonSchema::String {
|
|
description: Some("Absolute path to the directory to list.".to_string()),
|
|
},
|
|
),
|
|
(
|
|
"offset".to_string(),
|
|
JsonSchema::Number {
|
|
description: Some(
|
|
"The entry number to start listing from. Must be 1 or greater.".to_string(),
|
|
),
|
|
},
|
|
),
|
|
(
|
|
"limit".to_string(),
|
|
JsonSchema::Number {
|
|
description: Some("The maximum number of entries to return.".to_string()),
|
|
},
|
|
),
|
|
(
|
|
"depth".to_string(),
|
|
JsonSchema::Number {
|
|
description: Some(
|
|
"The maximum directory depth to traverse. Must be 1 or greater.".to_string(),
|
|
),
|
|
},
|
|
),
|
|
]);
|
|
|
|
ToolSpec::Function(ResponsesApiTool {
|
|
name: "list_dir".to_string(),
|
|
description:
|
|
"Lists entries in a local directory with 1-indexed entry numbers and simple type labels."
|
|
.to_string(),
|
|
strict: false,
|
|
defer_loading: None,
|
|
parameters: JsonSchema::Object {
|
|
properties,
|
|
required: Some(vec!["dir_path".to_string()]),
|
|
additional_properties: Some(false.into()),
|
|
},
|
|
output_schema: None,
|
|
})
|
|
}
|
|
|
|
pub fn create_test_sync_tool() -> ToolSpec {
|
|
let barrier_properties = BTreeMap::from([
|
|
(
|
|
"id".to_string(),
|
|
JsonSchema::String {
|
|
description: Some(
|
|
"Identifier shared by concurrent calls that should rendezvous".to_string(),
|
|
),
|
|
},
|
|
),
|
|
(
|
|
"participants".to_string(),
|
|
JsonSchema::Number {
|
|
description: Some(
|
|
"Number of tool calls that must arrive before the barrier opens".to_string(),
|
|
),
|
|
},
|
|
),
|
|
(
|
|
"timeout_ms".to_string(),
|
|
JsonSchema::Number {
|
|
description: Some(
|
|
"Maximum time in milliseconds to wait at the barrier".to_string(),
|
|
),
|
|
},
|
|
),
|
|
]);
|
|
|
|
let properties = BTreeMap::from([
|
|
(
|
|
"sleep_before_ms".to_string(),
|
|
JsonSchema::Number {
|
|
description: Some(
|
|
"Optional delay in milliseconds before any other action".to_string(),
|
|
),
|
|
},
|
|
),
|
|
(
|
|
"sleep_after_ms".to_string(),
|
|
JsonSchema::Number {
|
|
description: Some(
|
|
"Optional delay in milliseconds after completing the barrier".to_string(),
|
|
),
|
|
},
|
|
),
|
|
(
|
|
"barrier".to_string(),
|
|
JsonSchema::Object {
|
|
properties: barrier_properties,
|
|
required: Some(vec!["id".to_string(), "participants".to_string()]),
|
|
additional_properties: Some(false.into()),
|
|
},
|
|
),
|
|
]);
|
|
|
|
ToolSpec::Function(ResponsesApiTool {
|
|
name: "test_sync_tool".to_string(),
|
|
description: "Internal synchronization helper used by Codex integration tests.".to_string(),
|
|
strict: false,
|
|
defer_loading: None,
|
|
parameters: JsonSchema::Object {
|
|
properties,
|
|
required: None,
|
|
additional_properties: Some(false.into()),
|
|
},
|
|
output_schema: None,
|
|
})
|
|
}
|
|
|
|
#[cfg(test)]
|
|
#[path = "utility_tool_tests.rs"]
|
|
mod tests;
|