Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions crates/ticgit/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ use crate::commands;
mine List tickets assigned to you
history Show change history for a ticket
tui Browse open tickets in an interactive terminal UI
serve Browse tickets in your web browser

\x1b[1;36mWork on Tickets:\x1b[0m
checkout, co Select a ticket as \"current\"
Expand Down Expand Up @@ -123,6 +124,9 @@ pub enum Command {
/// Browse open tickets in an interactive terminal UI.
Tui(commands::tui::Args),

/// Serve the ticket list over HTTP for browsing in a web browser.
Serve(commands::serve::Args),

/// Print or install AI agent integration guidance.
Agent(commands::agent::Args),

Expand Down Expand Up @@ -257,6 +261,7 @@ pub fn run(cli: Cli) -> anyhow::Result<()> {
}
Some(Command::History(args)) => commands::history::run(args),
Some(Command::Tui(args)) => commands::tui::run(args),
Some(Command::Serve(args)) => commands::serve::run(args),
Some(Command::Agent(args)) => commands::agent::run(args),
Some(Command::Tag(args)) => commands::tag::run(args),
Some(Command::State(args)) => commands::state::run(args),
Expand Down
1 change: 1 addition & 0 deletions crates/ticgit/src/commands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ pub mod priority;
pub mod pull;
pub mod recent;
pub mod review;
pub mod serve;
pub mod setup;
pub mod show;
pub mod spec;
Expand Down
Loading