diff options
Diffstat (limited to 'AGENTS.md')
| -rw-r--r-- | AGENTS.md | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -52,13 +52,18 @@ The `--namespace` option associates the task with a specific namespace in the mo ### List Tasks ```bash -task list [--project=<project>] +task list [--type=<type>] [--parent=<id>] [--status=<status>] [--namespace=<ns>] ``` Examples: ```bash -task list # All tasks -task list --project=auth # Filter by project +task list # All tasks +task list --type=epic # All epics +task list --parent=t-abc123 # All tasks in an epic +task list --status=open # All open tasks +task list --status=done # All completed tasks +task list --namespace="Omni/Task" # All tasks for a namespace +task list --parent=t-abc123 --status=open # Combine filters: open tasks in epic ``` ### Get Ready Work |
