-
Notifications
You must be signed in to change notification settings - Fork 1
Command Reference
Complete reference for all lantern subcommands.
Start all background services (Relay daemon and optional Temporal dev server).
lantern upRun once per session; launchd service starts it automatically on login.
Stop all background services.
lantern downRestart all services. Useful after installing a new binary.
lantern restartHealth check all dependencies and services.
lantern doctorVerifies Rust, Temporal CLI, git, iTerm2, agent CLIs, and service status.
Launch a new squad workspace.
Arguments:
-
project— project name (optional; defaults to repo name) -
slot— numeric slot (optional; auto-allocated if omitted) -
--agent— agent CLI:claude(default),codex,kimi,gemini,agy,goose -
--no-init— skip initialization prompts
Examples:
lantern startwork myproject # Default squad
lantern startwork myproject 1 # Named slot
lantern startwork myproject --agent goose # Solo goose
lantern startwork myproject 2 --agent codex # Different agentSee Agent Modes for detailed mode descriptions.
Show state of all active squads and agents.
lantern statusTear down a squad workspace.
Arguments:
-
session— session ID (e.g.,myproject-1) -
--all— stop all active sessions -
--preserve-worktrees— keep git worktrees; only close panes
Examples:
lantern stopwork myproject-1
lantern stopwork --all
lantern stopwork myproject-1 --preserve-worktreesPause an agent (suspend without killing the pane).
lantern pause myproject-1-aiResume a paused agent.
lantern resume myproject-1-aiTake human control of an agent pane.
lantern takeover myproject-1-uiNow you can type directly in the pane.
Release human control; let the agent resume.
lantern release myproject-1-uiForce recovery of a stuck or crashed agent.
lantern recover myproject-1-aiInject a note into an agent pane.
lantern note myproject-1-ai "Check line 42 in src/main.rs"Tail logs for a service.
Services:
-
relay— Lantern Relay daemon logs -
temporal— Temporal dev server logs
Examples:
lantern logs relay
lantern logs temporalStart the Lantern MCP stdio server (for agent CLI integration).
lantern mcpNormally spawned by agent CLIs; you rarely run this manually.
Run a headless Goose/ACP worker for a one-shot task.
lantern acp-run --agent claude --prompt "Fix the bug in foo.rs"Show all available commands.
Show help for a specific command.
lantern startwork --help