fix: 修复穷鬼模式的写入问题

This commit is contained in:
claude-code-best
2026-04-12 09:15:12 +08:00
parent 423f114db6
commit e9861415c0
4 changed files with 39 additions and 1 deletions

View File

@@ -739,6 +739,12 @@ export const SettingsSchema = lazySchema(() =>
'When false, prompt suggestions are disabled. When absent or true, ' +
'prompt suggestions are enabled.',
),
poorMode: z
.boolean()
.optional()
.describe(
'When true, poor mode is active — extract_memories and prompt_suggestion are disabled to save tokens.',
),
showClearContextOnPlanAccept: z
.boolean()
.optional()