mirror of
https://github.com/pchuan98/codex.git
synced 2026-07-01 00:31:56 +08:00
## Why `child_agents_md` is a disabled, under-development experiment that adds a second model-visible explanation of hierarchical `AGENTS.md` behavior. Keeping it leaves unused prompt, configuration, documentation, and test surface. ## What changed - remove the `ChildAgentsMd` feature and `child_agents_md` config schema entry - remove the hierarchical prompt asset, export, and instruction injection - remove feature-specific tests and documentation - keep the generic unstable-feature warning coverage using `apply_patch_streaming_events` Normal project `AGENTS.md` discovery and composition are unchanged. ## Testing - `just test -p codex-features` - `just test -p codex-prompts` - `just test -p codex-core agents_md` - `just test -p codex-core unstable_features_warning`
26 lines
844 B
Rust
26 lines
844 B
Rust
mod apply_patch;
|
|
mod compact;
|
|
mod goals;
|
|
mod permissions_instructions;
|
|
mod realtime;
|
|
mod review_exit;
|
|
mod review_request;
|
|
|
|
pub use apply_patch::APPLY_PATCH_TOOL_INSTRUCTIONS;
|
|
pub use compact::SUMMARIZATION_PROMPT;
|
|
pub use compact::SUMMARY_PREFIX;
|
|
pub use goals::budget_limit_prompt;
|
|
pub use goals::continuation_prompt;
|
|
pub use goals::objective_updated_prompt;
|
|
pub use permissions_instructions::PermissionsInstructions;
|
|
pub use realtime::BACKEND_PROMPT;
|
|
pub use realtime::END_INSTRUCTIONS;
|
|
pub use realtime::START_INSTRUCTIONS;
|
|
pub use review_exit::render_review_exit_interrupted;
|
|
pub use review_exit::render_review_exit_success;
|
|
pub use review_request::REVIEW_PROMPT;
|
|
pub use review_request::ResolvedReviewRequest;
|
|
pub use review_request::resolve_review_request;
|
|
pub use review_request::review_prompt;
|
|
pub use review_request::user_facing_hint;
|