Skill: Verify server/API changes (example for Verify skill)

Skill: Verify server/API changes (example for Verify skill) is a skill for Claude Code, Codex from openonion/connectonion. It costs 28 tokens per session (587 once invoked), scanned A, a copy of Skill: Verify server/API changes (example for Verify skill), Apache-2.0.

A verification workflow for server and API changes using a running service and requests made with curl.

In plain words
What is it for?
Use it to start a server, wait until it is ready, call the affected endpoint with suitable inputs, and verify the returned behavior.
Why use it?
It checks the changed route through its real response, including status, headers, and body, instead of relying only on code inspection or tests.

Skill for Claude CodeCodex

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

Good fit Use it to start a server, wait until it is ready, call the affected endpoint with suitable inputs, and verify the returned behavior.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/openonion/connectonion/skill-verify-serverapi-changes-example-for-verify
About the project

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.

openonion/connectonion · 1,480 stars · on GitHub · docs.connectonion.com

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 openonion/connectonion --skill skill-verify-serverapi-changes-example-for-verify
Clone the repo
git clone --depth 1 https://github.com/openonion/connectonion

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 Skill: Verify server/API changes (example for Verify skill)

README.md
[![agentmods](https://agentmods.dev/badge/skills/openonion/connectonion/skill-verify-serverapi-changes-example-for-verify.svg)](https://agentmods.dev/skills/openonion/connectonion/skill-verify-serverapi-changes-example-for-verify)
Your own site
<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>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 587 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 98% copy Near-identical to another mod 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.00028 $0.00587
Opus 5 $0.00014 $0.00293
Sonnet 5 $0.00006 $0.00117
Haiku 4.5 $0.00003 $0.00059

Measured 4d ago against content hash 2459a3d3ceb0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

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.
Origin

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.

connectonion/useful_prompts/cc_prompt/prompts/skills/skill-verify-serverapi-changes-example-for-verify-skill.md · 69 lines

What it actually says

Verifying a server/API change

The handle is curl (or equivalent). The evidence is the response.

Pattern

  1. Start the server (background, with a readiness poll — see below)
  2. curl the route the diff touches, with inputs that hit the changed branch
  3. Capture the full response (status + headers + body)
  4. 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:

  1. Start server
  2. Hit the rate-limited endpoint enough times to trigger 429
  3. Check the 429 response has Retry-After header
  4. 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.
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. 4d ago First seen · 69 lines · 28 tokens per session scan A 2459a3d3ceb0

Subscribe to this mod's changes

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.