Skip to content
Open
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
11 changes: 11 additions & 0 deletions cli/src/commands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ pub mod auth;
pub mod auto_update;
pub mod board;
pub mod mcp;
pub mod tab;
pub mod warden;

pub use auth::AuthCommands;
Expand Down Expand Up @@ -163,6 +164,13 @@ pub enum Commands {
#[arg(trailing_var_arg = true, allow_hyphen_values = true)]
args: Vec<String>,
},
/// Browser automation CLI - control a real browser from the command line
/// Run `stakpak tab --help` for available commands.
Tab {
/// Arguments to pass to the tab plugin
#[arg(trailing_var_arg = true, allow_hyphen_values = true)]
args: Vec<String>,
},
/// Update Stakpak Agent to the latest version
Update,
}
Expand Down Expand Up @@ -447,6 +455,9 @@ impl Commands {
Commands::Board { args } => {
board::run_board(args).await?;
}
Commands::Tab { args } => {
tab::run_tab(args).await?;
}
Commands::Update => {
auto_update::run_auto_update().await?;
}
Expand Down
Loading