Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.landbase.com/llms.txt

Use this file to discover all available pages before exploring further.

View and inspect previous agent runs. Each search or workflow step creates a run that can be retrieved by ID or filtered by session.

runs list

List previous agent runs, optionally filtered by session. Usage
landbase-cli runs list [flags]
Flags
FlagDefaultDescription
--session=<label-or-id>Filter by session label or session ID
--limit=<n>Maximum number of runs to return
--no-update-checkSkip the daily update check
--verbosePrint request/response details to stderr

runs get

Get details for a specific run. Usage
landbase-cli runs get <run-id> [flags]
run-id
string
required
The ID of the run to retrieve.
Flags
FlagDefaultDescription
--session=<label-or-id>Session context for the run
--no-update-checkSkip the daily update check
--verbosePrint request/response details to stderr
Examples
# List all runs
landbase-cli runs list

# List runs for a specific session
landbase-cli runs list --session=sf-saas

# Get details for a specific run
landbase-cli runs get <run-id>