Refactor CLI command usage from ccw cli exec to ccw cli -p for improved prompt handling

- Updated command patterns across documentation and templates to reflect the new CLI syntax.
- Enhanced CLI tool implementation to support reading prompts from files and multi-line inputs.
- Modified core components and views to ensure compatibility with the new command structure.
- Adjusted help messages and internationalization strings to align with the updated command format.
- Improved error handling and user notifications in the CLI execution flow.
This commit is contained in:
catlog22
2025-12-18 14:12:45 +08:00
parent e096fc98e2
commit 8dd4a513c8
52 changed files with 386 additions and 243 deletions

View File

@@ -153,6 +153,8 @@ export function run(argv: string[]): void {
program
.command('cli [subcommand] [args...]')
.description('Unified CLI tool executor (gemini/qwen/codex/claude)')
.option('-p, --prompt <prompt>', 'Prompt text (alternative to positional argument)')
.option('-f, --file <file>', 'Read prompt from file (best for multi-line prompts)')
.option('--tool <tool>', 'CLI tool to use', 'gemini')
.option('--mode <mode>', 'Execution mode: analysis, write, auto', 'analysis')
.option('--model <model>', 'Model override')