Skip to content
Open
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
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,15 @@ CHANGELOG.ignore.md
__pycache__/
*.pyc


# --- a5c-ai/o install.sh managed ---
.a5c/creds.env
.a5c/creds.env.tmp.*
.a5c/runs/
# --- end a5c-ai/o install.sh managed ---
o
.a5c/**
work_summaries/
subagents.html
subagents.md
.kanban/format.json
97 changes: 95 additions & 2 deletions codex-rs/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions codex-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ members = [
"utils/string",
"codex-client",
"codex-api",
"codex-subagent",
]
resolver = "2"

Expand Down Expand Up @@ -93,6 +94,7 @@ codex-rmcp-client = { path = "rmcp-client" }
codex-stdio-to-uds = { path = "stdio-to-uds" }
codex-tui = { path = "tui" }
codex-tui2 = { path = "tui2" }
codex-subagent = { path = "codex-subagent" }
codex-utils-absolute-path = { path = "utils/absolute-path" }
codex-utils-cache = { path = "utils/cache" }
codex-utils-cargo-bin = { path = "utils/cargo-bin" }
Expand Down Expand Up @@ -137,6 +139,7 @@ env-flags = "0.1.1"
env_logger = "0.11.5"
eventsource-stream = "0.2.3"
futures = { version = "0.3", default-features = false }
globset = "0.4.14"
http = "1.3.1"
icu_decimal = "2.1"
icu_locale_core = "2.1"
Expand Down Expand Up @@ -189,6 +192,7 @@ serde = "1"
serde_json = "1"
serde_with = "3.16"
serde_yaml = "0.9"
strip-ansi-escapes = "0.1"
serial_test = "3.2.0"
sha1 = "0.10.6"
sha2 = "0.10"
Expand Down
3 changes: 3 additions & 0 deletions codex-rs/app-server-protocol/src/protocol/v1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,9 @@ pub struct SendUserTurnParams {
pub summary: ReasoningSummary,
/// Optional JSON Schema used to constrain the final assistant message for this turn.
pub output_schema: Option<serde_json::Value>,
/// Activate the specified Claude-compatible subagent before sending the turn.
#[serde(default)]
pub subagent: Option<String>,
}

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, JsonSchema, TS)]
Expand Down
3 changes: 3 additions & 0 deletions codex-rs/app-server-protocol/src/protocol/v2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1455,6 +1455,9 @@ pub struct TurnStartParams {
pub summary: Option<ReasoningSummary>,
/// Optional JSON Schema used to constrain the final assistant message for this turn.
pub output_schema: Option<JsonValue>,
/// Activate the specified Claude-compatible subagent before the turn.
#[serde(default)]
pub subagent: Option<String>,
}

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, JsonSchema, TS)]
Expand Down
Loading
Loading