From 3a7cb0c4e8792c56a50a09a628316c2adb1c4e93 Mon Sep 17 00:00:00 2001 From: kaitranntt Date: Thu, 18 Dec 2025 04:43:35 -0500 Subject: [PATCH] docs(cli): improve copilot help with quick start guide --- src/commands/copilot-command.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/commands/copilot-command.ts b/src/commands/copilot-command.ts index 5606cb82..09c0904b 100644 --- a/src/commands/copilot-command.ts +++ b/src/commands/copilot-command.ts @@ -66,7 +66,12 @@ function handleHelp(): number { console.log(' disable Disable copilot integration'); console.log(' help Show this help message'); console.log(''); - console.log('After setup, use: ccs copilot (as profile name)'); + console.log('Quick start:'); + console.log(' 1. ccs copilot auth # Authenticate with GitHub'); + console.log(' 2. ccs copilot enable # Enable integration'); + console.log(' 3. ccs copilot start # Start daemon'); + console.log(''); + console.log('Or use the web UI: ccs config → Copilot tab'); console.log(''); return 0; }