From f561f10529f4f4c3537f2dd8ce08e149b35954da Mon Sep 17 00:00:00 2001 From: Charles Cunningham Date: Tue, 17 Feb 2026 18:24:39 -0800 Subject: [PATCH] todo comment --- codex-rs/core/src/context_manager/updates.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/codex-rs/core/src/context_manager/updates.rs b/codex-rs/core/src/context_manager/updates.rs index 4fac4e52cf..ee4af7eb7c 100644 --- a/codex-rs/core/src/context_manager/updates.rs +++ b/codex-rs/core/src/context_manager/updates.rs @@ -131,8 +131,6 @@ pub(crate) fn build_settings_update_items( if let Some(env_item) = build_environment_update_item(previous, next) { update_items.push(env_item); } - // TODO(ccunningham): Diff `user_instructions` and emit updates when AGENTS.md content changes - // (for example after cwd changes), so model-visible instructions stay aligned with cwd. if let Some(permissions_item) = build_permissions_update_item(previous, next) { update_items.push(permissions_item); }