docs(CF-236): Add CLI wrapper documentation to README

Added CLI Wrapper section documenting the task CLI available at
~/Development/Infrastructure/AgilitonScripts/bin/task

Includes examples for:
- Creating tasks
- Listing with filters
- Showing task details
- Updating tasks
- Closing tasks
- Adding checklist items
- Searching similar tasks
- Investigation workflow

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Christian Gick
2026-01-19 21:47:37 +02:00
parent 7be5878d35
commit 213a84f464

View File

@@ -46,6 +46,42 @@ Add to `~/.claude/settings.json` under `mcpServers`:
| `task_checklist_add` | Add checklist item to task |
| `task_checklist_toggle` | Toggle checklist item |
## CLI Wrapper
A command-line wrapper is available at `~/Development/Infrastructure/AgilitonScripts/bin/task`:
```bash
# Create task
task add "Task title" --project CF --priority P1 --type bug
# List tasks
task list # All open tasks
task list --project CF # CF project tasks
task list --status in_progress # Tasks in progress
task list --type bug # All bugs
# Show task details
task show CF-123
# Update task
task update CF-123 --status in_progress
task update CF-123 --priority P0
# Close task
task close CF-123
# Add checklist item
task checklist add CF-123 "Complete integration tests"
# Search similar tasks
task similar "performance optimization"
# Investigation workflow
task investigate "Debug memory leak" --project CF
```
The CLI wrapper provides terminal access to all MCP tools without requiring Claude Code.
## Investigation Workflow (CF-166)
The investigation workflow helps organize multi-step problem analysis by automatically linking related tasks.