summaryrefslogtreecommitdiff
path: root/internal/askcli/dispatch.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-27 06:19:31 +0200
committerPaul Buetow <paul@buetow.org>2026-03-27 06:19:31 +0200
commit6b964400deb653d2c47aa8932ab5444346833b0d (patch)
treefdb9166624b91fa11cfa1e9b4a2ca3ad63bf9739 /internal/askcli/dispatch.go
parentb67069c110c210b05507fca839d45b43431f5e86 (diff)
askcli: show task aliases in output (cd322ed1-882d-40e9-ab98-689acd5f161e)
Diffstat (limited to 'internal/askcli/dispatch.go')
-rw-r--r--internal/askcli/dispatch.go26
1 files changed, 13 insertions, 13 deletions
diff --git a/internal/askcli/dispatch.go b/internal/askcli/dispatch.go
index b361111..7cb217b 100644
--- a/internal/askcli/dispatch.go
+++ b/internal/askcli/dispatch.go
@@ -92,20 +92,20 @@ func (d Dispatcher) help(w io.Writer) (int, error) {
io.WriteString(w, " ask list [filters] List active tasks (default)\n")
io.WriteString(w, " ask ready List READY tasks (not blocked)\n")
io.WriteString(w, " ask all [filters] List all tasks including completed/deleted\n")
- io.WriteString(w, " ask info [uuid] Show task details or current started task\n")
- io.WriteString(w, " ask annotate <uuid> \"note\" Add annotation to task\n")
- io.WriteString(w, " ask start <uuid> Start working on task\n")
- io.WriteString(w, " ask stop <uuid> Stop working on task\n")
- io.WriteString(w, " ask done <uuid> Mark task complete\n")
- io.WriteString(w, " ask priority <uuid> <P> Set priority (H/M/L)\n")
- io.WriteString(w, " ask tag <uuid> +/-<tag> Add or remove tag\n")
- io.WriteString(w, " ask dep add <uuid> <dep-uuid> Add dependency\n")
- io.WriteString(w, " ask dep rm <uuid> <dep-uuid> Remove dependency\n")
- io.WriteString(w, " ask dep list <uuid> List dependencies\n")
+ io.WriteString(w, " ask info [id|uuid] Show task details or current started task\n")
+ io.WriteString(w, " ask annotate <id|uuid> \"note\" Add annotation to task\n")
+ io.WriteString(w, " ask start <id|uuid> Start working on task\n")
+ io.WriteString(w, " ask stop <id|uuid> Stop work on a task\n")
+ io.WriteString(w, " ask done <id|uuid> Mark task complete\n")
+ io.WriteString(w, " ask priority <id|uuid> <P> Set priority (H/M/L)\n")
+ io.WriteString(w, " ask tag <id|uuid> +/-<tag> Add or remove tag\n")
+ io.WriteString(w, " ask dep add <id|uuid> <dep> Add dependency\n")
+ io.WriteString(w, " ask dep rm <id|uuid> <dep> Remove dependency\n")
+ io.WriteString(w, " ask dep list <id|uuid> List dependencies\n")
io.WriteString(w, " ask urgency List tasks sorted by urgency\n")
- io.WriteString(w, " ask modify <uuid> <args...> Modify task fields\n")
- io.WriteString(w, " ask denotate <uuid> \"text\" Remove annotation\n")
- io.WriteString(w, " ask delete <uuid> Delete task\n")
+ io.WriteString(w, " ask modify <id|uuid> <args...> Modify task fields\n")
+ io.WriteString(w, " ask denotate <id|uuid> \"text\" Remove annotation\n")
+ io.WriteString(w, " ask delete <id|uuid> Delete a task\n")
io.WriteString(w, " ask fish Emit Fish shell completion script\n")
return 0, nil
}