egypt-payment-guardian

egypt-payment-guardian is a skill for Claude Code, Codex from ArabAgentSkills/arab-payments-skill-atlas. It costs 68 tokens per session (1,254 once invoked), scanned A, original, MIT.

A review guide for building payment flows in Egypt, including card payments, payment callbacks, refunds, and buy-now-pay-later services. It covers providers such as Paymob, FawryPay, valU, and Souhoola.

In plain words
What is it for?
Use it when integrating or reviewing Egypt payment services. It helps check signatures, webhooks, currencies, pending payments, refunds, duplicate events, and server-side fulfilment.
Why use it?
A redirect or frontend callback may not prove that a payment succeeded, while duplicate or delayed notifications can cause incorrect order handling. This guide helps verify payment status and protect secret keys.

Skill for Claude CodeCodex

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

Good fit Use it when integrating or reviewing Egypt payment services. It helps check signatures, webhooks, currencies, pending payments, refunds, duplicate events, and server-side fulfilment.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/arabagentskills/arab-payments-skill-atlas/egypt-payment-guardian
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 ArabAgentSkills/arab-payments-skill-atlas --skill egypt-payment-guardian
Clone the repo
git clone --depth 1 https://github.com/ArabAgentSkills/arab-payments-skill-atlas

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 egypt-payment-guardian

README.md
[![agentmods](https://agentmods.dev/badge/skills/arabagentskills/arab-payments-skill-atlas/egypt-payment-guardian/github.svg)](https://agentmods.dev/skills/arabagentskills/arab-payments-skill-atlas/egypt-payment-guardian)
Your own site
<a href="https://agentmods.dev/skills/arabagentskills/arab-payments-skill-atlas/egypt-payment-guardian"><img src="https://agentmods.dev/badge/skills/arabagentskills/arab-payments-skill-atlas/egypt-payment-guardian/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 egypt-payment-guardian

Your own site · 80×15
<a href="https://agentmods.dev/skills/arabagentskills/arab-payments-skill-atlas/egypt-payment-guardian"><img src="https://agentmods.dev/badge/skills/arabagentskills/arab-payments-skill-atlas/egypt-payment-guardian.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 68 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,254 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.00068 $0.01254
Opus 5 $0.00034 $0.00627
Sonnet 5 $0.00014 $0.00251
Haiku 4.5 $0.00007 $0.00125

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

Security

Grade A, and why

egypt-payment-guardian 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 12d 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.

skills/egypt-payment-guardian/SKILL.md · 104 lines

How it starts

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

Egypt Payment Guardian

Mission

Use this skill for Egypt payment integrations where provider redirects, callbacks, signatures, currency handling, and duplicate events can break production. Treat the provider reference files as source-linked field notes, not a replacement for official docs.

Decision Path

Always follow this order:

  1. Identify the provider, integration path, environment, and payment method.
  2. Load the provider reference and any shared pattern that matches the risk.
  3. Confirm the server boundary and list secret env var names only.
  4. Verify the provider authenticity signal: HMAC, signature, SecureHash, webhook signature, or documented server-side inquiry.
  5. Compare local order reference, provider reference, amount, currency, and status fields.
  6. Store the provider event/reference idempotently before fulfillment.
  7. Fulfill only from verified server-side state.
  8. Add tests or manual QA for duplicate events, invalid signatures, delayed callbacks, and stale state.

Non-Negotiables

  • Treat all money movement as high risk.
  • Never fulfill from a browser redirect, hosted checkout result, SDK callback, or frontend-only status alone.
  • Verify provider signatures, HMACs, or secure hashes exactly as documented.
  • Keep merchant credentials, HMAC secrets, secret keys, and service role keys server-side only.
  • Compare provider amount, currency, order reference, and transaction reference before creating paid state.
  • Make callbacks, webhooks, retries, inquiry responses, and page refreshes idempotent.
  • Store provider event/reference uniqueness before activating subscriptions, enrollments, bookings, credits, or invoices.
  • Log safe identifiers only: order id, provider reference, status, timestamp. Never log tokens, card data, signatures, HMAC secrets, or raw credentials.

Required Audit

Before implementing or reviewing payment code, identify:

  1. Provider and integration path.
  2. Sandbox/test vs live environment.
  3. Amount unit and currency rules.
  4. Server endpoint receiving callbacks or webhooks.
  5. Signature/HMAC/SecureHash method and raw-body requirements.
  6. Unique payment, order, event, and provider reference fields.
  7. Status mapping for pending, paid, failed, cancelled, expired, refunded, voided, and duplicate.
  8. Ordering behavior when callback/webhook arrives before or after client redirect.
  9. What happens on duplicate callback, retry, refresh, refund, void, missing user, or missing order.
  10. Env var names by name only, never values.

Read the full file on GitHub · 104 lines

Files

What ships with it

27 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 104 lines · 68 tokens per session scan A bc6cdcd5d4e4

Subscribe to this mod's changes

egypt-payment-guardian is a skill published in the GitHub repository ArabAgentSkills/arab-payments-skill-atlas (4 stars, last pushed 5d ago), licensed MIT. It adds 68 tokens to every session and 1,254 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-08-31.

Related

Other skills, from other repositories

stock-analyzer

Provides comprehensive technical analysis for stocks and ETFs using RSI, MACD, Bollinger Bands, and other indicators. Activates when user requests stock analysis, technical indicators, trading signals, or market data for specific ticker symbols.

FrancyJGLisboa/agent-skill-creator · 48 tokens

ai-slop

Operational rubric that turns "don't make AI slop" into observable properties, severity levels, evidence requirements, and repair actions for interface design. Use as the reference rubric when building or reviewing marketing sites, product interfaces, dashboards, portfolios, or e-commerce pages, especially alongside…

waybarrios/opencode-power-pack · 61 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