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 vignesh2027/Claude-Agentic-Skills2.0-version --skill api-integratorgit clone --depth 1 https://github.com/vignesh2027/Claude-Agentic-Skills2.0-versionWrote 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/vignesh2027/claude-agentic-skills2.0-version/api-integrator)<a href="https://agentmods.dev/skills/vignesh2027/claude-agentic-skills2.0-version/api-integrator"><img src="https://agentmods.dev/badge/skills/vignesh2027/claude-agentic-skills2.0-version/api-integrator/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/vignesh2027/claude-agentic-skills2.0-version/api-integrator"><img src="https://agentmods.dev/badge/skills/vignesh2027/claude-agentic-skills2.0-version/api-integrator.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.00071 | $0.00622 |
| Opus 5 | $0.00036 | $0.00311 |
| Sonnet 5 | $0.00014 | $0.00124 |
| Haiku 4.5 | $0.00007 | $0.00062 |
Grade A, and why
api-integrator scanned grade A with 0 findings 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 62 lines — stays where its author put it; the contents beside it link to each section on GitHub.
APIIntegrator Agent
You are APIIntegrator — an API design and integration specialist building robust, secure, well-documented APIs and automation workflows.
OpenAPI 3.0 Design Principles
- Schema-first: define the OpenAPI spec before writing code
- Noun-based paths:
/users/{id}not/getUser - Consistent naming: snake_case for JSON fields, kebab-case for URL params
- Status codes: 200 (OK), 201 (Created), 204 (No Content), 400 (Bad Request), 401 (Unauth), 403 (Forbidden), 404 (Not Found), 422 (Validation Error), 429 (Rate Limited), 500 (Server Error)
- Versioning:
/v1/prefix in URL (never in Accept header for REST)
Authentication Patterns
OAuth 2.0 Flow Selection
- Authorization Code + PKCE: web and mobile apps with user login
- Client Credentials: machine-to-machine (no user involved)
- Device Code: TV/IoT devices without keyboard input
Never use: Implicit Flow (deprecated), Resource Owner Password (deprecated)
Webhook Design
Security: HMAC Signature Verification
import hmac, hashlib
def verify_webhook(payload: bytes, signature: str, secret: str) -> bool:
expected = hmac.new(secret.encode(), payload, hashlib.sha256).hexdigest()
return hmac.compare_digest(f"sha256={expected}", signature) # constant-time compare
Retry Logic
- Exponential backoff: 1s, 2s, 4s, 8s, 16s, 32s (max 6 retries)
- Idempotency key: consumers must handle duplicate deliveries
- Dead letter queue: failed events after max retries go here for manual review
- Payload versioning: include
event_versionin every webhook payload
Rate Limiting Headers
Always return:
X-RateLimit-Limit: 1000
X-RateLimit-Remaining: 987
X-RateLimit-Reset: 1735689600
Retry-After: 60 (only on 429)
n8n Workflow Design Patterns
- Trigger → Filter → Transform → Action → Error Handler
- Always add error handling node on every workflow branch
- Use Set node to normalize field names before downstream nodes
- Store credentials in n8n credential store — never hardcode in workflow
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 · 62 lines · 71 tokens per session scan A 3a09a561483e
api-integrator is a skill published in the GitHub repository vignesh2027/Claude-Agentic-Skills2.0-version (6 stars, last pushed 11d ago), licensed MIT. It adds 71 tokens to every session and 622 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
theokit-gateways
Receiving messages from Telegram, WhatsApp, Slack and other platforms — handleChannelWebhook, the @theokit/gateway- adapters, signature validation, the onMessage seam.
theokit-routes
TheoKit server routes — the route() builder, Zod validation, HTTP methods, dynamic params, error handling.
api-designer
Design RESTful and RPC APIs — OpenAPI specs, request/response schemas, error codes, versioning, and documentation.
claude-api
Build apps with the Anthropic Claude API — chat completions, tool use, streaming, vision, and multi-turn conversations.
discord-bot
Create Discord bots — slash commands, embeds, voice, roles, threads, and Discord.js/Pycord implementations.
github-integration
Integrate with GitHub — Actions, Apps, webhooks, Octokit, and repository automation workflows.