mirror of
https://github.com/pchuan98/codex.git
synced 2026-07-01 00:31:56 +08:00
fba3c79885
## Summary - extract instruction fragment and user-instruction types into codex-instructions - update codex-core to consume the new crate ## Testing - CI --------- Co-authored-by: Codex <noreply@openai.com>
12 lines
403 B
Rust
12 lines
403 B
Rust
//! User and skill instruction payloads and contextual user fragment markers for Codex prompts.
|
|
|
|
mod fragment;
|
|
mod user_instructions;
|
|
|
|
pub use fragment::AGENTS_MD_FRAGMENT;
|
|
pub use fragment::ContextualUserFragmentDefinition;
|
|
pub use fragment::SKILL_FRAGMENT;
|
|
pub use user_instructions::SkillInstructions;
|
|
pub use user_instructions::USER_INSTRUCTIONS_PREFIX;
|
|
pub use user_instructions::UserInstructions;
|