diff --git a/lib/crates/fabro-cli/src/landing.rs b/lib/crates/fabro-cli/src/landing.rs index f31e6de88..02900d9f3 100644 --- a/lib/crates/fabro-cli/src/landing.rs +++ b/lib/crates/fabro-cli/src/landing.rs @@ -34,6 +34,8 @@ pub(crate) fn print() { ), ("doctor", "Check environment and integration health"), ("repo init", "Initialize Fabro in a repository"), + ("server start", "Start the Fabro API server"), + ("secret set", "Store a server-owned secret"), ], cmd_width, ); @@ -44,24 +46,14 @@ pub(crate) fn print() { ("validate", "Validate a workflow"), ("preflight", "Validate run configuration without executing"), ("run", "Launch a workflow run"), + ], + cmd_width, + ); + + section( + "Inspect runs", + &[ ("logs", "View the event log of a workflow run"), - ], - cmd_width, - ); - - section( - "Server & secrets", - &[ - ("server start", "Start the Fabro API server"), - ("secret set", "Store a server-owned secret"), - ("secret list", "List server-owned secrets"), - ], - cmd_width, - ); - - section( - "Inspect sandboxes", - &[ ("sandbox ssh", "SSH into a run's sandbox"), ( "sandbox preview", diff --git a/lib/crates/fabro-cli/tests/it/cmd/fabro.rs b/lib/crates/fabro-cli/tests/it/cmd/fabro.rs index 486e473d7..9c6c7e76f 100644 --- a/lib/crates/fabro-cli/tests/it/cmd/fabro.rs +++ b/lib/crates/fabro-cli/tests/it/cmd/fabro.rs @@ -77,22 +77,18 @@ fn no_args_prints_curated_landing() { fabro install Set up the Fabro environment (LLMs, certs, GitHub) fabro doctor Check environment and integration health fabro repo init Initialize Fabro in a repository + fabro server start Start the Fabro API server + fabro secret set Store a server-owned secret Run workflows fabro validate Validate a workflow fabro preflight Validate run configuration without executing fabro run Launch a workflow run + + Inspect runs + fabro logs View the event log of a workflow run - - Server & secrets - - fabro server start Start the Fabro API server - fabro secret set Store a server-owned secret - fabro secret list List server-owned secrets - - Inspect sandboxes - fabro sandbox ssh SSH into a run's sandbox fabro sandbox preview Get a preview URL for a port on a run's sandbox fabro sandbox cp Copy files to/from a run's sandbox