ConnectOnion is an open-source, template-first toolkit for building, debugging, deploying, and operating AI agents. Developers use its command-line tools and Python runtime to create agents, add tools, connect services, deploy them, and make them callable by other agents, while the catalogue entries are related agents, skills, and instructions.
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 openonion/connectonion --skill skill-verify-serverapi-changes-example-for-verifygit clone --depth 1 https://github.com/openonion/connectonionWrote 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/openonion/connectonion/skill-verify-serverapi-changes-example-for-verify)<a href="https://agentmods.dev/skills/openonion/connectonion/skill-verify-serverapi-changes-example-for-verify"><img src="https://agentmods.dev/badge/skills/openonion/connectonion/skill-verify-serverapi-changes-example-for-verify.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.1 | $0.00028 | $0.00587 |
| Opus 5 | $0.00014 | $0.00293 |
| Sonnet 5 | $0.00006 | $0.00117 |
| Haiku 4.5 | $0.00003 | $0.00059 |
Grade A, and why
Skill: Verify server/API changes (example for Verify skill) 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.
The handle is `curl` (or equivalent). The evidence is the response. This is a copy
98% identical to Skill: Verify server/API changes (example for Verify skill) — 26 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
What it actually says
Verifying a server/API change
The handle is curl (or equivalent). The evidence is the response.
Pattern
- Start the server (background, with a readiness poll — see below)
curlthe route the diff touches, with inputs that hit the changed branch- Capture the full response (status + headers + body)
- Compare to expected
Lifecycle
If there's a run-skill it handles this. If not:
<start-command> &> /tmp/server.log &
SERVER_PID=$!
for i in {1..30}; do curl -sf localhost:PORT/health >/dev/null && break; sleep 1; done
# ... your curls ...
kill $SERVER_PID
No readiness endpoint? Poll the route you're about to test until it stops returning connection-refused, then add a beat.
Worked example
Diff: adds a Retry-After header to 429 responses in rateLimit.ts.
Claim (PR body): "clients can now back off correctly."
Inference: hitting the rate limit should now return Retry-After: <n>
in the response headers. It didn't before.
Plan:
- Start server
- Hit the rate-limited endpoint enough times to trigger 429
- Check the 429 response has
Retry-Afterheader - Check the value is a positive integer
Execute:
# trigger the limit — 10 fast requests, limit is 5/sec per the diff
for i in {1..10}; do curl -s -o /dev/null -w "%{http_code}\n" localhost:3000/api/thing; done
# → 200 200 200 200 200 429 429 429 429 429
# capture the 429 headers
curl -si localhost:3000/api/thing | head -20
# → HTTP/1.1 429 Too Many Requests
# → Retry-After: 12
# → ...
Verdict: PASS — Retry-After: 12 present, positive integer.
What FAIL looks like
- Header absent → the diff didn't take effect, or you're not actually hitting the 429 path (check the status code first)
- Header present but value is
NaN/undefined/ negative → the logic is wrong - You got 200s all the way through → you never triggered the changed path. Tighten the request burst or check the rate limit config.
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 · 69 lines · 28 tokens per session scan A 2459a3d3ceb0
Skill: Verify server/API changes (example for Verify skill) is a skill published in the GitHub repository openonion/connectonion (1,480 stars, last pushed today), licensed Apache-2.0. It adds 28 tokens to every session and 587 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 98% identical to Skill: Verify server/API changes (example for Verify skill), differing in 26 lines, and is treated as a copy.
Other skills, from other repositories
agentfield
Design and ship a multi-agent system on AgentField. Use when the user asks to build, scaffold, design, or run an agent, reasoner network, multi-agent backend, or 'an agent that does X' — whenever the work would otherwise be a single LLM call or a flat LangChain/CrewAI/AutoGen chain. The skill produces composite…
benchmark-design
Design and calibrate a multi-Case capability Benchmark and establish a traceable Formal Baseline.
agent-optimization
Improve an Agent State through versioned scores and score-linked Traces from a frozen Benchmark.
agent-evaluation
Run one specified Test Agent on one specified Benchmark Case exactly once, privately score that execution, and return one protocol result.
install-verification
Use when verifying that a generated agent package can be installed, discovered by runtimes, and checked without private dependencies.
vllm
Deploy and serve LLMs with vLLM behind an OpenAI-compatible endpoint, with tool calling enabled for agent workloads.