pub enum QueueCommand {
Show 24 variants
Validate,
Prune(QueuePruneArgs),
Next(QueueNextArgs),
NextId(QueueNextIdArgs),
Show(QueueShowArgs),
List(QueueListArgs),
Search(QueueSearchArgs),
Archive(QueueArchiveArgs),
Repair(RepairArgs),
Unlock(QueueUnlockArgs),
Sort(QueueSortArgs),
Stats(QueueStatsArgs),
History(QueueHistoryArgs),
Burndown(QueueBurndownArgs),
Aging(QueueAgingArgs),
Schema,
Graph(QueueGraphArgs),
Export(QueueExportArgs),
Import(QueueImportArgs),
Stop,
Explain(QueueExplainArgs),
Tree(QueueTreeArgs),
Dashboard(QueueDashboardArgs),
Issue(QueueIssueArgs),
}Variants§
Validate
Validate the active queue (and done archive if present).
Prune(QueuePruneArgs)
Prune tasks from the done archive based on age, status, or keep-last rules.
Next(QueueNextArgs)
Print the next todo task (ID by default).
NextId(QueueNextIdArgs)
Print the next available task ID (across queue + done archive).
Show(QueueShowArgs)
Show a task by ID.
List(QueueListArgs)
List tasks in queue order.
Search(QueueSearchArgs)
Search tasks by content (title, evidence, plan, notes, request, tags, scope, custom fields).
Archive(QueueArchiveArgs)
Move completed tasks from queue.jsonc to done.jsonc.
Repair(RepairArgs)
Repair the queue and done files (fix missing fields, duplicates, timestamps).
Unlock(QueueUnlockArgs)
Safely remove the queue lock file with process detection.
Sort(QueueSortArgs)
Sort tasks by priority (reorders the queue file).
Stats(QueueStatsArgs)
Show task statistics (completion rate, avg duration, tag breakdown).
History(QueueHistoryArgs)
Show task history timeline (creation/completion events by day).
Burndown(QueueBurndownArgs)
Show burndown chart of remaining tasks over time.
Aging(QueueAgingArgs)
Show task aging buckets to identify stale work.
Schema
Print the JSON schema for the queue file.
Graph(QueueGraphArgs)
Visualize task dependencies as a graph.
Export(QueueExportArgs)
Export task data to CSV, TSV, JSON, Markdown, or GitHub issue format.
Import(QueueImportArgs)
Import tasks from CSV, TSV, or JSON.
Stop
Request graceful stop of a running loop after current task completes.
Explain(QueueExplainArgs)
Explain why tasks are (not) runnable.
Tree(QueueTreeArgs)
Render a parent/child hierarchy tree (based on parent_id).
Dashboard(QueueDashboardArgs)
Aggregated dashboard for analytics UI (combines stats, burndown, history, productivity).
Issue(QueueIssueArgs)
Publish tasks to GitHub Issues.
Trait Implementations§
Source§impl FromArgMatches for QueueCommand
impl FromArgMatches for QueueCommand
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
ArgMatches to self.Source§fn update_from_arg_matches_mut<'b>(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut<'b>( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
ArgMatches to self.Source§impl Subcommand for QueueCommand
impl Subcommand for QueueCommand
Source§fn augment_subcommands<'b>(__clap_app: Command) -> Command
fn augment_subcommands<'b>(__clap_app: Command) -> Command
Source§fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§fn has_subcommand(__clap_name: &str) -> bool
fn has_subcommand(__clap_name: &str) -> bool
Self can parse a specific subcommand