integration-specialist

integration-specialist is an agent for Claude Code from Hainrixz/agente-pagokit. It costs 134 tokens per session (2,701 once invoked), scanned C, original, MIT.

An implementation agent that adds a payment-provider connection to a software project after a payment adviser has chosen the design. It supports checkout, payment notifications, and database changes based on a supplied project specification.

In plain words
What is it for?
Use it to add one-time or recurring payments with providers such as Stripe, Mercado Pago, Wompi, or Lemon Squeezy, including signed webhook handling and database migrations.
Why use it?
It turns a payment plan into project files and setup steps, while recording what was changed and what still needs checking before launch.

Agent for Claude Code

Written for Claude Code: PreToolUse hook event. Also seen: mentions subagents; positional $N argument.

Part of the pagokit plugin — 8 skills, 8 commands, 1 agent, 5 hooks shipped together

Good fit Use it to add one-time or recurring payments with providers such as Stripe, Mercado Pago, Wompi, or Lemon Squeezy, including signed webhook handling and database migrations.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/hainrixz/agente-pagokit/integration-specialist
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.

Clone the repo
git clone --depth 1 https://github.com/Hainrixz/agente-pagokit

Made for: Claude Code.

Or install pagokit, the plugin that ships this one along with the rest of its 8 skills, 8 commands, 1 agent, 5 hooks.

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 integration-specialist

README.md
[![agentmods](https://agentmods.dev/badge/agents/hainrixz/agente-pagokit/integration-specialist/github.svg)](https://agentmods.dev/agents/hainrixz/agente-pagokit/integration-specialist)
Your own site
<a href="https://agentmods.dev/agents/hainrixz/agente-pagokit/integration-specialist"><img src="https://agentmods.dev/badge/agents/hainrixz/agente-pagokit/integration-specialist/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 integration-specialist

Your own site · 80×15
<a href="https://agentmods.dev/agents/hainrixz/agente-pagokit/integration-specialist"><img src="https://agentmods.dev/badge/agents/hainrixz/agente-pagokit/integration-specialist.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 134 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,701 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 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.00134 $0.02701
Opus 5 $0.00067 $0.01350
Sonnet 5 $0.00027 $0.00540
Haiku 4.5 $0.00013 $0.00270

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

Security

Grade C, and why

integration-specialist scanned grade C 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 8d 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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

- Do NOT run destructive Bash commands (`rm -rf`, `git reset --hard`, `--force` anything) without asking.
agents/integration-specialist.md · 258 lines

How it starts

The opening of the file, as written. The whole thing — 258 lines — stays where its author put it; the contents beside it link to each section on GitHub.

integration-specialist

You are the implementation arm of PagoKit. You receive a complete spec from payment-advisor and you make the integration happen in the user's project. You write files, install SDKs, and produce two markdown artifacts (audit trail + production checklist) so the user can verify what you did and ship safely.

Always-on system rules (cite SECURITY_RULES by number on every file you generate)

  • Rule 8: All env files use test-key prefixes only. Never write sk_live_, prv_prod_, APP_USR-, or lmnsq_live_ to .env.example.
  • Rule 11: Collect minimum PII; add a regional-regulation note to the final report.
  • Rule 12: Never generate code that stores CVV, full PAN, or magnetic-stripe track data. If the user asks for this, refuse and cite Rule 12.

The other rules (1–7, 9, 10) are partially enforced by the validator hooks but you should still self-enforce them — failing a hook costs a turn round-trip.

Inputs you receive

From payment-advisor, a fenced JSON block like:

{
  "provider": "<any id in the catalog>",
  "stack": "...",
  "deploy_target": "...",
  "orm": "...",
  "billing_mode": "one_time|subscription",
  "frontend_style": "hosted|embedded|widget",
  "required_methods": ["card", ...],
  "language": "es|en|...",
  "use_cases_detected": [...],
  "example_transaction_amount": 20,
  "example_currency": "USD"
}

If any field is missing, ask payment-advisor (not the user). Do not guess.

Workflow

1. Pre-flight checks

Before writing anything:

  1. Verify .gitignore covers .env (PreToolUse hook will block writes otherwise, but check upfront for a better UX).
    • If not, edit .gitignore to add .env, .env.local, .env.*.local.
  2. Glob for existing webhook routes in the project. If you find **/webhook*, **/api/webhook/**, **/notifications*, **/ipn*, **/events*.{ts,js,py,php,rb}:
    • Inspect — is it from another integration (Clerk, Inngest, Resend)?
    • You will use /api/webhook/<provider>/ namespacing regardless (PagoKit default from Phase 1). Note the existing routes in PAGOKIT_INTEGRATION.md so the user knows about them.
  3. Confirm SDK is not already installed with a conflicting version. If package.json already declares a different major version of the provider's SDK, ASK the user before bumping.

Read the full file on GitHub · 258 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. 8d ago Changed f345483a637f
  2. 12d ago First seen · 258 lines · 134 tokens per session scan C 505201c23ee9

Subscribe to this mod's changes

integration-specialist is an agent published in the GitHub repository Hainrixz/agente-pagokit (50 stars, last pushed 12d ago), licensed MIT. It adds 134 tokens to every session and 2,701 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other agents, from other repositories

wordpress-master

Use this agent when you need to architect, optimize, or troubleshoot WordPress implementations ranging from custom theme/plugin development to enterprise-scale multisite platforms. Invoke this agent for performance optimization, security hardening, headless WordPress APIs, WooCommerce solutions, and scaling WordPress…

alexmmatos/essentials-claude-code · 63 tokens

webapi-integration

Use this agent when the user needs to integrate Power Pages Web API for a specific Dataverse table into their frontend code. Trigger examples: "integrate web api for products table", "add api calls for orders", "connect my site to the blog posts table", "implement crud for categories", "set up web api client", "create…

microsoft/power-platform-skills · 182 tokens

otp-advisor

OTP patterns specialist - GenServer, Supervisor, Agent, Task, Registry, ETS. Use proactively when deciding if you need OTP abstractions or simpler solutions.

oliver-kriska/claude-elixir-phoenix · 35 tokens

do-setup-assistant

Autonomous Durable Objects project scaffolder. Analyzes user requirements and automatically sets up complete DO project with proper configuration, code, and tests.

secondsky/claude-skills · 35 tokens

unfolding-api-designer

API Designer role in the Unfolding Specs process. Acts as the API consumer's advocate — challenges the Feature spec from a consumer usability perspective, collaborates with the PO to refine assumptions, and designs API contracts (resource structure, endpoints, request/response shapes, error conventions). Commissioned…

t1/tdder · 80 tokens

php-expert

Use when: composer.json present WITHOUT an artisan file. Do NOT use for: Laravel apps (composer.json + artisan → laravel-expert), frontend (framework experts).

fusengine/agents · 38 tokens