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 Piebald-AI/claude-code-system-prompts. It costs 27 tokens per session (588 once invoked), scanned A, original, MIT.

A workflow for checking server and API changes by starting the server, sending requests with curl, and comparing status codes, headers, and response bodies with the expected result. curl is a command-line tool for making HTTP requests.

In plain words
What is it for?
Use it to verify changed routes, response headers, error cases, readiness, and other HTTP API behavior.
Why use it?
It turns a code change into observable evidence instead of relying only on the implementation or a claim that it works.

Skill for Claude CodeCodex

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

Good fit Use it to verify changed routes, response headers, error cases, readiness, and other HTTP API behavior.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/piebald-ai/claude-code-system-prompts/skill-verify-server-api-changes-example-for-verify
About the project

claude-code-system-prompts is a repository that records the system prompts, tool descriptions, agent prompts, and utility prompts used by Claude Code. It serves people who want to inspect how Claude Code structures its built-in agents and tools across releases. The catalogue instruction provides access to material documenting that workflow.

Piebald-AI/claude-code-system-prompts · 12,596 stars · on GitHub

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 Piebald-AI/claude-code-system-prompts --skill skill-verify-server-api-changes-example-for-verify
Clone the repo
git clone --depth 1 https://github.com/Piebald-AI/claude-code-system-prompts

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/piebald-ai/claude-code-system-prompts/skill-verify-server-api-changes-example-for-verify.svg)](https://agentmods.dev/skills/piebald-ai/claude-code-system-prompts/skill-verify-server-api-changes-example-for-verify)
Your own site
<a href="https://agentmods.dev/skills/piebald-ai/claude-code-system-prompts/skill-verify-server-api-changes-example-for-verify"><img src="https://agentmods.dev/badge/skills/piebald-ai/claude-code-system-prompts/skill-verify-server-api-changes-example-for-verify.svg" alt="Measured on agentmods" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 588 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.00027 $0.00588
Opus 5 $0.00014 $0.00294
Sonnet 5 $0.00005 $0.00118
Haiku 4.5 $0.00003 $0.00059

Measured 2d ago against content hash 003ce383a9f1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, 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 2d 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

Copies of this mod

1 near-identical copy found in the catalogue:

system-prompts/skill-verify-server-api-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. 2d ago First seen · 69 lines · 27 tokens per session scan A 003ce383a9f1

Subscribe to this mod's changes

Skill: Verify server/API changes (example for Verify skill) is a skill published in the GitHub repository Piebald-AI/claude-code-system-prompts (12,596 stars, last pushed yesterday), licensed MIT. It adds 27 tokens to every session and 588 once invoked, about $0.0001 per session on Opus 5. 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-09-05.

Related

Other skills, from other repositories

server-side-calls

Call tRPC procedures directly from server code using t.createCallerFactory() and router.createCaller(context) for integration testing, internal server logic, and custom API endpoints. Catch TRPCError and extract HTTP status with getHTTPStatusCodeFromError(). Error handling via onError option.

trpc/trpc · 61 tokens

mem0-test-integration

Verify a Mem0 integration produced by /mem0-integrate. Runs in the same workspace on the same branch (loose coupling) — installs dependencies, runs the repo's native test suite, then exercises a real end-to-end smoke flow against the user's API key. Produces a scorecard. TRIGGER when: user has just run /mem0-integrate…

mem0ai/mem0 · 207 tokens

prowler-test-api

Testing patterns for Prowler API: JSON:API, Celery tasks, RLS isolation, RBAC. Trigger: When writing tests for api/ (JSON:API requests/assertions, cross-tenant isolation, RBAC, Celery tasks, viewsets/serializers).

prowler-cloud/prowler · 62 tokens

python-sdk

Implement or modify Python SDK behavior under python/composio, including tools, toolkits, sessions, auth configs, connected accounts, client integration, and shared Python models. Use for Python core runtime/API work; pair with python-testing and cross-sdk-parity when TypeScript must match.

ComposioHQ/composio · 60 tokens

convex-test

Generate convex-test tests for the app's Convex functions.

openclaw/clawhub · 16 tokens

voiden

Create and edit Voiden .void files for API testing. Covers the .void file format and all enabled extension block types.

VoidenHQ/voiden · 28 tokens