mirror of
https://github.com/openai/codex.git
synced 2026-05-01 18:06:47 +00:00
84 lines
3.2 KiB
Rust
84 lines
3.2 KiB
Rust
use codex_config::types::McpServerConfig;
|
|
|
|
mod discoverable;
|
|
mod injection;
|
|
mod installed_marketplaces;
|
|
mod manager;
|
|
mod manifest;
|
|
mod marketplace;
|
|
mod marketplace_add;
|
|
mod mentions;
|
|
mod remote;
|
|
mod render;
|
|
mod startup_sync;
|
|
mod store;
|
|
#[cfg(test)]
|
|
pub(crate) mod test_support;
|
|
mod toggles;
|
|
|
|
pub use codex_plugin::AppConnectorId;
|
|
pub use codex_plugin::EffectiveSkillRoots;
|
|
pub use codex_plugin::PluginCapabilitySummary;
|
|
pub use codex_plugin::PluginId;
|
|
pub use codex_plugin::PluginIdError;
|
|
pub use codex_plugin::PluginTelemetryMetadata;
|
|
pub use codex_plugin::validate_plugin_segment;
|
|
|
|
pub type LoadedPlugin = codex_plugin::LoadedPlugin<McpServerConfig>;
|
|
pub type PluginLoadOutcome = codex_plugin::PluginLoadOutcome<McpServerConfig>;
|
|
|
|
pub(crate) use discoverable::list_tool_suggest_discoverable_plugins;
|
|
pub(crate) use injection::build_plugin_injections;
|
|
pub use installed_marketplaces::INSTALLED_MARKETPLACES_DIR;
|
|
pub use installed_marketplaces::marketplace_install_root;
|
|
pub(crate) use installed_marketplaces::resolve_configured_marketplace_root;
|
|
pub use manager::ConfiguredMarketplace;
|
|
pub use manager::ConfiguredMarketplaceListOutcome;
|
|
pub use manager::ConfiguredMarketplacePlugin;
|
|
pub use manager::OPENAI_CURATED_MARKETPLACE_NAME;
|
|
pub use manager::PluginDetail;
|
|
pub use manager::PluginInstallError;
|
|
pub use manager::PluginInstallOutcome;
|
|
pub use manager::PluginInstallRequest;
|
|
pub use manager::PluginReadOutcome;
|
|
pub use manager::PluginReadRequest;
|
|
pub use manager::PluginRemoteSyncError;
|
|
pub use manager::PluginUninstallError;
|
|
pub use manager::PluginsManager;
|
|
pub use manager::RemotePluginSyncResult;
|
|
pub use manager::installed_plugin_telemetry_metadata;
|
|
pub use manager::load_plugin_apps;
|
|
pub use manager::load_plugin_mcp_servers;
|
|
pub use manager::plugin_telemetry_metadata_from_root;
|
|
pub use manifest::PluginManifestInterface;
|
|
pub(crate) use manifest::PluginManifestPaths;
|
|
pub(crate) use manifest::load_plugin_manifest;
|
|
pub use marketplace::MarketplaceError;
|
|
pub use marketplace::MarketplaceListError;
|
|
pub use marketplace::MarketplacePluginAuthPolicy;
|
|
pub use marketplace::MarketplacePluginInstallPolicy;
|
|
pub use marketplace::MarketplacePluginPolicy;
|
|
pub use marketplace::MarketplacePluginSource;
|
|
pub(crate) use marketplace::find_marketplace_manifest_path;
|
|
pub(crate) use marketplace::load_marketplace;
|
|
pub use marketplace::validate_marketplace_root;
|
|
pub use marketplace_add::MarketplaceAddError;
|
|
pub use marketplace_add::MarketplaceAddOutcome;
|
|
pub use marketplace_add::MarketplaceAddRequest;
|
|
pub use marketplace_add::add_marketplace;
|
|
pub(crate) use marketplace_add::parse_marketplace_source;
|
|
pub use remote::RemotePluginFetchError;
|
|
pub use remote::fetch_remote_featured_plugin_ids;
|
|
pub(crate) use render::render_explicit_plugin_instructions;
|
|
pub(crate) use render::render_plugins_section;
|
|
pub(crate) use startup_sync::curated_plugins_repo_path;
|
|
pub(crate) use startup_sync::read_curated_plugins_sha;
|
|
pub(crate) use startup_sync::sync_openai_plugins_repo;
|
|
pub use toggles::collect_plugin_enabled_candidates;
|
|
|
|
pub(crate) use mentions::build_connector_slug_counts;
|
|
pub(crate) use mentions::build_skill_name_counts;
|
|
pub(crate) use mentions::collect_explicit_app_ids;
|
|
pub(crate) use mentions::collect_explicit_plugin_mentions;
|
|
pub(crate) use mentions::collect_tool_mentions_from_messages;
|