From db8c5659cb54cbfd0ac1e59888059d45b4fe4d3d Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Tue, 26 May 2026 10:52:01 +0300 Subject: feat(askcli): add projects subcommand --- internal/askcli/commands_registry.go | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'internal/askcli/commands_registry.go') diff --git a/internal/askcli/commands_registry.go b/internal/askcli/commands_registry.go index f999ca3..b288fd4 100644 --- a/internal/askcli/commands_registry.go +++ b/internal/askcli/commands_registry.go @@ -186,6 +186,13 @@ var commandRegistry = newCommandTable([]commandEntry{ }) func init() { + commandRegistry.add(commandEntry{ + name: "projects", + description: "List projects with pending, not-yet-started tasks", + handler: wrapSimpleCommand((*Dispatcher).handleProjects), + includeInCompletion: true, + readOnly: true, + }) commandRegistry.add(commandEntry{ name: "watch", description: "Repeatedly run a subcommand and redraw when output changes", -- cgit v1.2.3