mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-01 14:03:54 +08:00
docs(roadmap): fix issue query interface documentation
- Replace non-existent `--tag` and `--session` options with actual commands - Update to use `ccw issue list --status` and queue-based workflow - Sync changes across both Claude and Codex versions
This commit is contained in:
@@ -235,20 +235,25 @@ Mode: Append-only (new issues appended to end)
|
|||||||
### Query Interface
|
### Query Interface
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# By ID
|
# By ID (detail view)
|
||||||
ccw issue get ISS-20260227-001
|
ccw issue list ISS-20260227-001
|
||||||
|
|
||||||
# By tag
|
# List all with status filter
|
||||||
ccw issue list --tag wave-1
|
ccw issue list --status planned,queued
|
||||||
ccw issue list --tag roadmap
|
ccw issue list --brief # JSON minimal output
|
||||||
|
|
||||||
# By session
|
# Queue operations (wave-based execution)
|
||||||
ccw issue list --session RMAP-auth-2026-02-27
|
ccw issue queue list # List all queues
|
||||||
|
ccw issue queue dag # Get dependency graph (JSON)
|
||||||
|
ccw issue next --queue <queue-id> # Get next task
|
||||||
|
|
||||||
# Execute
|
# Execute
|
||||||
ccw issue execute ISS-20260227-001 ISS-20260227-002
|
ccw issue queue add <issue-id> # Add to active queue
|
||||||
|
ccw issue done <item-id> # Mark completed
|
||||||
```
|
```
|
||||||
|
|
||||||
|
> **Note**: Issues are tagged with `wave-N` in `tags[]` field for filtering. Use `--brief` for programmatic parsing.
|
||||||
|
|
||||||
### Consumers
|
### Consumers
|
||||||
|
|
||||||
| Consumer | Usage |
|
| Consumer | Usage |
|
||||||
|
|||||||
@@ -308,20 +308,25 @@ Mode: Append-only (new issues appended to end)
|
|||||||
### Query Interface
|
### Query Interface
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# By ID
|
# By ID (detail view)
|
||||||
ccw issue get ISS-20260227-001
|
ccw issue list ISS-20260227-001
|
||||||
|
|
||||||
# By tag
|
# List all with status filter
|
||||||
ccw issue list --tag wave-1
|
ccw issue list --status planned,queued
|
||||||
ccw issue list --tag roadmap
|
ccw issue list --brief # JSON minimal output
|
||||||
|
|
||||||
# By session
|
# Queue operations (wave-based execution)
|
||||||
ccw issue list --session RMAP-auth-2026-02-27
|
ccw issue queue list # List all queues
|
||||||
|
ccw issue queue dag # Get dependency graph (JSON)
|
||||||
|
ccw issue next --queue <queue-id> # Get next task
|
||||||
|
|
||||||
# Execute
|
# Execute
|
||||||
ccw issue execute ISS-20260227-001 ISS-20260227-002
|
ccw issue queue add <issue-id> # Add to active queue
|
||||||
|
ccw issue done <item-id> # Mark completed
|
||||||
```
|
```
|
||||||
|
|
||||||
|
> **Note**: Issues are tagged with `wave-N` in `tags[]` field for filtering. Use `--brief` for programmatic parsing.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Implementation
|
## Implementation
|
||||||
|
|||||||
Reference in New Issue
Block a user