PluginBench
Skill
Review
Audit score 70

opencli-usage

jackwener/opencli

Orientation layer for OpenCLI — discover adapters, learn universal flags, and route to specialized skills.

What is opencli-usage?

opencli-usage is the entry point for any OpenCLI session. It teaches you what OpenCLI can do (adapter commands, browser driving, external CLI passthrough), how to discover installed adapters without hard-coding, and which universal flags and output formats apply everywhere. Use this when you need to understand the OpenCLI landscape or find the right command.

  • Discover all installed adapters and their strategies (PUBLIC, COOKIE, INTERCEPT, UI, LOCAL) via `opencli list` or `opencli list -f json`
  • Learn universal flags (`-f/--format`, `-v/--verbose`) that work on every adapter command
  • Understand output formats (json, yaml, table, plain, md, csv) and when each is appropriate
  • Route to specialized skills: `opencli-browser` for DOM interaction, `opencli-adapter-author` for writing custom adapters, `opencli-autofix` for self-repair
  • Check browser bridge health with `opencli doctor` before running COOKIE/INTERCEPT/UI adapters
  • Manage plugins and external CLI passthrough via `opencli plugin` and `opencli external` commands

How to install opencli-usage

npx skills add https://github.com/jackwener/opencli --skill opencli-usage
Prerequisites
  • Node >= 21 for npm global install
  • Chrome with OpenCLI extension (from Chrome Web Store) for COOKIE/INTERCEPT/UI adapters
  • Running Electron app (Cursor, Discord, ChatGPT, etc.) if targeting desktop apps
  • Optional: `opencli doctor` to diagnose browser bridge before browser-dependent work
Claude Code
Cursor
Windsurf
Cline

How to use opencli-usage

  1. 1.Install: `npm install -g @jackwener/opencli` or clone and use `npx tsx src/main.ts`
  2. 2.Run `opencli doctor` to verify browser bridge (daemon, extension, Chrome wiring)
  3. 3.Run `opencli list` or `opencli list -f json` to see all installed adapters and their strategies
  4. 4.Run `opencli <site> --help` to see available commands for a specific site
  5. 5.Run `opencli <site> <command> --help` to see positional args and command-specific flags
  6. 6.Use `-f json` for machine-readable output (agents), `-f table` for human-readable (default in TTY)
  7. 7.Use `-v` flag for verbose debug logs if a command fails

Use cases

Good for
  • Agent asks 'what can opencli do?' — point here for the three pillars (adapters, browser driving, external CLI)
  • Need to find the right command for a site — run `opencli list -f json` and filter by site name
  • Unsure which output format to use — consult the format table to pick json (agents), plain (piping), or table (humans)
  • Adapter command fails and site changed — learn about `--trace retain-on-failure` and `opencli-autofix` repair workflow
  • Setting up OpenCLI for the first time — follow install steps and run `opencli doctor` to verify browser bridge
Who it's for
  • Agents and scripts discovering OpenCLI capabilities for the first time
  • Developers writing custom adapters or plugins
  • Users troubleshooting browser bridge or adapter failures
  • Teams integrating OpenCLI into automation workflows

opencli-usage FAQ

Do I need to read the full OpenCLI docs to get started?

No. Run `opencli list -f json` to discover what's installed, then `<site> --help` for command details. This skill is the map; the commands themselves are self-documenting.

Which adapters need a browser, and which don't?

PUBLIC adapters need nothing. COOKIE/INTERCEPT/UI need Chrome logged in + extension. LOCAL adapters don't need a browser. Run `opencli list` to see the strategy tag for each command.

What's the difference between `--format json` and `--format plain`?

`json` returns the full structured output (best for agents). `plain` prints only the primary field (response/content/text/value) — useful for piping to other tools.

How do I add my own adapter or external CLI?

Private adapters go in `~/.opencli/clis/<site>/<command>.js`. External CLIs are registered via `opencli external register`. See `opencli-adapter-author` for the full workflow.

What do I do if an adapter breaks because the site changed?

Re-run with `--trace retain-on-failure`, patch the `adapterSourcePath` from the error summary, and retry. See `opencli-autofix` for the full self-repair flow.

Full instructions (SKILL.md)

Source of truth, from jackwener/opencli.


