mirror of
https://github.com/openai/codex.git
synced 2026-04-28 02:11:08 +03:00
## Summary - extract shared plugin path and manifest helpers into codex-utils-plugins - update codex-core to consume the utility crate ## Testing - CI --------- Co-authored-by: Codex <noreply@openai.com>
8 lines
264 B
Rust
8 lines
264 B
Rust
//! Sigils for tool/plugin mentions in plaintext (shared across Codex crates).
|
|
|
|
/// Default plaintext sigil for tools.
|
|
pub const TOOL_MENTION_SIGIL: char = '$';
|
|
|
|
/// Plugins use `@` in linked plaintext outside TUI.
|
|
pub const PLUGIN_TEXT_MENTION_SIGIL: char = '@';
|