← ClaudeAtlas

flowleap-sharedlisted

Shared reference for every FlowLeap skill — authentication (OAuth device flow, fl_pat_ personal API tokens), credential storage, config precedence, global flags, and output formats. Trigger when a FlowLeap command needs credentials set up, a global flag explained, config file locations, or output-format guidance; for the overall command map start from the `flowleap` skill.
flowleap-ai/flowleap-plugins · ★ 0 · AI & Automation · score 72
Install: claude install-skill flowleap-ai/flowleap-plugins
# FlowLeap CLI — Shared Reference Shared authentication, configuration, and global-flag reference used by every other FlowLeap skill. For the overall map of commands, skills, and workflows, start from the `flowleap` skill. ## Authentication Every authenticated request sends `Authorization: Bearer <credential>` — either a session JWT from the OAuth device flow or a long-lived personal API token (`fl_pat_…`). Environment variable overrides (highest priority): - `FLOWLEAP_API_KEY` — personal API token (`fl_pat_…`) - `FLOWLEAP_TOKEN` — Bearer token - `FLOWLEAP_BASE_URL` — API base URL The login, token minting/listing/revocation, and 401 self-heal commands live in `flowleap-auth`. Patent-provider keys (EPO OPS / USPTO ODP BYOK) live in `flowleap-keys`. ## Global Flags | Flag | Description | Default | |------|-------------|---------| | `--json` | Shorthand for `--output json` | `false` | | `--output <format>` | Output format: `json`, `table`, `human` | `human` | | `--base-url <url>` | API base URL | `https://api.flowleap.co` | | `--api-key <key>` | Override stored API key (`fl_pat_…`) | — | | `--token <token>` | Override stored token | — | | `--dry-run` | Show request without executing | `false` | | `--dry-run-redacted` | Redact sensitive values from dry-run output; requires `--dry-run` | `false` | | `--verbose`, `-v` | Show request/response details | `false` | ## Configuration Config is stored in `~/.config/flowleap/config.toml`. Credentials live separately in `~/.config/