diff --git a/README.md b/README.md index 6653a5c..664a203 100644 --- a/README.md +++ b/README.md @@ -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.