fix: correct issue CLI endpoints across team-planex, commands, and help text

- team-planex/planner: fix `ccw issue new` → `ccw issue create --data`, `solutions` → `solution`
- team-planex/executor: fix `in-progress` → `executing`, `resolved` → `completed`, `solutions` → `solution`
- commands/issue/convert-to-plan: fix `solutions --issue <id>` → `solution <id>`
- issue-manage SKILL: add solution/solutions endpoint documentation
- issue.ts help text: add missing `solutions` and `task` subcommand entries
This commit is contained in:
catlog22
2026-02-16 12:43:58 +08:00
parent de3dd044b9
commit cffeece220
5 changed files with 18 additions and 9 deletions

View File

@@ -3120,6 +3120,8 @@ export async function issueCommand(
console.log(chalk.gray(' solution <id> List solutions for issue'));
console.log(chalk.gray(' solution <id> --brief Brief: solution_id, files_touched, task_count'));
console.log(chalk.gray(' solution <id> --data \'{...}\' Create solution (auto-generates ID)'));
console.log(chalk.gray(' solutions [--status <s>] [--brief] Batch list bound solutions across issues'));
console.log(chalk.gray(' task <issue-id> [task-id] --title Add or update task in solution'));
console.log(chalk.gray(' bind <issue-id> [sol-id] Bind solution'));
console.log(chalk.gray(' update <issue-id> --status <s> Update issue status'));
console.log(chalk.gray(' update --from-queue [queue-id] Sync statuses from queue (default: active)'));