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.
npx agentmods add skills/olo-dot-io/uni-cli/unicli-explorernpx skills add olo-dot-io/Uni-CLI --skill unicli-explorergit clone --depth 1 https://github.com/olo-dot-io/Uni-CLIWrote 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.
[](https://agentmods.dev/skills/olo-dot-io/uni-cli/unicli-explorer)<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>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.
| Model | Per session | Once 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 |
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 | 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
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.
- 4d ago First seen · 91 lines · 38 tokens per session scan A 9e3d3338e6dd
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.
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
Direct browser control via CDP for web interaction: automation, scraping, testing, screenshots, and site/app work.
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…
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.
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…
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?".