unicli-explorer

unicli-explorer is a skill for Claude Code, Codex from olo-dot-io/Uni-CLI. It costs 38 tokens per session (717 once invoked), scanned A, original, Apache-2.0.

A workflow for adding new Uni-CLI commands that connect to websites, APIs, or local apps. It explores how a service works, then records the connection steps in a small YAML file.

In plain words
What is it for?
Use it to inspect websites and APIs, capture their network requests, and create Uni-CLI adapters for new commands.
Why use it?
It removes the need to guess how a service loads data or handles login. It helps you choose the right way to connect when the service has an API, browser-only interface, or protected requests.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/olo-dot-io/uni-cli/unicli-explorer
Any agent
npx skills add olo-dot-io/Uni-CLI --skill unicli-explorer
Clone the repo
git clone --depth 1 https://github.com/olo-dot-io/Uni-CLI

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for unicli-explorer

README.md
[![agentmods](https://agentmods.dev/badge/skills/olo-dot-io/uni-cli/unicli-explorer.svg)](https://agentmods.dev/skills/olo-dot-io/uni-cli/unicli-explorer)
Your own site
<a href="https://agentmods.dev/skills/olo-dot-io/uni-cli/unicli-explorer"><img src="https://agentmods.dev/badge/skills/olo-dot-io/uni-cli/unicli-explorer.svg" alt="Measured on agentmods" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 717 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00038 $0.00717
Opus 5 $0.00019 $0.00358
Sonnet 5 $0.00008 $0.00143
Haiku 4.5 $0.00004 $0.00072

Measured 4d ago against content hash 9e3d3338e6dd, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

unicli-explorer scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

| `fetch(url)` returns data | `public` | No |
skills/unicli-explorer/SKILL.md · 91 lines

How it starts

The opening of the file, as written. The whole thing — 91 lines — stays where its author put it; the contents beside it link to each section on GitHub.

When to Use

Adding a new website, API, or local app to Uni-CLI's adapter catalog (~20-line YAML files).

Workflow

1. Discover the API

unicli browser start                     # Ensure Chrome is running
unicli operate open <target-url>         # Navigate to target page
unicli operate state                     # Inspect DOM structure
unicli operate network                   # List captured JSON API requests
unicli operate click <ref>               # Trigger lazy-loaded APIs
unicli operate network                   # Check for new requests

2. Choose Strategy

Condition Strategy Browser?
fetch(url) returns data public No
Needs login cookies cookie Yes
Needs CSRF/Bearer token header Yes
Complex signed requests intercept Yes
No API, DOM only ui Yes

3. Write YAML Adapter

Create src/adapters/<site>/<command>.yaml:

site: mysite
name: mycommand
description: What this command does
type: web-api
strategy: public
args:
  query: { type: str, required: true, positional: true }
  limit: { type: int, default: 20 }
pipeline:
  - fetch:
      {
        url: "https://api.example.com/search",
        params: { q: "${{ args.query }}" },
      }
  - select: data.results
  - map: { title: "${{ item.title }}", url: "${{ item.url }}" }
  - limit: ${{ args.limit }}
columns: [title, url]

4. Test

npm run dev -- mysite mycommand "test" --limit 3
npm run verify

5. Self-Repair

When adapters break: read error JSON adapter_path -> fix the ~20-line YAML -> save to ~/.unicli/adapters/<site>/<cmd>.yaml -> unicli test <site>.

Key Pipeline Steps

fetch, fetch_text, parse_rss, html_to_md, select, map, filter, sort, limit, exec, navigate, evaluate, intercept, click, type, wait, press, scroll, snapshot, download, set, if, each, parallel

Read the full file on GitHub · 91 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 91 lines · 38 tokens per session scan A 9e3d3338e6dd

Subscribe to this mod's changes

unicli-explorer is a skill published in the GitHub repository olo-dot-io/Uni-CLI (270 stars, last pushed yesterday), licensed Apache-2.0. It adds 38 tokens to every session and 717 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

x402

Set up Browser Use Cloud payments with x402 — pay per request from a crypto wallet (USDC on Base mainnet), no signup or API key. Two setups it works out up front — "just use it" (set up a wallet so you or Claude Code can run cloud browser tasks paid from the wallet — Claude writes and runs throwaway scripts, nothing…

browser-use/browser-use · 175 tokens

browser-use

Direct browser control via CDP for web interaction: automation, scraping, testing, screenshots, and site/app work.

browser-use/browser-use · 26 tokens

opencli-browser

Use when an agent needs to drive a real Chrome window via opencli — inspect a page, fill forms, click through logged-in flows, or extract data ad-hoc. Covers the selector-first target contract, compound form fields, stale-ref handling, network capture, and the agent-native envelopes the CLI returns. Not for writing…

jackwener/OpenCLI · 80 tokens

opencli-autofix

Automatically fix broken OpenCLI adapters when commands fail. Load this skill when an opencli command fails — it guides you through collecting a trace artifact, patching the adapter, retrying, and filing an upstream GitHub issue after a verified fix. Works with any AI agent.

jackwener/OpenCLI · 61 tokens

open-source

Documentation reference for writing Python code using the browser-use open-source library. Use this skill whenever the user needs help with Agent, Browser, or Tools configuration, is writing code that imports from browseruse, asks about @sandbox deployment, supported LLM models, Actor API, custom tools, lifecycle…

browser-use/browser-use · 137 tokens

opencli-usage

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?".

jackwener/OpenCLI · 74 tokens