Control the local Lane AI gateway from an agent or script.
Scanned 9/9/2026
Install to Claude Code
npx -y skills add 1MoreBuild/Lane --skill lane --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Lane?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/1morebuild-lane)More formats (shields.io, HTML) on the badges page.
---
name: lane
description: Control the local Lane AI gateway from an agent or script.
---
# Lane CLI
Use `lane` to inspect or control the user's local Lane gateway. The user must
first open the packaged Lane app and choose **Settings → Command line →
Install…**. This is a one-time macOS authorization.
## Agent-safe commands
Always request JSON and disable prompts:
```bash
lane status --json --no-input
lane start --json --no-input
lane stop --json --no-input
lane connection --json --no-input
lane providers list --json --no-input
lane models --json --no-input
lane open --json --no-input
lane schema --json --no-input
```
Add an API-key provider without exposing the secret in process arguments:
```bash
printf '%s\n' "$OPENAI_API_KEY" |
lane providers add --kind openai --api-key-stdin --json --no-input
```
Provider removal is destructive and requires explicit confirmation:
```bash
lane providers remove --id PROVIDER_ID --force --json --no-input
```
Set the fallback model and inspect redacted diagnostics:
```bash
lane models set-default --id PROVIDER_ID/MODEL_ID --json --no-input
lane activity --json --no-input
```
Read `lane schema --json` instead of guessing supported commands. Exit code `0`
means success, `2` means invalid usage, `4` means the integration is unavailable,
and `8` means a retryable service failure.
## Safety boundary
`lane connection` returns the Lane client key because it is required to call the
gateway. Provider API keys are write-only through stdin. Stored provider API keys
and OAuth tokens are never returned. UI-only preferences such as theme, Dock, and
menu bar visibility stay in the app.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!