← ClaudeAtlas

flowleaplisted

Start here — the umbrella skill for the FlowLeap Patent AI CLI. Maps every command family (patent/USPTO/OPS/academic/NPL/legal/citation reads, analytics, OCR, claim analysis, one-call patent verbs, the tools facade, and the raw API escape hatch) and routes to the specialist skills. Trigger when a user asks an agent to use FlowLeap, query the FlowLeap backend, verify local or deployed FlowLeap API health, run patent research commands, or debug FlowLeap CLI/API behavior.
flowleap-ai/flowleap-plugins · ★ 0 · API & Backend · score 68
Install: claude install-skill flowleap-ai/flowleap-plugins
# FlowLeap CLI `flowleap` is the command layer for the FlowLeap Patent AI backend. This is the entry-point skill: it verifies the setup and routes to the specialist skills. Always pass `--json` for agent parsing; use `--dry-run` before protected calls. ## Start Here ```bash command -v flowleap || true flowleap --json doctor ``` Doctor exits **0 iff the machine is ready to work** (backend reachable, authenticated, nothing blocking); otherwise it exits 1 and its JSON lists the pending blocking steps in `nextSteps`, each tagged with an `actor`. Drive onboarding agent-mediated from that list: 1. Execute every `actor: "agent"` step yourself via its `run` command (e.g. `mint-personal-token`, `store-epo-keys`, `verify-keys`). 2. Relay every `actor: "human"` step to the user — its `title` plus `url` (provider signups) or the verification link from `flowleap --json auth login` (see `flowleap-auth`). 3. Re-run `flowleap --json doctor` until `ready` is `true` (empty `nextSteps`). Server-covered patent-data keys never appear in `nextSteps` — the list is only what actually blocks work. Full contract: `flowleap-shared`. **CLI not installed?** Install it first — npm when Node is present, the install script otherwise: ``` npm install -g flowleap curl -fsSL https://raw.githubusercontent.com/flowleap-ai/flowleap-cli/main/install.sh | sh ``` Then authenticate: `flowleap auth login` opens a device-code sign-in (a free FlowLeap account is created at flowleap.co if you don't h