name: opencli-usage description: Use at the start of any OpenCLI session — this is the top-level map of what opencli can do, how to discover adapters, what flags and output formats are universal, and which specialized skill to load next. Point here when an agent asks "what can opencli do?" or "how do I find the right command?". allowed-tools: Bash(opencli:*), Read

opencli-usage

OpenCLI turns any website, Electron desktop app, or external CLI into a uniform opencli <site> <command> surface that agents can drive without screen-scraping. This skill is the orientation layer — once you know what you want to do, load one of the specialized skills below.

The three pillars

  • Adapter commandsopencli <site> <command> [...]. Built-in adapters live in clis/, user adapters in ~/.opencli/clis/. Each is backed by a strategy (PUBLIC | COOKIE | INTERCEPT | UI | LOCAL) that tells you whether a Chrome session is needed.
  • Browser drivingopencli browser * subcommands (open, state, click, type, select, find, extract, network, …) for ad-hoc interaction and scraping when no adapter covers the task. See opencli-browser.
  • Current-tab bindingopencli browser <session> bind attaches the Chrome tab the user already opened/logged into to that browser session. Follow-up commands use opencli browser <session> .... See opencli-browser before using it; bound sessions still block tab mutation.
  • External CLI passthroughopencli gh, opencli docker, opencli vercel, etc. Managed via opencli external install <name> (auto-install from external-clis.yaml) or opencli external register <name> (bring your own).

Install

# npm global
npm install -g @jackwener/opencli          # binary: opencli, requires Node >= 21
opencli doctor                              # run before browser-dependent work (see below)

# From source
git clone git@github.com:jackwener/OpenCLI.git
cd OpenCLI && npm install
npx tsx src/main.ts <command>               # same surface, no global install

opencli doctor prints a structured DoctorReport — daemon status, extension connection, version checks, and a live browser connectivity probe. Scope is narrow: it diagnoses the browser bridge (daemon + extension + Chrome wiring). PUBLIC / LOCAL adapters, opencli list, validate, verify, plugin commands, and external-CLI passthrough don't need it to be green — only COOKIE / INTERCEPT / UI adapters and the opencli browser * subcommands do. Flag: -v (verbose).

Prerequisites by command type

Strategy tag on opencli listWhat it needs
PUBLICNothing — pure HTTP, no browser.
COOKIEChrome logged into the target site + OpenCLI extension installed from the Chrome Web Store. Command captures the credential from your live session — no re-login.
INTERCEPTSame as COOKIE, plus opencli opens an automation window to capture a signed request.
UISame as COOKIE, full DOM interaction.
LOCALNo browser; talks to a local/dev endpoint.

Electron desktop apps (cursor, codex, chatwise, discord-app, doubao-app, antigravity, chatgpt-app) route through CDP against the running app — same cookie-less flow as a logged-in browser. Make sure the app is running before invoking.

Discover what's installed — don't read this file, run a command

opencli list                    # table, grouped by site
opencli list -f json            # machine-readable; pipe to jq or your agent
opencli list | grep -i twitter  # find commands for a specific site
opencli <site> --help           # see that site's commands + flags
opencli <site> <command> --help # see positional args and command-specific flags

Do not hard-code adapter lists — there are 100+ sites and the count moves every week. opencli list -f json is the source of truth; it emits one entry per command with {site, name, aliases, description, strategy, browser, args, columns, ...}. For an agent, that is always better than grepping a doc.

Universal flags (work on every adapter command)

flageffect
-f, --format <fmt>table (default in TTY) · yaml (default in non-TTY) · json · plain · md · csv. Pass explicitly when you want a specific shape; agents almost always want -f json.
-v, --verboseDebug logs + stack traces on failure; also sets OPENCLI_VERBOSE=1 for the process.

Command-specific flags (--limit, --tab, --filter, …) are not universal — consult <site> <command> --help.

Output formats

  • json — pretty-printed, 2-space indent. Default choice for agents.
  • plain — prints a single primary field for chat-style commands (response/content/text/value). Useful for piping to another tool.
  • yaml — fallback when output is not a TTY and -f is not explicit.
  • table — color-coded, site-grouped; meant for humans.
  • md, csv — straightforward tabular dumps.

A few commands override the default via cmd.defaultFormat (e.g. chat commands default to plain), so don't assume without reading --help.

