docs(cli): improve copilot help with quick start guide

This commit is contained in:
kaitranntt
2025-12-18 04:43:35 -05:00
parent 671a9e76fb
commit 3a7cb0c4e8
+6 -1
View File
@@ -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;
}