Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add ItamarZand88/CLI-Anything-WEB/plugin install cli-anything-webWrote 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/itamarzand88/cli-anything-web/boilerplate)<a href="https://agentmods.dev/skills/itamarzand88/cli-anything-web/boilerplate"><img src="https://agentmods.dev/badge/skills/itamarzand88/cli-anything-web/boilerplate/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/itamarzand88/cli-anything-web/boilerplate"><img src="https://agentmods.dev/badge/skills/itamarzand88/cli-anything-web/boilerplate.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00060 | $0.01884 |
| Opus 5 | $0.00030 | $0.00942 |
| Sonnet 5 | $0.00012 | $0.00377 |
| Haiku 4.5 | $0.00006 | $0.00188 |
Grade A, and why
boilerplate scanned grade A with 0 findings 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 9d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 113 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Boilerplate Generator (Template-Driven)
Primary method: run the v2 scaffold script — it renders everything below deterministically and writes a
.manifest.jsonprovenance file:python ${CLAUDE_PLUGIN_ROOT}/scripts/scaffold-cli.py <app>/agent-harness \ --app-name <app> \ --protocol <rest|graphql|html-scraping|batchexecute> \ --http-client <httpx|curl_cffi> \ --auth-type <none|cookie|api-key|google-sso> \ --resource <name> [--resource <name> ...] \ [--has-polling] [--has-context] [--has-partial-ids]Requires
pip install jinja2(TEMPLATE_VERSION 2.1.0). Each repeatable--resourceflag scaffolds acommands/<resource>.pymodule.If the script is unavailable, do NOT render templates by hand from memory — follow
skills/shared/RECOVERY.md§scaffold-cli.py Unavailable (adapt from the newest generated CLI, e.g.,capitoltrades/agent-harness/).
All templates live in ${CLAUDE_PLUGIN_ROOT}/templates/*.tpl (Jinja2 syntax).
Generated code must satisfy skills/shared/CONVENTIONS.md — the templates
already encode those rules; never "simplify" them away.
Step 1: Collect Template Variables
| Variable | Type | Source | Example |
|---|---|---|---|
app_name |
str | CLI name (cli-web-<app> → <app>) |
hackernews |
APP_NAME |
str | UPPER_SNAKE (hyphens → underscores first) | HACKERNEWS |
AppName |
str | PascalCase | HackerNews |
protocol |
enum | traffic-analysis.json: rest, graphql, html-scraping, batchexecute |
rest |
http_client |
enum | protection detection: httpx, curl_cffi |
httpx |
auth_type |
enum | site profile: none, cookie, api-key, google-sso |
cookie |
resources |
list[str] | <APP>.md endpoint groups (one --resource flag each) |
stories users |
has_polling |
bool | async/long-running operations exist | false |
has_context |
bool | CLI needs use <id> / status context |
false |
has_partial_ids |
bool | resource IDs support prefix matching | false |
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.
- 9d ago First seen · 113 lines · 60 tokens per session scan A 1e0b3ef9af56
boilerplate is a skill published in the GitHub repository ItamarZand88/CLI-Anything-WEB (215 stars, last pushed 7d ago), licensed MIT. It adds 60 tokens to every session and 1,884 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
designlang-tokens
Use when styling UI for cal.com — references the extracted design system tokens instead of inventing colors, spacing, or typography.
playwright-test-generator
Use when someone wants to add, write, create, or scaffold new Playwright end-to-end tests for a page, flow, form, component, uncovered route, or first-project setup. The skill analyzes coverage gaps, explores live pages only on local/disposable or externally isolated approved non-production targets, proposes scenarios…
ink-playing-cards
Use when building terminal card games with ink-playing-cards, working with card components, deck management, zone systems, event systems, effect systems, or any card game logic using Ink and React for CLI rendering.
playwright-test-generator
Use this skill to generate new Playwright end-to-end tests from scratch — for a page, a user flow, a form, or a component — taking them from zero to reviewed, passing specs. Reach for it whenever someone wants to add, write, create, or scaffold Playwright E2E coverage, fill coverage gaps for uncovered routes, or…
language-patterns
Provides language-specific patterns for TypeScript, Python, and React including idioms, best practices, and common patterns. Use when implementing features in these languages.
create
Scaffold a new project from the Starter Series templates (MCP server, Discord/Telegram bot, VS Code / browser extension, Electron, React Native, Cloudflare Pages, npm package, Docker deploy).