From 213a84f46494a4aab5a0dc14d251d66c99c48f66 Mon Sep 17 00:00:00 2001 From: Christian Gick Date: Mon, 19 Jan 2026 21:47:37 +0200 Subject: [PATCH] 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 --- README.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) 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.