payment-gateways-stripe-adyen-integration

payment-gateways-stripe-adyen-integration is a skill for Claude Code, Codex from hamzabellouch/agent-skills. It costs 53 tokens per session (3,045 once invoked), scanned A, original, MIT.

A guide to building secure payment systems with Stripe and Adyen, two online payment services. It covers card-token handling, payment events, multiple currencies, retries, and matching payments with accounting records.

In plain words
What is it for?
Use it when connecting an application to Stripe or Adyen and handling payments, webhooks, refunds, retries, or payment reconciliation.
Why use it?
It helps avoid exposing card data, processing the same payment twice, losing payment updates, or leaving payment records out of balance.

Skill for Claude CodeCodex

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

Good fit Use it when connecting an application to Stripe or Adyen and handling payments, webhooks, refunds, retries, or payment reconciliation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hamzabellouch/agent-skills/payment-gateways-stripe-adyen-integration
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 hamzabellouch/agent-skills --skill payment-gateways-stripe-adyen-integration
Clone the repo
git clone --depth 1 https://github.com/hamzabellouch/agent-skills

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 payment-gateways-stripe-adyen-integration

README.md
[![agentmods](https://agentmods.dev/badge/skills/hamzabellouch/agent-skills/payment-gateways-stripe-adyen-integration/github.svg)](https://agentmods.dev/skills/hamzabellouch/agent-skills/payment-gateways-stripe-adyen-integration)
Your own site
<a href="https://agentmods.dev/skills/hamzabellouch/agent-skills/payment-gateways-stripe-adyen-integration"><img src="https://agentmods.dev/badge/skills/hamzabellouch/agent-skills/payment-gateways-stripe-adyen-integration/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 payment-gateways-stripe-adyen-integration

Your own site · 80×15
<a href="https://agentmods.dev/skills/hamzabellouch/agent-skills/payment-gateways-stripe-adyen-integration"><img src="https://agentmods.dev/badge/skills/hamzabellouch/agent-skills/payment-gateways-stripe-adyen-integration.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,045 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.00053 $0.03045
Opus 5 $0.00026 $0.01522
Sonnet 5 $0.00011 $0.00609
Haiku 4.5 $0.00005 $0.00304

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

Security

Grade A, and why

payment-gateways-stripe-adyen-integration 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.

Financial and Fintech Engineering/payment-gateways-stripe-adyen-integration/SKILL.md · 317 lines

How it starts

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

Payment Gateways Integration Architecture (Stripe & Adyen)

This skill package provides enterprise-grade patterns, architectural principles, PCI-DSS v4.0 compliance guidelines, and production code implementations for orchestrating payment processing across Stripe and Adyen.


1. Core Architectural & Compliance Standards

PCI-DSS v4.0 Compliance & Tokenization

  • Out-of-Scope Architecture (SAQ A / SAQ A-EP): Never ingest, process, or store Raw Primary Account Numbers (PAN), Card Verification Values (CVV/CVC), or PINs on your infrastructure. Use client-side SDKs (Stripe Elements / Adyen Web Drop-in) to tokenization endpoints directly owned by payment service providers (PSPs).
  • Network & Transport Layer Security: All API endpoints and client SDK communications must enforce TLS 1.3 with strong cipher suites (e.g., TLS_AES_256_GCM_SHA384).
  • Data Sanitization & Zero Logging: Redact all sensitive fields from application logs, trace contexts, and error payloads. Never log header signatures, API tokens, raw webhook payloads with PII, or tokens susceptible to account takeover.

Webhook Idempotency & Replay Protection

  • Idempotency Keying: Webhook events must be processed exactly once using distributed locking (e.g., Redis SET key value NX PX) keyed by the unique Event ID (event.id for Stripe, eventCode + pspReference for Adyen).
  • Time-Window & Signature Verification: Reject webhooks missing cryptographic HMAC signatures or with timestamps older than 300 seconds to prevent replay attacks.
  • Asynchronous Execution: Webhook HTTP handlers must validate signatures, enqueue the event into an isolated message queue (e.g., Kafka / RabbitMQ), and return an immediate HTTP 200 OK within 500ms to avoid PSP retry loops.

Reconciliation & Ledger Architecture

  • Double-Entry Bookkeeping: Model payments as state transitions across double-entry ledger accounts (Asset: PSP Clearing, Revenue, Expense: Gateway Fees, Liability: Customer Balance).
  • State Machine Integrity: Enforce strict status transitions (AUTHORIZED -> CAPTURED -> SETTLED / REFUNDED / DISPUTED).

Read the full file on GitHub · 317 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 · 317 lines · 53 tokens per session scan A fb748eb16eae

Subscribe to this mod's changes

payment-gateways-stripe-adyen-integration is a skill published in the GitHub repository hamzabellouch/agent-skills (4 stars, last pushed 1mo ago), licensed MIT. It adds 53 tokens to every session and 3,045 once invoked, about $0.0003 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-09-03.

Related

Other skills, from other repositories

Braintree Automation

Braintree Automation: manage payment processing via Stripe-compatible tools for customers, subscriptions, payment methods, and transactions.

ComposioHQ/awesome-claude-skills · 25 tokens

saas-billing

Implement and audit SaaS billing systems, subscription state machines, secure webhooks, and local database synchronization / Implementasi dan audit sistem billing SaaS, state machine langganan, webhook aman, dan sinkronisasi database lokal.

roedyrustam/vibes-plug · 51 tokens

payment-gateway-expert

Expert guide for integrating payment gateways (Stripe, PayPal, Xendit, Midtrans, DOKU) and secure webhooks into SaaS platforms / Panduan ahli integrasi payment gateway dan webhook aman.

roedyrustam/vibes-plug · 49 tokens

doku-mcp-server

Expert guide for DOKU Model Context Protocol (MCP) Server integration. Enables AI Agentic Commerce with tools for payment links, Virtual Accounts, QRIS, transaction status checks, and client configuration (Claude Desktop, Cursor, AGY) / Panduan ahli DOKU MCP Server untuk AI Agentic Commerce.

roedyrustam/vibes-plug · 70 tokens

tray-pagamentos

API de informações de pagamento da Tray (recurso payments). Cobre listar, consultar, criar, atualizar e excluir registros de pagamento (CRUD em /payments), além de consultar as opções de pagamento ativas da loja (/payments/options) e as configurações globais de pagamento (/payments/settings). Total de 7 endpoints.…

tray-tecnologia/tray-api-ai-plugin · 176 tokens

bookkeeping-accounting-clerk

Use when a task needs the judgment of a Bookkeeping, Accounting, and Auditing Clerk — reconciling a bank or credit card account, resolving an AP three-way-match discrepancy before payment, coding an expense to the correct account and department, tracing a general ledger discrepancy to root cause, or running a…

wonsukchoi/domain-experts · 73 tokens