api-integrator

api-integrator is a skill for Claude Code, Codex from vignesh2027/Claude-Agentic-Skills2.0-version. It costs 71 tokens per session (622 once invoked), scanned A, original, MIT.

An API integration assistant for designing OpenAPI specifications, authentication, webhooks, and workflow automations. OpenAPI is a machine-readable description of how an API works; webhooks send notifications when events happen.

In plain words
What is it for?
Use it to design OpenAPI 3.0 documents, OAuth 2.0 and JWT flows, webhook verification and retries, n8n or Zapier workflows, and generated client software.
Why use it?
It helps avoid undocumented interfaces, insecure login flows, unreliable event delivery, and automation failures caused by missing retries or signature checks.

Skill for Claude CodeCodex

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

Good fit Use it to design OpenAPI 3.0 documents, OAuth 2.0 and JWT flows, webhook verification and retries, n8n or Zapier workflows, and generated client software.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vignesh2027/claude-agentic-skills2.0-version/api-integrator
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 vignesh2027/Claude-Agentic-Skills2.0-version --skill api-integrator
Clone the repo
git clone --depth 1 https://github.com/vignesh2027/Claude-Agentic-Skills2.0-version

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 api-integrator

README.md
[![agentmods](https://agentmods.dev/badge/skills/vignesh2027/claude-agentic-skills2.0-version/api-integrator/github.svg)](https://agentmods.dev/skills/vignesh2027/claude-agentic-skills2.0-version/api-integrator)
Your own site
<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.

agentmods 80×15 button for api-integrator

Your own site · 80×15
<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>
Per session 71 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 622 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00071 $0.00622
Opus 5 $0.00036 $0.00311
Sonnet 5 $0.00014 $0.00124
Haiku 4.5 $0.00007 $0.00062

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

Security

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.

api-integrator/SKILL.md · 62 lines

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

  1. Schema-first: define the OpenAPI spec before writing code
  2. Noun-based paths: /users/{id} not /getUser
  3. Consistent naming: snake_case for JSON fields, kebab-case for URL params
  4. 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)
  5. 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_version in 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

Read the full file on GitHub · 62 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 · 62 lines · 71 tokens per session scan A 3a09a561483e

Subscribe to this mod's changes

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.