From 8c8a15f1e14a71d0359a9d3a93abb29fee36633c Mon Sep 17 00:00:00 2001 From: kaitranntt Date: Mon, 22 Dec 2025 00:46:01 -0500 Subject: [PATCH] docs(cli): add ccs kiro and ccs ghcp to help text - add 'ccs kiro' entry for AWS CodeWhisperer - add 'ccs ghcp' entry for GitHub Copilot OAuth - clarify ccs copilot is for copilot-api integration --- src/commands/help-command.ts | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/commands/help-command.ts b/src/commands/help-command.ts index 714bbc9a..2333c729 100644 --- a/src/commands/help-command.ts +++ b/src/commands/help-command.ts @@ -162,7 +162,7 @@ Claude Code Profile & Model Switcher`.trim(); ['ccs agy', 'Antigravity (Claude/Gemini models)'], ['ccs qwen', 'Qwen Code (qwen3-coder)'], ['ccs kiro', 'Kiro (AWS CodeWhisperer Claude models)'], - ['ccs copilot', 'GitHub Copilot (GPT/Claude/Gemini)'], + ['ccs ghcp', 'GitHub Copilot (OAuth via CLIProxy Plus)'], ['', ''], // Spacer ['ccs --auth', 'Authenticate only'], ['ccs --auth --add', 'Add another account'], @@ -176,16 +176,17 @@ Claude Code Profile & Model Switcher`.trim(); ); // ═══════════════════════════════════════════════════════════════════════════ - // MAJOR SECTION 4: GitHub Copilot Integration + // MAJOR SECTION 4: GitHub Copilot Integration (copilot-api) // ═══════════════════════════════════════════════════════════════════════════ printMajorSection( - 'GitHub Copilot Integration', + 'GitHub Copilot Integration (copilot-api)', [ - 'Use your GitHub Copilot subscription with Claude Code', + 'Use your GitHub Copilot subscription with Claude Code via copilot-api', 'Requires: npm install -g copilot-api', + 'Note: For OAuth-based access, use ccs ghcp instead', ], [ - ['ccs copilot', 'Use Copilot as API backend'], + ['ccs copilot', 'Use Copilot via copilot-api daemon'], ['ccs copilot auth', 'Authenticate with GitHub'], ['ccs copilot status', 'Show integration status'], ['ccs copilot models', 'List available models'],