diff options
| author | Louis Burda <dev@sinitax.com> | 2026-03-03 01:10:09 +0100 |
|---|---|---|
| committer | Louis Burda <dev@sinitax.com> | 2026-03-03 01:10:09 +0100 |
| commit | b8694d1456a591e8ca20c76b17f27dbd0cfe1857 (patch) | |
| tree | 7d9979ab90ce9fa97aae96254d78efc4ee2afef0 /README.md | |
| parent | f8720efcc51355b44b28440a6d22c6ca4c56d165 (diff) | |
| download | claude-task-main.tar.gz claude-task-main.zip | |
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -102,7 +102,9 @@ Options: ```bash ctask mod 8 --status in_progress ctask mod 8 --name "New name" --description "New description" -ctask mod 8 --add-before 7 --add-after 5 +ctask mod 8 --after 5 # add dependency +ctask mod 8 --unblock # remove all blockers +ctask mod 8 --unblock --after 5 # replace blockers with only task 5 ``` Options: @@ -110,8 +112,9 @@ Options: - `--description`: Update description - `--status`: Update status - `--active-form`: Update active form -- `--add-blocks` / `--add-before`: Add task IDs this blocks (this comes before them) -- `--add-blocked-by` / `--add-after`: Add task IDs blocking this (this comes after them) +- `--blocks` / `--before`: Set task IDs this blocks (replaces existing) +- `--blocked-by` / `--after`: Set/add task IDs blocking this (adds to existing, or replaces if used with --unblock) +- `--unblock`: Clear all blockers before applying --blocked-by ### Edit a task ```bash @@ -162,7 +165,7 @@ Task IDs are automatically incremented when creating new tasks. The ID is determ - The maximum of existing task IDs + 1 - The value in `.highwatermark` file + 1 (if it exists) -The `.highwatermark` file in each session directory tracks the highest task ID to prevent ID conflicts when tasks are deleted. +The `.highwatermark` file in each session directory is managed by Claude and tracks the highest task ID to prevent ID conflicts. ## Session State |
