build-capability

build-capability is a skill for Claude Code, Codex from IvanSkainet/arena-agent. It costs 0 tokens per session (2,089 once invoked), scanned A, original, MIT.

A guide for creating a new named capability by combining general tools such as file access, processes, HTTP, screen control, and code execution.

In plain words
What is it for?
Use it to search existing tools, decide whether a short composition is enough, and design reusable capabilities from available building blocks.
Why use it?
It helps fill an ability gap without relying on a tool built for only one application or operating system.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to search existing tools, decide whether a short composition is enough, and design reusable capabilities from available building blocks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ivanskainet/arena-agent/build-capability
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.

Any agent
npx skills add IvanSkainet/arena-agent --skill build-capability
Clone the repo
git clone --depth 1 https://github.com/IvanSkainet/arena-agent

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 build-capability

README.md
[![agentmods](https://agentmods.dev/badge/skills/ivanskainet/arena-agent/build-capability/github.svg)](https://agentmods.dev/skills/ivanskainet/arena-agent/build-capability)
Your own site
<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.

agentmods 80×15 button for build-capability

Your own site · 80×15
<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>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,089 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00000 $0.02089
Opus 5 $0.00000 $0.01045
Sonnet 5 $0.00000 $0.00418
Haiku 4.5 $0.00000 $0.00209

Measured 9d ago against content hash 6a53dcc1a731, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

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`,
skills/core/build-capability/SKILL.md · 168 lines

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.

  1. An existing tool already does it. 237 tools ship in the catalogue. Search before building: tool.search or tools/list, and read the namespace list — fs, exec, net, proc, desktop, browser, ocr, image, git, code_run, document, memory.
  2. 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.
  3. It needs real logic — parsing, protocol handling, state, retries. Build a project in Code Workbench and publish it with tool_foundry.publish.
  4. It cannot be built yet — the primitive itself is missing. Record it with capability_gap.record so 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}"}} }

Read the full file on GitHub · 168 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. 9d ago First seen · 168 lines · 0 tokens per session scan A 6a53dcc1a731

Subscribe to this mod's changes

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.

Related

Other skills, from other repositories