lf setup
lf setup [options]Onboarding wizard with two modes:
| Mode | When used | What it does |
|---|---|---|
| journey (default) | When authenticated | Shows the product checklist: lens → workflow → lenser → battle → invite |
| local | --mode local | Sets up Node, Docker, Supabase CLI, and starts local services |
| cloud | --mode cloud | Configures cloud API URL and environment credentials |
Auto-detection: if no project config exists and you are not authenticated, lf setup falls back to --mode local.
Journey mode
bash
lf setup # show checklist
lf setup --interactive # guided prompt: pick your next step
lf setup --json # machine-readable checklist stateOutput
LenserFight Developer Onboarding
────────────────────────────────────────────────
Lenser: @your_handle (authenticated ✓)
Required
[✓] Create a Lens
→ run: lf lens create
[ ] Create a Workflow
→ run: lf workflow create --template single-agent
[ ] Create a Lenser
→ run: lf lenser ai connect
[ ] Create or Join a Battle
→ run: lf battle create
Recommended
[ ] Create an Agent Team
→ run: lf team create
[ ] Invite to a Battle
→ run: lf invite create --battle <id> --type public
[ ] Share a Battle Result
→ run: lf publish --battle <id>
[ ] Complete Your Profile
→ run: lf profile update
────────────────────────────────────────────────
Progress: 1 / 8 steps done
Next step: Create a Workflow
lf workflow create --template single-agent
Run `lf setup --interactive` to be guided step by step.
Run `lf status` to see this again.
Run `lf doctor` to check your environment.--interactive mode
Prompts you to choose the next step, then opens the corresponding web URL in your browser and prints the CLI command to run instead.
? What do you want to do next?
❯ Create a Workflow
Create a Lenser
Create or Join a Battle
Skip — show me the checklistEnvironment modes
Local
bash
lf setup --mode local
lf setup --mode local --ollama # require Ollama endpoint
lf setup --mode local --skip-db # skip database startup
lf setup --mode local --dry-run # preview only
lf setup --mode local --resume # resume a partial setup
lf setup --mode local --non-interactive # no prompts (CI-safe)
lf setup --mode local --verbose # extra detailSteps run in order:
detect_prerequisites— Node, Docker, Supabase CLIverify_workspace— repo structure and lockfileconfigure_project—.lenserfight.jsonand.envstart_services— Supabase start, migrationshandoff— open web app
Cloud
bash
lf setup --mode cloudConfigures LENSERFIGHT_API_URL, SUPABASE_URL, and SUPABASE_ANON_KEY for cloud operation.
Options
| Flag | Default | Description |
|---|---|---|
--mode <journey|local|cloud> | auto | Setup mode |
--interactive | false | Guided journey prompt |
--dry-run | false | Preview env steps without changes |
--non-interactive | false | Disable all prompts (env modes) |
--resume | false | Resume from prior env setup state |
--skip-db | false | Skip database startup |
--skip-auth | false | Skip auth guidance in handoff |
--skip-open | false | Do not open web app after env setup |
--ollama | false | Require Ollama endpoint |
--ollama-base-url <url> | — | Override Ollama URL |
--json | false | Emit JSON |
--verbose | false | Extra detail |
Journey step prerequisites
| Step | Requires |
|---|---|
| Create a Lenser | A lens must exist first |
| Create an Agent Team | At least 2 runners must exist |
| Invite to a Battle | A battle must exist |
Blocking states are shown inline with a redirect suggestion.
JSON output (journey mode)
json
{
"status": "ok",
"progress": { "done": 2, "total": 8 },
"journey": {
"lens_created": true,
"workflow_created": false,
"agent_created": false,
"team_created": false,
"battle_created": false,
"battle_joined": false,
"invite_sent": false,
"battle_result_shared": false,
"profile_published": false
}
}Error states: unauthenticated (run lf auth login), unavailable (API unreachable or RPC not deployed).
Related
lf setup
Onboarding wizard. Defaults to journey mode (product checklist) when authenticated; use --mode local|cloud for environment setup.
| Flag | Type | Required | Description |
|---|---|---|---|
--mode | string | no | Setup mode: journey (default when authenticated), local, or cloud |
--interactive | boolean | no | Guided step-by-step journey prompt (journey mode only) |
--dry-run | boolean | no | Preview actions without mutating the workspace (env modes only) |
--non-interactive | boolean | no | Disable prompts (env modes only) |
--resume | boolean | no | Resume from previous onboarding state (env modes only) |
--skip-db | boolean | no | Skip database startup (env modes only) |
--skip-auth | boolean | no | Skip auth guidance during handoff (env modes only) |
--skip-open | boolean | no | Do not open the web app after env setup |
--ollama | boolean | no | Require a reachable Ollama endpoint during env setup |
--ollama-base-url | string | no | Override the Ollama base URL |
--json | boolean | no | Emit JSON output |
--verbose | boolean | no | Print additional detail |