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-hermesnpx skills add olo-dot-io/Uni-CLI --skill unicli-hermesgit 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-hermes)<a href="https://agentmods.dev/skills/olo-dot-io/uni-cli/unicli-hermes"><img src="https://agentmods.dev/badge/skills/olo-dot-io/uni-cli/unicli-hermes.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.00056 | $0.00714 |
| Opus 5 | $0.00028 | $0.00357 |
| Sonnet 5 | $0.00011 | $0.00143 |
| Haiku 4.5 | $0.00006 | $0.00071 |
Grade B, and why
unicli-hermes scanned grade B 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 5d 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.
Unrestricted tool accessmediumExcessive agency
A wildcard tool grant or "run any command" leaves no least-privilege boundary at all.
unicli <site> <command> [--limit N] [-f json] # Run any command How it starts
The opening of the file, as written. The whole thing — 90 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Uni-CLI Agent Skill
Open Agent-Computer Interface runtime for real software. Run unicli list for
the live inventory.
Install
npm install -g @zenalexa/unicli
Quick Reference
unicli <site> <command> [--limit N] [-f json] # Run any command
unicli list [--site <name>] # Discover commands
unicli schema <site> <command> # Get input/output schema
unicli repair <site> <command> # Verify an evidence-backed fix
unicli test <site> # Validate adapter
When to Use
- Web data:
unicli twitter search "query",unicli hackernews top - Chinese platforms:
unicli bilibili hot,unicli zhihu trending - Finance:
unicli bloomberg latest,unicli xueqiu hot - Desktop apps:
unicli blender render scene.blend,unicli ffmpeg compress video.mp4 - macOS system:
unicli macos volume 50,unicli macos screenshot
Output
- Default: v2 AgentEnvelope rendered as Markdown
- JSON: pass
-f jsonor setUNICLI_OUTPUT=json - Errors: structured envelope to stderr with
adapter_path,step,suggestion
Self-Repair
When a command fails:
- Read the error JSON — it includes the adapter file path
- Read the YAML adapter (~20 lines)
- Fix the issue (selector changed? API versioned? auth needed?)
- Save to
~/.unicli/adapters/<site>/<command>.yaml - Verify:
unicli repair <site> <command>
unicli repair never edits source or invokes an AI backend. Do not offer it for
auth, challenge, network, or rate-limit failures; restore that boundary first.
MCP Server (Hermes / agentskills.io)
Add to your Hermes agent configuration:
mcp_servers:
unicli:
command: "npx"
args: ["-y", "@zenalexa/unicli", "mcp", "serve"]
tools:
include: [unicli_run, unicli_list, unicli_search, unicli_explore]
Or run the expanded server to expose each loaded adapter operation as an
individual full-schema tool. Use unicli mcp health -f json for the current
catalog-dependent count:
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.
- 5d ago First seen · 90 lines · 56 tokens per session scan B e414b142ad2a
unicli-hermes is a skill published in the GitHub repository olo-dot-io/Uni-CLI (270 stars, last pushed 2d ago), licensed Apache-2.0. It adds 56 tokens to every session and 714 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 1 finding (unrestricted tool access). 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.
remote-browser
Controls an isolated Browser Use Cloud browser from a sandboxed machine with the current Browser Use CLI.
cloud
Documentation reference for using Browser Use Cloud — the hosted API and SDK for browser automation. Use this skill whenever the user needs help with the Cloud REST API (v2, v3, or v4), browser-use-sdk (Python or TypeScript), X-Browser-Use-API-Key authentication, cloud sessions, browser profiles, profile sync, CDP…
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-adapter-author
Use when writing an OpenCLI adapter for a new site or adding a new command to an existing site. Guides end-to-end from first recon through field decoding, adapter coding, and verify. Replaces opencli-oneshot / opencli-explorer. For ad-hoc browser driving (no adapter), see opencli-browser instead; for a top-level…