Skip to content
Merged
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
6 changes: 6 additions & 0 deletions src/lib/sandbox-logs-cli-command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ export default class SandboxLogsCommand extends Command {
static summary = "Stream sandbox logs";
static description = "Show OpenClaw gateway logs and OpenShell audit logs for a sandbox.";
static usage = ["<name> logs [--follow] [--tail <lines>|-n <lines>] [--since <duration>]"];
static examples = [
"<%= config.bin %> alpha logs",
"<%= config.bin %> alpha logs --tail 100",
"<%= config.bin %> alpha logs --since 5m",
"<%= config.bin %> alpha logs --follow",
];
static args = {
sandboxName: Args.string({
name: "sandbox",
Expand Down
Loading