From 7c5f36580ac357e7f63d70ed084e99c2fa24c6c4 Mon Sep 17 00:00:00 2001 From: kaitranntt Date: Thu, 8 Jan 2026 16:56:31 -0500 Subject: [PATCH] docs(cli): add extended thinking section to help - W3: explain thinking levels (off/auto/low/medium/high/xhigh) - W3: document supported providers (agy, gemini) --- src/commands/help-command.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/commands/help-command.ts b/src/commands/help-command.ts index 42de0433..ae9d7d44 100644 --- a/src/commands/help-command.ts +++ b/src/commands/help-command.ts @@ -281,6 +281,20 @@ Run ${color('ccs config', 'command')} for web dashboard`.trim(); ['--allow-self-signed', 'Allow self-signed certs (for dev proxies)'], ]); + // W3: Thinking Budget explanation + printSubSection('Extended Thinking (--thinking)', [ + ['--thinking off', 'Disable extended thinking'], + ['--thinking auto', 'Let model decide dynamically'], + ['--thinking low', '1K tokens - Quick responses'], + ['--thinking medium', '8K tokens - Standard analysis'], + ['--thinking high', '24K tokens - Deep reasoning'], + ['--thinking xhigh', '32K tokens - Maximum depth'], + ['--thinking ', 'Custom token budget (512-100000)'], + ['', ''], + ['Note:', 'Extended thinking allocates compute for step-by-step reasoning'], + ['', 'before responding. Supported: agy, gemini (thinking models).'], + ]); + // CLI Proxy env vars printSubSection('CLI Proxy Environment Variables', [ ['CCS_PROXY_HOST', 'Remote proxy hostname'],