summaryrefslogtreecommitdiff
path: root/internal/askcli/dispatch.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-05-26 10:52:01 +0300
committerPaul Buetow <paul@buetow.org>2026-05-26 10:52:01 +0300
commitdb8c5659cb54cbfd0ac1e59888059d45b4fe4d3d (patch)
tree892486e1afda33b144d504bf9152928f2188cd7a /internal/askcli/dispatch.go
parent327fc7deb16768b9eac4cec57ca143f24dfae4f6 (diff)
feat(askcli): add projects subcommand
Diffstat (limited to 'internal/askcli/dispatch.go')
-rw-r--r--internal/askcli/dispatch.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/askcli/dispatch.go b/internal/askcli/dispatch.go
index 2cdaa93..f6c503b 100644
--- a/internal/askcli/dispatch.go
+++ b/internal/askcli/dispatch.go
@@ -95,6 +95,7 @@ func (d *Dispatcher) help(w io.Writer) (int, error) {
_, _ = 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 watch [subcommand...] Re-run a read-only subcommand every 2s and redraw on changes\n")
+ _, _ = io.WriteString(w, " ask projects List projects with pending, not-yet-started tasks\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")