Skip to main content

codex_utils_plugins/
mention_syntax.rs

1//! Sigils for tool/plugin mentions in plaintext (shared across Codex crates).
2
3/// Default plaintext sigil for tools.
4pub const TOOL_MENTION_SIGIL: char = '$';
5
6/// Plugins use `@` in linked plaintext outside TUI.
7pub const PLUGIN_TEXT_MENTION_SIGIL: char = '@';