diff --git a/justfile b/justfile index 6f085ae..fb2838e 100644 --- a/justfile +++ b/justfile @@ -5,7 +5,11 @@ seed secret="dev" name="": bun src/seed.ts "{{secret}}" "{{name}}" dev: - bun run dev + CLAUDE_REMOTE_SECRET=dev bun run dev + +# Run CLI client (connects to local dev server) +client *args: + CLAUDE_REMOTE_SECRET=dev CLAUDE_REMOTE_SERVER=ws://localhost:7200/ws bun src/cli.ts {{args}} start: bun run start