repo
stringlengths
6
65
file_url
stringlengths
81
311
file_path
stringlengths
6
227
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:31:58
2026-01-04 20:25:31
truncated
bool
2 classes
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/execpolicy/src/error.rs
codex-rs/execpolicy/src/error.rs
use starlark::Error as StarlarkError; use thiserror::Error; pub type Result<T> = std::result::Result<T, Error>; #[derive(Debug, Error)] pub enum Error { #[error("invalid decision: {0}")] InvalidDecision(String), #[error("invalid pattern element: {0}")] InvalidPattern(String), #[error("invalid exam...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/execpolicy/src/amend.rs
codex-rs/execpolicy/src/amend.rs
use std::fs::OpenOptions; use std::io::Read; use std::io::Seek; use std::io::SeekFrom; use std::io::Write; use std::path::Path; use std::path::PathBuf; use serde_json; use thiserror::Error; #[derive(Debug, Error)] pub enum AmendError { #[error("prefix rule requires at least one token")] EmptyPrefix, #[err...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/execpolicy/src/main.rs
codex-rs/execpolicy/src/main.rs
use anyhow::Result; use clap::Parser; use codex_execpolicy::execpolicycheck::ExecPolicyCheckCommand; /// CLI for evaluating exec policies #[derive(Parser)] #[command(name = "codex-execpolicy")] enum Cli { /// Evaluate a command against a policy. Check(ExecPolicyCheckCommand), } fn main() -> Result<()> { l...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/execpolicy/src/rule.rs
codex-rs/execpolicy/src/rule.rs
use crate::decision::Decision; use crate::error::Error; use crate::error::Result; use serde::Deserialize; use serde::Serialize; use shlex::try_join; use std::any::Any; use std::fmt::Debug; use std::sync::Arc; /// Matches a single command token, either a fixed string or one of several allowed alternatives. #[derive(Clo...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/execpolicy/src/execpolicycheck.rs
codex-rs/execpolicy/src/execpolicycheck.rs
use std::fs; use std::path::PathBuf; use anyhow::Context; use anyhow::Result; use clap::Parser; use serde::Serialize; use crate::Decision; use crate::Policy; use crate::PolicyParser; use crate::RuleMatch; /// Arguments for evaluating a command against one or more execpolicy files. #[derive(Debug, Parser, Clone)] pub...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/execpolicy/tests/basic.rs
codex-rs/execpolicy/tests/basic.rs
use std::any::Any; use std::sync::Arc; use anyhow::Context; use anyhow::Result; use codex_execpolicy::Decision; use codex_execpolicy::Error; use codex_execpolicy::Evaluation; use codex_execpolicy::Policy; use codex_execpolicy::PolicyParser; use codex_execpolicy::RuleMatch; use codex_execpolicy::RuleRef; use codex_exec...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/app-server-test-client/src/main.rs
codex-rs/app-server-test-client/src/main.rs
use std::collections::VecDeque; use std::io::BufRead; use std::io::BufReader; use std::io::Write; use std::process::Child; use std::process::ChildStdin; use std::process::ChildStdout; use std::process::Command; use std::process::Stdio; use std::thread; use std::time::Duration; use anyhow::Context; use anyhow::Result; ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/rmcp-client/src/lib.rs
codex-rs/rmcp-client/src/lib.rs
mod auth_status; mod find_codex_home; mod logging_client_handler; mod oauth; mod perform_oauth_login; mod program_resolver; mod rmcp_client; mod utils; pub use auth_status::determine_streamable_http_auth_status; pub use auth_status::supports_oauth_login; pub use codex_protocol::protocol::McpAuthStatus; pub use oauth::...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/rmcp-client/src/perform_oauth_login.rs
codex-rs/rmcp-client/src/perform_oauth_login.rs
use std::collections::HashMap; use std::string::String; use std::sync::Arc; use std::time::Duration; use anyhow::Context; use anyhow::Result; use anyhow::anyhow; use reqwest::ClientBuilder; use rmcp::transport::auth::OAuthState; use tiny_http::Response; use tiny_http::Server; use tokio::sync::oneshot; use tokio::time:...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/rmcp-client/src/auth_status.rs
codex-rs/rmcp-client/src/auth_status.rs
use std::collections::HashMap; use std::time::Duration; use anyhow::Error; use anyhow::Result; use codex_protocol::protocol::McpAuthStatus; use reqwest::Client; use reqwest::StatusCode; use reqwest::Url; use reqwest::header::HeaderMap; use serde::Deserialize; use tracing::debug; use crate::OAuthCredentialsStoreMode; ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/rmcp-client/src/oauth.rs
codex-rs/rmcp-client/src/oauth.rs
//! This file handles all logic related to managing MCP OAuth credentials. //! All credentials are stored using the keyring crate which uses os-specific keyring services. //! https://crates.io/crates/keyring //! macOS: macOS keychain. //! Windows: Windows Credential Manager //! Linux: DBus-based Secret Service, the ker...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/rmcp-client/src/program_resolver.rs
codex-rs/rmcp-client/src/program_resolver.rs
//! Platform-specific program resolution for MCP server execution. //! //! This module provides a unified interface for resolving executable paths //! across different operating systems. The key challenge it addresses is that //! Windows cannot execute script files (e.g., `.cmd`, `.bat`) directly through //! `Command::...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/rmcp-client/src/utils.rs
codex-rs/rmcp-client/src/utils.rs
use std::collections::HashMap; use std::env; use std::time::Duration; use anyhow::Context; use anyhow::Result; use anyhow::anyhow; use mcp_types::CallToolResult; use reqwest::ClientBuilder; use reqwest::header::HeaderMap; use reqwest::header::HeaderName; use reqwest::header::HeaderValue; use rmcp::model::CallToolResul...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/rmcp-client/src/find_codex_home.rs
codex-rs/rmcp-client/src/find_codex_home.rs
use dirs::home_dir; use std::path::PathBuf; /// This was copied from codex-core but codex-core depends on this crate. /// TODO: move this to a shared crate lower in the dependency tree. /// /// /// Returns the path to the Codex configuration directory, which can be /// specified by the `CODEX_HOME` environment variabl...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/rmcp-client/src/rmcp_client.rs
codex-rs/rmcp-client/src/rmcp_client.rs
use std::collections::HashMap; use std::ffi::OsString; use std::io; use std::path::PathBuf; use std::process::Stdio; use std::sync::Arc; use std::time::Duration; use anyhow::Result; use anyhow::anyhow; use futures::FutureExt; use futures::future::BoxFuture; use mcp_types::CallToolRequestParams; use mcp_types::CallTool...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/rmcp-client/src/logging_client_handler.rs
codex-rs/rmcp-client/src/logging_client_handler.rs
use std::sync::Arc; use rmcp::ClientHandler; use rmcp::RoleClient; use rmcp::model::CancelledNotificationParam; use rmcp::model::ClientInfo; use rmcp::model::CreateElicitationRequestParam; use rmcp::model::CreateElicitationResult; use rmcp::model::LoggingLevel; use rmcp::model::LoggingMessageNotificationParam; use rmc...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/rmcp-client/src/bin/rmcp_test_server.rs
codex-rs/rmcp-client/src/bin/rmcp_test_server.rs
use std::borrow::Cow; use std::collections::HashMap; use std::sync::Arc; use rmcp::ErrorData as McpError; use rmcp::ServiceExt; use rmcp::handler::server::ServerHandler; use rmcp::model::CallToolRequestParam; use rmcp::model::CallToolResult; use rmcp::model::JsonObject; use rmcp::model::ListToolsResult; use rmcp::mode...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/rmcp-client/src/bin/test_stdio_server.rs
codex-rs/rmcp-client/src/bin/test_stdio_server.rs
use std::borrow::Cow; use std::collections::HashMap; use std::sync::Arc; use rmcp::ErrorData as McpError; use rmcp::ServiceExt; use rmcp::handler::server::ServerHandler; use rmcp::model::CallToolRequestParam; use rmcp::model::CallToolResult; use rmcp::model::JsonObject; use rmcp::model::ListResourceTemplatesResult; us...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/rmcp-client/src/bin/test_streamable_http_server.rs
codex-rs/rmcp-client/src/bin/test_streamable_http_server.rs
use std::borrow::Cow; use std::collections::HashMap; use std::io::ErrorKind; use std::net::SocketAddr; use std::sync::Arc; use axum::Router; use axum::body::Body; use axum::extract::State; use axum::http::Request; use axum::http::StatusCode; use axum::http::header::AUTHORIZATION; use axum::http::header::CONTENT_TYPE; ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/rmcp-client/tests/resources.rs
codex-rs/rmcp-client/tests/resources.rs
use std::ffi::OsString; use std::path::PathBuf; use std::time::Duration; use codex_rmcp_client::ElicitationAction; use codex_rmcp_client::ElicitationResponse; use codex_rmcp_client::RmcpClient; use codex_utils_cargo_bin::CargoBinError; use futures::FutureExt as _; use mcp_types::ClientCapabilities; use mcp_types::Impl...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/ansi-escape/src/lib.rs
codex-rs/ansi-escape/src/lib.rs
use ansi_to_tui::Error; use ansi_to_tui::IntoText; use ratatui::text::Line; use ratatui::text::Text; // Expand tabs in a best-effort way for transcript rendering. // Tabs can interact poorly with left-gutter prefixes in our TUI and CLI // transcript views (e.g., `nl` separates line numbers from content with a tab). //...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/cloud-tasks/src/app.rs
codex-rs/cloud-tasks/src/app.rs
use std::time::Duration; use std::time::Instant; // Environment filter data models for the TUI #[derive(Clone, Debug, Default)] pub struct EnvironmentRow { pub id: String, pub label: Option<String>, pub is_pinned: bool, pub repo_hints: Option<String>, // e.g., "openai/codex" } #[derive(Clone, Debug, D...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/cloud-tasks/src/lib.rs
codex-rs/cloud-tasks/src/lib.rs
mod app; mod cli; pub mod env_detect; mod new_task; pub mod scrollable_diff; mod ui; pub mod util; pub use cli::Cli; use anyhow::anyhow; use chrono::Utc; use codex_cloud_tasks_client::TaskStatus; use codex_login::AuthManager; use owo_colors::OwoColorize; use owo_colors::Stream; use std::cmp::Ordering; use std::io::IsT...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
true
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/cloud-tasks/src/scrollable_diff.rs
codex-rs/cloud-tasks/src/scrollable_diff.rs
use unicode_width::UnicodeWidthChar; use unicode_width::UnicodeWidthStr; /// Scroll position and geometry for a vertical scroll view. #[derive(Clone, Copy, Debug, Default)] pub struct ScrollViewState { pub scroll: u16, pub viewport_h: u16, pub content_h: u16, } impl ScrollViewState { pub fn clamp(&mut...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/cloud-tasks/src/env_detect.rs
codex-rs/cloud-tasks/src/env_detect.rs
use reqwest::header::CONTENT_TYPE; use reqwest::header::HeaderMap; use std::collections::HashMap; use tracing::info; use tracing::warn; #[derive(Debug, Clone, serde::Deserialize)] struct CodeEnvironment { id: String, #[serde(default)] label: Option<String>, #[serde(default)] is_pinned: Option<bool>...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/cloud-tasks/src/cli.rs
codex-rs/cloud-tasks/src/cli.rs
use clap::Args; use clap::Parser; use codex_common::CliConfigOverrides; #[derive(Parser, Debug, Default)] #[command(version)] pub struct Cli { #[clap(skip)] pub config_overrides: CliConfigOverrides, #[command(subcommand)] pub command: Option<Command>, } #[derive(Debug, clap::Subcommand)] pub enum Com...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/cloud-tasks/src/util.rs
codex-rs/cloud-tasks/src/util.rs
use base64::Engine as _; use chrono::DateTime; use chrono::Local; use chrono::Utc; use reqwest::header::HeaderMap; use codex_core::config::Config; use codex_login::AuthManager; pub fn set_user_agent_suffix(suffix: &str) { if let Ok(mut guard) = codex_core::default_client::USER_AGENT_SUFFIX.lock() { guard....
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/cloud-tasks/src/ui.rs
codex-rs/cloud-tasks/src/ui.rs
use ratatui::layout::Constraint; use ratatui::layout::Direction; use ratatui::layout::Layout; use ratatui::prelude::*; use ratatui::style::Color; use ratatui::style::Modifier; use ratatui::style::Style; use ratatui::style::Stylize; use ratatui::widgets::Block; use ratatui::widgets::BorderType; use ratatui::widgets::Bor...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
true
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/cloud-tasks/src/new_task.rs
codex-rs/cloud-tasks/src/new_task.rs
use codex_tui::ComposerInput; pub struct NewTaskPage { pub composer: ComposerInput, pub submitting: bool, pub env_id: Option<String>, pub best_of_n: usize, } impl NewTaskPage { pub fn new(env_id: Option<String>, best_of_n: usize) -> Self { let mut composer = ComposerInput::new(); c...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/cloud-tasks/tests/env_filter.rs
codex-rs/cloud-tasks/tests/env_filter.rs
use codex_cloud_tasks_client::CloudBackend; use codex_cloud_tasks_client::MockClient; #[tokio::test] async fn mock_backend_varies_by_env() { let client = MockClient; let root = CloudBackend::list_tasks(&client, None).await.unwrap(); assert!(root.iter().any(|t| t.title.contains("Update README"))); let...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/mcp-types/src/lib.rs
codex-rs/mcp-types/src/lib.rs
// @generated // DO NOT EDIT THIS FILE DIRECTLY. // Run the following in the crate root to regenerate this file: // // ```shell // ./generate_mcp_types.py // ``` use serde::Deserialize; use serde::Serialize; use serde::de::DeserializeOwned; use std::convert::TryFrom; use schemars::JsonSchema; use ts_rs::TS; pub const...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
true
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/mcp-types/tests/all.rs
codex-rs/mcp-types/tests/all.rs
// Single integration test binary that aggregates all test modules. // The submodules live in `tests/suite/`. mod suite;
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/mcp-types/tests/suite/progress_notification.rs
codex-rs/mcp-types/tests/suite/progress_notification.rs
use mcp_types::JSONRPCMessage; use mcp_types::ProgressNotificationParams; use mcp_types::ProgressToken; use mcp_types::ServerNotification; #[test] fn deserialize_progress_notification() { let raw = r#"{ "jsonrpc": "2.0", "method": "notifications/progress", "params": { "message":...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/mcp-types/tests/suite/initialize.rs
codex-rs/mcp-types/tests/suite/initialize.rs
use mcp_types::ClientCapabilities; use mcp_types::ClientRequest; use mcp_types::Implementation; use mcp_types::InitializeRequestParams; use mcp_types::JSONRPC_VERSION; use mcp_types::JSONRPCMessage; use mcp_types::JSONRPCRequest; use mcp_types::RequestId; use serde_json::json; #[test] fn deserialize_initialize_request...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/mcp-types/tests/suite/mod.rs
codex-rs/mcp-types/tests/suite/mod.rs
// Aggregates all former standalone integration tests as modules. mod initialize; mod progress_notification;
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/exec-server/src/posix.rs
codex-rs/exec-server/src/posix.rs
//! This is an MCP that implements an alternative `shell` tool with fine-grained privilege //! escalation based on a per-exec() policy. //! //! We spawn Bash process inside a sandbox. The Bash we spawn is patched to allow us to intercept //! every exec() call it makes by invoking a wrapper program and passing in the ar...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/exec-server/src/lib.rs
codex-rs/exec-server/src/lib.rs
#[cfg(unix)] mod posix; #[cfg(unix)] pub use posix::main_execve_wrapper; #[cfg(unix)] pub use posix::main_mcp_server; #[cfg(unix)] pub use posix::ExecResult;
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/exec-server/src/posix/mcp.rs
codex-rs/exec-server/src/posix/mcp.rs
use std::path::PathBuf; use std::sync::Arc; use std::time::Duration; use anyhow::Context as _; use anyhow::Result; use codex_core::MCP_SANDBOX_STATE_CAPABILITY; use codex_core::MCP_SANDBOX_STATE_METHOD; use codex_core::SandboxState; use codex_core::protocol::SandboxPolicy; use codex_execpolicy::Policy; use rmcp::Error...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/exec-server/src/posix/escalation_policy.rs
codex-rs/exec-server/src/posix/escalation_policy.rs
use std::path::Path; use crate::posix::escalate_protocol::EscalateAction; /// Decides what action to take in response to an execve request from a client. #[async_trait::async_trait] pub(crate) trait EscalationPolicy: Send + Sync { async fn determine_action( &self, file: &Path, argv: &[Stri...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/exec-server/src/posix/stopwatch.rs
codex-rs/exec-server/src/posix/stopwatch.rs
use std::future::Future; use std::sync::Arc; use std::time::Duration; use std::time::Instant; use tokio::sync::Mutex; use tokio::sync::Notify; use tokio_util::sync::CancellationToken; #[derive(Clone, Debug)] pub(crate) struct Stopwatch { limit: Duration, inner: Arc<Mutex<StopwatchState>>, notify: Arc<Noti...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/exec-server/src/posix/escalate_protocol.rs
codex-rs/exec-server/src/posix/escalate_protocol.rs
use std::collections::HashMap; use std::os::fd::RawFd; use std::path::PathBuf; use serde::Deserialize; use serde::Serialize; /// 'exec-server escalate' reads this to find the inherited FD for the escalate socket. pub(super) const ESCALATE_SOCKET_ENV_VAR: &str = "CODEX_ESCALATE_SOCKET"; /// The patched bash uses this...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/exec-server/src/posix/escalate_client.rs
codex-rs/exec-server/src/posix/escalate_client.rs
use std::io; use std::os::fd::AsRawFd; use std::os::fd::FromRawFd as _; use std::os::fd::OwnedFd; use anyhow::Context as _; use crate::posix::escalate_protocol::BASH_EXEC_WRAPPER_ENV_VAR; use crate::posix::escalate_protocol::ESCALATE_SOCKET_ENV_VAR; use crate::posix::escalate_protocol::EscalateAction; use crate::posi...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/exec-server/src/posix/escalate_server.rs
codex-rs/exec-server/src/posix/escalate_server.rs
use std::collections::HashMap; use std::os::fd::AsRawFd; use std::path::PathBuf; use std::process::Stdio; use std::sync::Arc; use std::time::Duration; use anyhow::Context as _; use path_absolutize::Absolutize as _; use codex_core::SandboxState; use codex_core::exec::process_exec_tool_call; use codex_core::sandboxing:...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/exec-server/src/posix/socket.rs
codex-rs/exec-server/src/posix/socket.rs
use libc::c_uint; use serde::Deserialize; use serde::Serialize; use socket2::Domain; use socket2::MaybeUninitSlice; use socket2::MsgHdr; use socket2::MsgHdrMut; use socket2::Socket; use socket2::Type; use std::io::IoSlice; use std::mem::MaybeUninit; use std::os::fd::AsRawFd; use std::os::fd::FromRawFd; use std::os::fd:...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/exec-server/src/posix/mcp_escalation_policy.rs
codex-rs/exec-server/src/posix/mcp_escalation_policy.rs
use std::path::Path; use codex_core::sandboxing::SandboxPermissions; use codex_execpolicy::Policy; use rmcp::ErrorData as McpError; use rmcp::RoleServer; use rmcp::model::CreateElicitationRequestParam; use rmcp::model::CreateElicitationResult; use rmcp::model::ElicitationAction; use rmcp::model::ElicitationSchema; use...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/exec-server/src/bin/main_mcp_server.rs
codex-rs/exec-server/src/bin/main_mcp_server.rs
#[cfg(not(unix))] fn main() { eprintln!("codex-exec-mcp-server is only implemented for UNIX"); std::process::exit(1); } #[cfg(unix)] pub use codex_exec_server::main_mcp_server as main;
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/exec-server/src/bin/main_execve_wrapper.rs
codex-rs/exec-server/src/bin/main_execve_wrapper.rs
#[cfg(not(unix))] fn main() { eprintln!("codex-execve-wrapper is only implemented for UNIX"); std::process::exit(1); } #[cfg(unix)] pub use codex_exec_server::main_execve_wrapper as main;
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/exec-server/tests/all.rs
codex-rs/exec-server/tests/all.rs
// Single integration test binary that aggregates all test modules. // The submodules live in `tests/suite/`. mod suite;
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/exec-server/tests/suite/list_tools.rs
codex-rs/exec-server/tests/suite/list_tools.rs
#![allow(clippy::unwrap_used, clippy::expect_used)] use std::borrow::Cow; use std::fs; use std::sync::Arc; use anyhow::Result; use exec_server_test_support::create_transport; use pretty_assertions::assert_eq; use rmcp::ServiceExt; use rmcp::model::Tool; use rmcp::model::object; use serde_json::json; use tempfile::Temp...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/exec-server/tests/suite/accept_elicitation.rs
codex-rs/exec-server/tests/suite/accept_elicitation.rs
#![allow(clippy::unwrap_used, clippy::expect_used)] use std::borrow::Cow; use std::path::PathBuf; use std::sync::Arc; use std::sync::Mutex; use anyhow::Context; use anyhow::Result; use anyhow::ensure; use codex_exec_server::ExecResult; use exec_server_test_support::InteractiveClient; use exec_server_test_support::crea...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/exec-server/tests/suite/mod.rs
codex-rs/exec-server/tests/suite/mod.rs
#[cfg(any(all(target_os = "macos", target_arch = "aarch64"), target_os = "linux"))] mod accept_elicitation; #[cfg(any(all(target_os = "macos", target_arch = "aarch64"), target_os = "linux"))] mod list_tools;
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/exec-server/tests/common/lib.rs
codex-rs/exec-server/tests/common/lib.rs
use codex_core::MCP_SANDBOX_STATE_METHOD; use codex_core::SandboxState; use codex_core::protocol::SandboxPolicy; use rmcp::ClientHandler; use rmcp::ErrorData as McpError; use rmcp::RoleClient; use rmcp::Service; use rmcp::model::ClientCapabilities; use rmcp::model::ClientInfo; use rmcp::model::ClientRequest; use rmcp::...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/feedback/src/lib.rs
codex-rs/feedback/src/lib.rs
use std::collections::BTreeMap; use std::collections::VecDeque; use std::collections::btree_map::Entry; use std::fs; use std::io::Write; use std::io::{self}; use std::path::PathBuf; use std::sync::Arc; use std::sync::Mutex; use std::time::Duration; use anyhow::Result; use anyhow::anyhow; use codex_protocol::Conversati...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/backend-client/src/lib.rs
codex-rs/backend-client/src/lib.rs
mod client; pub mod types; pub use client::Client; pub use types::CodeTaskDetailsResponse; pub use types::CodeTaskDetailsResponseExt; pub use types::PaginatedListTaskListItem; pub use types::TaskListItem; pub use types::TurnAttemptsSiblingTurnsResponse;
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/backend-client/src/client.rs
codex-rs/backend-client/src/client.rs
use crate::types::CodeTaskDetailsResponse; use crate::types::CreditStatusDetails; use crate::types::PaginatedListTaskListItem; use crate::types::RateLimitStatusPayload; use crate::types::RateLimitWindowSnapshot; use crate::types::TurnAttemptsSiblingTurnsResponse; use anyhow::Result; use codex_core::auth::CodexAuth; use...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/backend-client/src/types.rs
codex-rs/backend-client/src/types.rs
pub use codex_backend_openapi_models::models::CreditStatusDetails; pub use codex_backend_openapi_models::models::PaginatedListTaskListItem; pub use codex_backend_openapi_models::models::PlanType; pub use codex_backend_openapi_models::models::RateLimitStatusDetails; pub use codex_backend_openapi_models::models::RateLimi...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/app_event_sender.rs
codex-rs/tui2/src/app_event_sender.rs
use tokio::sync::mpsc::UnboundedSender; use crate::app_event::AppEvent; use crate::session_log; #[derive(Clone, Debug)] pub(crate) struct AppEventSender { pub app_event_tx: UnboundedSender<AppEvent>, } impl AppEventSender { pub(crate) fn new(app_event_tx: UnboundedSender<AppEvent>) -> Self { Self { a...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/text_formatting.rs
codex-rs/tui2/src/text_formatting.rs
use unicode_segmentation::UnicodeSegmentation; use unicode_width::UnicodeWidthChar; use unicode_width::UnicodeWidthStr; pub(crate) fn capitalize_first(input: &str) -> String { let mut chars = input.chars(); match chars.next() { Some(first) => { let mut capitalized = first.to_uppercase().col...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/app.rs
codex-rs/tui2/src/app.rs
use crate::app_backtrack::BacktrackState; use crate::app_event::AppEvent; use crate::app_event_sender::AppEventSender; use crate::bottom_pane::ApprovalRequest; use crate::chatwidget::ChatWidget; use crate::clipboard_copy; use crate::custom_terminal::Frame; use crate::diff_render::DiffSummary; use crate::exec_command::s...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
true
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/exec_command.rs
codex-rs/tui2/src/exec_command.rs
use std::path::Path; use std::path::PathBuf; use codex_core::parse_command::extract_shell_command; use dirs::home_dir; use shlex::try_join; pub(crate) fn escape_command(command: &[String]) -> String { try_join(command.iter().map(String::as_str)).unwrap_or_else(|_| command.join(" ")) } pub(crate) fn strip_bash_lc...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/chatwidget.rs
codex-rs/tui2/src/chatwidget.rs
use std::collections::HashMap; use std::collections::HashSet; use std::collections::VecDeque; use std::path::PathBuf; use std::sync::Arc; use std::time::Duration; use codex_app_server_protocol::AuthMode; use codex_backend_client::Client as BackendClient; use codex_core::config::Config; use codex_core::config::Constrai...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
true
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/lib.rs
codex-rs/tui2/src/lib.rs
// Forbid accidental stdout/stderr writes in the *library* portion of the TUI. // The standalone `codex-tui` binary prints a short help message before the // alternate‑screen mode starts; that file opts‑out locally via `allow`. #![deny(clippy::print_stdout, clippy::print_stderr)] #![deny(clippy::disallowed_methods)] us...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/frames.rs
codex-rs/tui2/src/frames.rs
use std::time::Duration; // Embed animation frames for each variant at compile time. macro_rules! frames_for { ($dir:literal) => { [ include_str!(concat!("../frames/", $dir, "/frame_1.txt")), include_str!(concat!("../frames/", $dir, "/frame_2.txt")), include_str!(concat!...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/transcript_copy_ui.rs
codex-rs/tui2/src/transcript_copy_ui.rs
//! Transcript-selection copy UX helpers. //! //! # Background //! //! TUI2 owns a logical transcript viewport (with history that can live outside the visible buffer), //! plus its own selection model. Terminal-native selection/copy does not work reliably in this //! setup because: //! //! - The selection can extend ou...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/version.rs
codex-rs/tui2/src/version.rs
/// The current Codex CLI version as embedded at compile time. pub const CODEX_CLI_VERSION: &str = env!("CARGO_PKG_VERSION");
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/test_backend.rs
codex-rs/tui2/src/test_backend.rs
use std::fmt::{self}; use std::io::Write; use std::io::{self}; use ratatui::prelude::CrosstermBackend; use ratatui::backend::Backend; use ratatui::backend::ClearType; use ratatui::backend::WindowSize; use ratatui::buffer::Cell; use ratatui::layout::Position; use ratatui::layout::Size; /// This wraps a CrosstermBacke...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/model_migration.rs
codex-rs/tui2/src/model_migration.rs
use crate::key_hint; use crate::render::Insets; use crate::render::renderable::ColumnRenderable; use crate::render::renderable::Renderable; use crate::render::renderable::RenderableExt as _; use crate::selection_list::selection_option_row; use crate::tui::FrameRequester; use crate::tui::Tui; use crate::tui::TuiEvent; u...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/shimmer.rs
codex-rs/tui2/src/shimmer.rs
use std::sync::OnceLock; use std::time::Duration; use std::time::Instant; use ratatui::style::Color; use ratatui::style::Modifier; use ratatui::style::Style; use ratatui::text::Span; use crate::color::blend; use crate::terminal_palette::default_bg; use crate::terminal_palette::default_fg; static PROCESS_START: OnceL...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/pager_overlay.rs
codex-rs/tui2/src/pager_overlay.rs
use std::io::Result; use std::sync::Arc; use crate::history_cell::HistoryCell; use crate::history_cell::UserHistoryCell; use crate::key_hint; use crate::key_hint::KeyBinding; use crate::render::Insets; use crate::render::renderable::InsetRenderable; use crate::render::renderable::Renderable; use crate::style::user_mes...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
true
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/slash_command.rs
codex-rs/tui2/src/slash_command.rs
use strum::IntoEnumIterator; use strum_macros::AsRefStr; use strum_macros::EnumIter; use strum_macros::EnumString; use strum_macros::IntoStaticStr; /// Commands that can be invoked by starting a message with a leading slash. #[derive( Debug, Clone, Copy, PartialEq, Eq, Hash, EnumString, EnumIter, AsRefStr, IntoSta...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/cli.rs
codex-rs/tui2/src/cli.rs
use clap::Parser; use clap::ValueHint; use codex_common::ApprovalModeCliArg; use codex_common::CliConfigOverrides; use std::path::PathBuf; #[derive(Parser, Debug)] #[command(version)] pub struct Cli { /// Optional user prompt to start the session. #[arg(value_name = "PROMPT", value_hint = clap::ValueHint::Othe...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/wrapping.rs
codex-rs/tui2/src/wrapping.rs
use ratatui::text::Line; use ratatui::text::Span; use std::borrow::Cow; use std::ops::Range; use textwrap::Options; use crate::render::line_utils::push_owned_lines; pub(crate) fn wrap_ranges<'a, O>(text: &str, width_or_options: O) -> Vec<Range<usize>> where O: Into<Options<'a>>, { let opts = width_or_options....
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/oss_selection.rs
codex-rs/tui2/src/oss_selection.rs
use std::io; use std::sync::LazyLock; use codex_core::DEFAULT_LMSTUDIO_PORT; use codex_core::DEFAULT_OLLAMA_PORT; use codex_core::LMSTUDIO_OSS_PROVIDER_ID; use codex_core::OLLAMA_OSS_PROVIDER_ID; use codex_core::config::set_default_oss_provider; use crossterm::event::Event; use crossterm::event::KeyCode; use crossterm...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/get_git_diff.rs
codex-rs/tui2/src/get_git_diff.rs
//! Utility to compute the current Git diff for the working directory. //! //! The implementation mirrors the behaviour of the TypeScript version in //! `codex-cli`: it returns the diff for tracked changes as well as any //! untracked files. When the current directory is not inside a Git //! repository, the function re...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/selection_list.rs
codex-rs/tui2/src/selection_list.rs
use crate::render::renderable::Renderable; use crate::render::renderable::RowRenderable; use ratatui::style::Style; use ratatui::style::Styled as _; use ratatui::style::Stylize as _; use ratatui::widgets::Paragraph; use ratatui::widgets::Wrap; use unicode_width::UnicodeWidthStr; pub(crate) fn selection_option_row( ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/resume_picker.rs
codex-rs/tui2/src/resume_picker.rs
use std::collections::HashSet; use std::path::Path; use std::path::PathBuf; use std::sync::Arc; use chrono::DateTime; use chrono::Utc; use codex_core::ConversationItem; use codex_core::ConversationsPage; use codex_core::Cursor; use codex_core::INTERACTIVE_SESSION_SOURCES; use codex_core::RolloutRecorder; use codex_cor...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
true
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/history_cell.rs
codex-rs/tui2/src/history_cell.rs
use crate::diff_render::create_diff_summary; use crate::diff_render::display_path_for; use crate::exec_cell::CommandOutput; use crate::exec_cell::OutputLinesParams; use crate::exec_cell::TOOL_CALL_MAX_LINES; use crate::exec_cell::output_lines; use crate::exec_cell::spinner; use crate::exec_command::relativize_to_home; ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
true
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/status_indicator_widget.rs
codex-rs/tui2/src/status_indicator_widget.rs
//! A live status indicator that shows the *latest* log line emitted by the //! application while the agent is processing a long‑running task. use std::time::Duration; use std::time::Instant; use codex_core::protocol::Op; use crossterm::event::KeyCode; use ratatui::buffer::Buffer; use ratatui::layout::Rect; use ratat...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/transcript_copy.rs
codex-rs/tui2/src/transcript_copy.rs
//! Converting a transcript selection to clipboard text. //! //! Copy is driven by a content-relative selection (`TranscriptSelectionPoint`), //! but the transcript is rendered with styling and wrapping for the TUI. This //! module reconstructs clipboard text from the rendered transcript lines while //! preserving user...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/terminal_palette.rs
codex-rs/tui2/src/terminal_palette.rs
use crate::color::perceptual_distance; use ratatui::style::Color; use std::sync::atomic::AtomicU64; use std::sync::atomic::Ordering; static DEFAULT_PALETTE_VERSION: AtomicU64 = AtomicU64::new(0); fn bump_palette_version() { DEFAULT_PALETTE_VERSION.fetch_add(1, Ordering::Relaxed); } /// Returns the closest color ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/live_wrap.rs
codex-rs/tui2/src/live_wrap.rs
use unicode_width::UnicodeWidthChar; use unicode_width::UnicodeWidthStr; /// A single visual row produced by RowBuilder. #[derive(Debug, Clone, PartialEq, Eq)] pub struct Row { pub text: String, /// True if this row ends with an explicit line break (as opposed to a hard wrap). pub explicit_break: bool, } ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/file_search.rs
codex-rs/tui2/src/file_search.rs
//! Helper that owns the debounce/cancellation logic for `@` file searches. //! //! `ChatComposer` publishes *every* change of the `@token` as //! `AppEvent::StartFileSearch(query)`. //! This struct receives those events and decides when to actually spawn the //! expensive search (handled in the main `App` thread). It ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/markdown.rs
codex-rs/tui2/src/markdown.rs
use ratatui::text::Line; pub(crate) fn append_markdown( markdown_source: &str, width: Option<usize>, lines: &mut Vec<Line<'static>>, ) { let rendered = crate::markdown_render::render_markdown_text_with_width(markdown_source, width); crate::render::line_utils::push_owned_lines(&rendered.lines, lines)...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/ui_consts.rs
codex-rs/tui2/src/ui_consts.rs
//! Shared UI constants for layout and alignment within the TUI. /// Width (in terminal columns) reserved for the left gutter/prefix used by /// live cells and aligned widgets. /// /// Semantics: /// - Chat composer reserves this many columns for the left border + padding. /// - Status indicator lines begin with this ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/app_backtrack.rs
codex-rs/tui2/src/app_backtrack.rs
use std::any::TypeId; use std::path::PathBuf; use std::sync::Arc; use crate::app::App; use crate::history_cell::SessionInfoCell; use crate::history_cell::UserHistoryCell; use crate::pager_overlay::Overlay; use crate::tui; use crate::tui::TuiEvent; use codex_core::protocol::ConversationPathResponseEvent; use codex_prot...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/insert_history.rs
codex-rs/tui2/src/insert_history.rs
//! Render `ratatui` transcript lines into terminal scrollback. //! //! `insert_history_lines` is responsible for inserting rendered transcript lines //! *above* the TUI viewport by emitting ANSI control sequences through the //! terminal backend writer. //! //! ## Why we use crossterm style commands //! //! `write_spa...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/transcript_render.rs
codex-rs/tui2/src/transcript_render.rs
//! Transcript rendering helpers (flattening, wrapping, and metadata). //! //! `App` treats the transcript (history cells) as the source of truth and //! renders a *flattened* list of visual lines into the viewport. A single //! history cell may render multiple visual lines, and the viewport may include //! synthetic s...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/style.rs
codex-rs/tui2/src/style.rs
use crate::color::blend; use crate::color::is_light; use crate::terminal_palette::best_color; use crate::terminal_palette::default_bg; use ratatui::style::Color; use ratatui::style::Style; pub fn user_message_style() -> Style { user_message_style_for(default_bg()) } /// Returns the style for a user-authored messa...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/markdown_render.rs
codex-rs/tui2/src/markdown_render.rs
use crate::render::line_utils::line_to_static; use crate::wrapping::RtOptions; use crate::wrapping::word_wrap_line; use pulldown_cmark::CodeBlockKind; use pulldown_cmark::CowStr; use pulldown_cmark::Event; use pulldown_cmark::HeadingLevel; use pulldown_cmark::Options; use pulldown_cmark::Parser; use pulldown_cmark::Tag...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/transcript_selection.rs
codex-rs/tui2/src/transcript_selection.rs
//! Transcript selection primitives. //! //! The transcript (history) viewport is rendered as a flattened list of visual //! lines after wrapping. Selection in the transcript needs to be stable across //! scrolling and terminal resizes, so endpoints are expressed in //! *content-relative* coordinates: //! //! - `line_i...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/markdown_render_tests.rs
codex-rs/tui2/src/markdown_render_tests.rs
use pretty_assertions::assert_eq; use ratatui::style::Color; use ratatui::style::Stylize; use ratatui::text::Line; use ratatui::text::Span; use ratatui::text::Text; use crate::markdown_render::render_markdown_text; use insta::assert_snapshot; #[test] fn empty() { assert_eq!(render_markdown_text(""), Text::default...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/markdown_stream.rs
codex-rs/tui2/src/markdown_stream.rs
use ratatui::text::Line; use crate::markdown; /// Newline-gated accumulator that renders markdown and commits only fully /// completed logical lines. pub(crate) struct MarkdownStreamCollector { buffer: String, committed_line_count: usize, width: Option<usize>, } impl MarkdownStreamCollector { pub fn ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/additional_dirs.rs
codex-rs/tui2/src/additional_dirs.rs
use codex_core::protocol::SandboxPolicy; use std::path::PathBuf; /// Returns a warning describing why `--add-dir` entries will be ignored for the /// resolved sandbox policy. The caller is responsible for presenting the /// warning to the user (for example, printing to stderr). pub fn add_dir_warning_message( addi...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/session_log.rs
codex-rs/tui2/src/session_log.rs
use std::fs::File; use std::fs::OpenOptions; use std::io::Write; use std::path::PathBuf; use std::sync::LazyLock; use std::sync::Mutex; use std::sync::OnceLock; use codex_core::config::Config; use codex_core::protocol::Op; use serde::Serialize; use serde_json::json; use crate::app_event::AppEvent; static LOGGER: Laz...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/diff_render.rs
codex-rs/tui2/src/diff_render.rs
use diffy::Hunk; use ratatui::buffer::Buffer; use ratatui::layout::Rect; use ratatui::style::Color; use ratatui::style::Modifier; use ratatui::style::Style; use ratatui::style::Stylize; use ratatui::text::Line as RtLine; use ratatui::text::Span as RtSpan; use ratatui::widgets::Paragraph; use std::collections::HashMap; ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/ascii_animation.rs
codex-rs/tui2/src/ascii_animation.rs
use std::convert::TryFrom; use std::time::Duration; use std::time::Instant; use rand::Rng as _; use crate::frames::ALL_VARIANTS; use crate::frames::FRAME_TICK_DEFAULT; use crate::tui::FrameRequester; /// Drives ASCII art animations shared across popups and onboarding widgets. pub(crate) struct AsciiAnimation { r...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/clipboard_paste.rs
codex-rs/tui2/src/clipboard_paste.rs
use std::path::Path; use std::path::PathBuf; use tempfile::Builder; #[derive(Debug, Clone)] pub enum PasteImageError { ClipboardUnavailable(String), NoImage(String), EncodeFailed(String), IoError(String), } impl std::fmt::Display for PasteImageError { fn fmt(&self, f: &mut std::fmt::Formatter<'_>)...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/main.rs
codex-rs/tui2/src/main.rs
use clap::Parser; use codex_arg0::arg0_dispatch_or_else; use codex_common::CliConfigOverrides; use codex_tui2::Cli; use codex_tui2::run_main; #[derive(Parser, Debug)] struct TopCli { #[clap(flatten)] config_overrides: CliConfigOverrides, #[clap(flatten)] inner: Cli, } fn main() -> anyhow::Result<()> ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/transcript_view_cache.rs
codex-rs/tui2/src/transcript_view_cache.rs
//! Caches for transcript rendering in `codex-tui2`. //! //! The inline transcript view is drawn every frame. Two parts of that draw can //! be expensive in steady state: //! //! - Building the *wrapped transcript* (`HistoryCell` → flattened `Line`s + //! per-line metadata). This work is needed for rendering and for ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
true
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui2/src/app_event.rs
codex-rs/tui2/src/app_event.rs
use std::path::PathBuf; use codex_common::approval_presets::ApprovalPreset; use codex_core::protocol::ConversationPathResponseEvent; use codex_core::protocol::Event; use codex_core::protocol::RateLimitSnapshot; use codex_file_search::FileMatch; use codex_protocol::openai_models::ModelPreset; use crate::bottom_pane::A...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false