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 skills add IvanSkainet/arena-agent --skill build-capabilitygit clone --depth 1 https://github.com/IvanSkainet/arena-agentWrote 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/ivanskainet/arena-agent/build-capability)<a href="https://agentmods.dev/skills/ivanskainet/arena-agent/build-capability"><img src="https://agentmods.dev/badge/skills/ivanskainet/arena-agent/build-capability/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/ivanskainet/arena-agent/build-capability"><img src="https://agentmods.dev/badge/skills/ivanskainet/arena-agent/build-capability.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.00000 | $0.02089 |
| Opus 5 | $0.00000 | $0.01045 |
| Sonnet 5 | $0.00000 | $0.00418 |
| Haiku 4.5 | $0.00000 | $0.00209 |
Grade A, and why
build-capability 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 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
binary. `fs.*` over `cp`/`copy`, `net.http` over `curl`/`Invoke-WebRequest`, How it starts
The opening of the file, as written. The whole thing — 168 lines — stays where its author put it; the contents beside it link to each section on GitHub.
core/build-capability
When you need an ability the bridge does not have, build it from the general tools instead of asking for a bespoke one. This skill is the map of how.
The bridge deliberately ships general primitives — processes, filesystem, HTTP, input, screen, code execution — and the machinery to compose them into named capabilities at runtime. A tool hard-wired to one application on one operating system is the wrong shape: it rots when that application changes, it is dead weight on every other platform, and it teaches nothing reusable. A composition you author out of primitives runs wherever the primitives run.
Decide first: does this need a new tool at all?
Work down this list and stop at the first that fits.
- An existing tool already does it. 237 tools ship in the catalogue. Search
before building:
tool.searchortools/list, and read the namespace list —fs,exec,net,proc,desktop,browser,ocr,image,git,code_run,document,memory. - A short composition does it. Two or three existing calls chained with
custom.create(see below). This is the common case and costs one call. - It needs real logic — parsing, protocol handling, state, retries. Build a
project in Code Workbench and publish it with
tool_foundry.publish. - It cannot be built yet — the primitive itself is missing. Record it with
capability_gap.recordso the gap is evidence rather than a memory.
Composing a capability: custom.create
Authors a NEW named tool at runtime. No arbitrary code: each hop dispatches through the normal tool chokepoint, so the risk policy and the agent HALT apply at every level. A composite inherits the MAX risk of everything it touches.
Single call — a named alias with a narrower interface:
{ "name": "read_config",
"description": "Read the bridge config file",
"input_schema": {"properties": {"path": {"type": "string"}}, "required": ["path"]},
"call": {"tool": "fs.read", "args": {"path": "{path}"}} }
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 · 168 lines · 0 tokens per session scan A 6a53dcc1a731
build-capability is a skill published in the GitHub repository IvanSkainet/arena-agent (6 stars, last pushed today), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,089 tokens. 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-31.
Other skills, from other repositories
site-audit
Use when user asks to audit a website, review all pages, check for broken links, capture full site state, or do a comprehensive product review.
kaboom
Use when user asks to check browser state, debug page errors, inspect network traffic, take screenshots, automate clicks or form fills, run accessibility or security audits, measure performance, generate tests, or record browser sessions. Trigger phrases: "check my browser", "debug this page", "take a screenshot"…
kaboom-connection-guard
Use when a tool call fails with "extension not connected", the daemon is unreachable, or browser telemetry stops arriving.
audit
Use when the user wants a full Kaboom quality audit of a web app or tracked site, with one polished report covering Functionality, UX Polish, Accessibility, Performance, Release Risk, and SEO.
api-validation
Use when user asks to check API responses, validate request/response contracts, compare API behavior against a spec, or detect schema drift.
debug-triage
Use when user reports a broken page, unexpected behavior, or error and needs fast root-cause identification across multiple signal sources.