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

@@ -48,9 +48,10 @@
| CLI Command | Purpose |
|-------------|---------|
| `ccw issue new --text '...' --json` | 从文本创建 issue |
| `ccw issue create --data '{"title":"..."}' --json` | 从文本创建 issue |
| `ccw issue status <id> --json` | 查看 issue 状态 |
| `ccw issue solutions <id> --json` | 查看已绑定 solution |
| `ccw issue solution <id> --json` | 查看单个 issue 的 solutions需要 issue ID |
| `ccw issue solutions --status planned --brief` | 批量列出所有已绑定 solutions跨 issue |
| `ccw issue bind <id> <sol-id>` | 绑定 solution 到 issue |
### Skill Capabilities