From aa0b63e2144904afc73f55b0fb5033db906e8034 Mon Sep 17 00:00:00 2001 From: Luis Pater Date: Fri, 16 Jan 2026 12:50:09 +0800 Subject: [PATCH] refactor(config): clarify Codex instruction toggle documentation --- internal/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/config/config.go b/internal/config/config.go index 7ba20a1a..3b7e9fa7 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -71,7 +71,7 @@ type Config struct { // WebsocketAuth enables or disables authentication for the WebSocket API. WebsocketAuth bool `yaml:"ws-auth" json:"ws-auth"` - // CodexInstructionsEnabled controls whether custom Codex instructions are injected. + // CodexInstructionsEnabled controls whether official Codex instructions are injected. // When false (default), CodexInstructionsForModel returns immediately without modification. // When true, the original instruction injection logic is used. CodexInstructionsEnabled bool `yaml:"codex-instructions-enabled" json:"codex-instructions-enabled"`