Environment variables

variabledefaultpurpose
OPENCLI_BROWSER_CONNECT_TIMEOUT45Seconds to wait for the browser bridge.
OPENCLI_BROWSER_COMMAND_TIMEOUT60Per-command timeout.
OPENCLI_CDP_ENDPOINTManual CDP endpoint override (dev / remote Chrome / Electron).
OPENCLI_CACHE_DIR~/.opencli/cacheNetwork capture + browser-state cache.
OPENCLI_WINDOWcommand-specificforeground or background browser window mode.
OPENCLI_VERBOSEfalseVerbose logging (also triggered by -v).

Self-repair

When an adapter command fails because the site changed (selectors drifted, API rotated, response schema shifted), re-run with --trace retain-on-failure. The error envelope includes a trace block pointing at summary.md; patch only the adapterSourcePath from that summary and retry. Max 3 repair rounds. The full flow is in opencli-autofix.

Writing your own adapter

Two-path storage:

  • Private: ~/.opencli/clis/<site>/<command>.js — no build step, hot-available, not visible in the public package.
  • Public / PR: clis/<site>/<command>.js — for upstream contribution; requires build.

Scaffolding & verification:

opencli browser init <site>/<command>   # generates a skeleton
opencli validate [target]               # semantic checks on the loaded registry (description, domain, pipeline step names, func|pipeline|_lazy presence, arg duplicates) — no network, no browser
opencli verify [target] [--smoke]       # run the command with synthetic args
opencli browser verify <site>/<command> # end-to-end smoke inside the bridge

Adapters import only @jackwener/opencli/registry and @jackwener/opencli/errors. columns must align 1:1 (in name and order) with keys of the object returned by func. For the full workflow see opencli-adapter-author.

Plugins

Plugins are third-party extensions pulled from git, separate from the main adapter registry:

opencli plugin install github:user/repo    # install
opencli plugin list [-f json]              # see installed
opencli plugin update [name] | --all       # keep current
opencli plugin uninstall <name>
opencli plugin create <name>               # scaffold a new plugin

External CLI passthrough

Wraps external command-line tools so you can discover + invoke them through the same opencli … entrypoint:

opencli external install gh    # auto-install via brew/apt/npm per external-clis.yaml
opencli external register my-tool \
    --binary my-tool \
    --install "npm i -g my-tool" \
    --desc "My internal CLI"
opencli external list
opencli gh pr list --limit 5   # passthrough; stdio is inherited, exit code propagated
opencli docker ps

Built-in entries live in src/external-clis.yaml; user overrides and additions in ~/.opencli/external-clis.yaml. Commonly shipped: gh, docker, vercel, lark-cli, longbridge, dws, wecom-cli, obsidian, ntn, tg(tg-cli), discord(discord-cli), wx(wx-cli).

Some official CLIs use shell-script installers instead of a shell-free package-manager command. Entries without an install config, such as ntn, must be installed manually from their homepage before passthrough use.

Shell completion

opencli completion bash   # also: zsh, fish
# -> script on stdout; source or save per your shell's convention

Where to go next

If you're about to…Load this skill
Drive a live browser ad-hoc (no adapter available, or prototyping)opencli-browser
Write a new adapter, or add a command to an existing siteopencli-adapter-author
Fix a broken adapter after a command failureopencli-autofix
Route a search / lookup / research request to the right adaptersmart-search

Commands that used to exist

The following were removed in the PR #1094 consolidation — don't try to invoke them:

  • opencli explore <url> — superseded by opencli browser network + opencli browser find for live API discovery, and by the opencli-adapter-author workflow for capture.
  • opencli record <url> — removed; manual capture now lives in opencli browser network --detail.
  • opencli web read / opencli desktop * as top-level groups — folded into their respective adapters (opencli web read still exists as the web adapter's read command, but there is no standalone web / desktop top-level group command).

Don't

  • Don't paste this skill's command list into your plan; it will rot. Call opencli list -f json at the start of a task instead.
  • Don't assume every adapter needs a browser — strategy PUBLIC and LOCAL don't. Check the strategy field.
  • Don't silently fall back from a failing adapter to a hand-rolled fetch--trace retain-on-failure gives you the browser evidence and adapter source path. Do that first.