6161| CLI Command | Purpose |
6262| -------------| ---------|
6363| ` ccw issue status <id> --json ` | 查看 issue 状态 |
64- | ` ccw issue solutions <id> --json ` | 加载 bound solution |
65- | ` ccw issue update <id> --status in-progress ` | 更新 issue 状态为进行中 |
66- | ` ccw issue update <id> --status resolved ` | 标记 issue 已解决 |
64+ | ` ccw issue solution <id> --json ` | 加载单个 issue 的 bound solution(需要 issue ID) |
65+ | ` ccw issue update <id> --status executing ` | 更新 issue 状态为执行中 |
66+ | ` ccw issue update <id> --status completed ` | 标记 issue 已完成 |
6767
6868## Execution Method Resolution
6969
@@ -166,7 +166,7 @@ if (!issueId) {
166166}
167167
168168// Load solution plan
169- const solJson = Bash (` ccw issue solutions ${ issueId} --json` )
169+ const solJson = Bash (` ccw issue solution ${ issueId} --json` )
170170const solution = JSON .parse (solJson)
171171
172172if (! solution .bound ) {
@@ -190,7 +190,7 @@ const executor = resolveExecutor(task.description, taskCount)
190190const codeReview = resolveCodeReview (task .description )
191191
192192// Update issue status
193- Bash (` ccw issue update ${ issueId} --status in-progress ` )
193+ Bash (` ccw issue update ${ issueId} --status executing ` )
194194` ` `
195195
196196### Phase 3: Implementation (Multi-Backend Routing)
@@ -297,7 +297,7 @@ if (codeReview !== 'Skip') {
297297}
298298
299299// Update issue status to resolved
300- Bash (` ccw issue update ${ issueId} --status resolved ` )
300+ Bash (` ccw issue update ${ issueId} --status completed ` )
301301` ` `
302302
303303### Code Review (Optional)
0 commit comments