From 0dfcb0f3fe6db144f02506df95e68707d9b5091c Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 31 May 2026 10:07:41 +0300 Subject: ask: add completed sub-command to list completed tasks --- internal/askcli/dispatch.go | 1 + 1 file changed, 1 insertion(+) (limited to 'internal/askcli/dispatch.go') diff --git a/internal/askcli/dispatch.go b/internal/askcli/dispatch.go index f6c503b..81b8944 100644 --- a/internal/askcli/dispatch.go +++ b/internal/askcli/dispatch.go @@ -82,6 +82,7 @@ func (d *Dispatcher) help(w io.Writer) (int, error) { _, _ = io.WriteString(w, " ask add [mods...] [depends:,...] Create a new task and print created task \n") _, _ = 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 completed List completed tasks\n") _, _ = io.WriteString(w, " ask all [filters] List all tasks including completed/deleted\n") _, _ = io.WriteString(w, " ask info [id|uuid] Show task details or current started task\n") _, _ = io.WriteString(w, " ask annotate \"note\" Add annotation to task\n") -- cgit v1.2.3