israeli-payment-orchestrator

israeli-payment-orchestrator is a skill for Claude Code, Codex from squadcodercom/squadcoder. It costs 197 tokens per session (3,189 once invoked), scanned A, original, MIT.

A workflow for connecting Israeli businesses to several payment gateways, which are services that process card and other online payments. It covers routing payments between providers, fallback choices, and monthly instalments called tashlumim.

In plain words
What is it for?
Planning integrations with Cardcom, Tranzila, PayMe, Meshulam, iCredit, or Pelecard, including payment routing, instalments, recurring charges, and payment-method support.
Why use it?
It helps teams compare gateway requirements instead of building each integration decision from scratch. It also highlights differences in recurring billing, currencies, hosted payment pages, and local payment methods.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/squadcodercom/squadcoder/israeli-payment-orchestrator
Any agent
npx skills add squadcodercom/squadcoder --skill israeli-payment-orchestrator
Clone the repo
git clone --depth 1 https://github.com/squadcodercom/squadcoder

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge for your README with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them.

agentmods badge for israeli-payment-orchestrator

README.md
[![agentmods](https://agentmods.dev/badge/skills/squadcodercom/squadcoder/israeli-payment-orchestrator.svg)](https://agentmods.dev/skills/squadcodercom/squadcoder/israeli-payment-orchestrator)
Per session 197 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,189 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00197 $0.03189
Opus 5 $0.00098 $0.01595
Sonnet 5 $0.00039 $0.00638
Haiku 4.5 $0.00020 $0.00319

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

Security

Grade A, and why

israeli-payment-orchestrator 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 3d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/compare_gateways.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

.squadcoder/skills/israeli-payment-orchestrator/SKILL.md · 225 lines

How it starts

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

Israeli Payment Orchestrator

Instructions

Step 1: Assess Payment Requirements

Ask the user about their payment needs:

Requirement Hebrew Description Impact on Gateway Choice
Installments (tashlumim) תשלומים Split payment into monthly installments Not all gateways support all installment types
Recurring billing חיוב חוזר Subscription / standing order Requires token storage and Shva approval
Multi-currency רב-מטבעי Accept NIS + foreign currencies Limited gateway support for dual currency
Iframe / redirect דף סליקה Hosted payment page vs embedded Affects PCI scope
Bit / Apple Pay ביט / אפל פיי Alternative payment methods Gateway-specific integrations
High volume נפח גבוה Over 1,000 transactions/day Need SLA guarantees and fallback

Step 2: Compare Gateways

Use scripts/compare_gateways.py to generate a comparison matrix, or reference the table below:

Gateway API Style Installments Recurring Hosted Page Bit Support Typical Fee
Cardcom REST JSON Full (regular, credit, club) Yes Yes (iframe) No 0.6-0.8%
Tranzila REST/Form POST Regular, credit Yes Yes (redirect) No 0.5-0.7%
PayMe REST JSON Regular, credit Yes Yes (iframe) Yes 0.7-1.0%
Meshulam multipart/form-data Regular Yes Yes (iframe + redirect) Yes 0.6-0.9%
iCredit REST JSON Regular, credit Yes Yes (redirect) No 0.5-0.8%
Pelecard REST JSON Regular, credit, club Yes Yes (iframe) No 0.5-0.7%

Fee notes: Rates are indicative. Actual rates depend on business volume, industry, and negotiation.

Step 3: Design the Orchestration Layer

Build a unified payment abstraction:

# Unified payment interface pattern
class PaymentRequest:
    amount: float            # סכום - in agorot (NIS cents)
    currency: str            # מטבע - "ILS" default
    installments: int        # תשלומים - 1 = regular, 2-36 = installments
    installment_type: str    # סוג תשלומים - "regular", "credit", "club"
    card_token: str          # טוקן כרטיס - for recurring
    description: str         # תיאור עסקה
    customer_id: str         # מזהה לקוח
    idempotency_key: str     # מפתח אידמפוטנטי - prevent duplicates

class PaymentResult:
    success: bool
    gateway_used: str        # שער תשלום שנבחר
    transaction_id: str      # מזהה עסקה
    approval_number: str     # מספר אישור
    shva_reference: str      # מספר שב"א
    installment_details: dict

Read the full file on GitHub · 225 lines

Files

What ships with it

7 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. 3d ago First seen · 225 lines · 197 tokens per session scan A 9fc09e1779e5

Subscribe to this mod's changes

israeli-payment-orchestrator is a skill published in the GitHub repository squadcodercom/squadcoder (11 stars, last pushed 2mo ago), licensed MIT. It adds 197 tokens to every session and 3,189 once invoked, about $0.0010 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-30.

Related

Other skills, from other repositories

convex-billing

Add Stripe billing/payments to the Convex app via @convex-dev/stripe (checkout + webhook + gating).

openclaw/clawhub · 29 tokens

connect-recommend

Use this skill when the user asks about Stripe Connect configuration, charge patterns, Dashboard access, or how to get started with Connect, is building a marketplace, platform, multi-vendor store, gig platform, or subscription platform, needs to pay out sellers, vendors, or providers, mentions split payments, revenue…

stripe/ai · 151 tokens

stripe

Emulated Stripe API for local development and testing. Use when the user needs to process payments locally, test checkout flows, create customers, manage products and prices, handle payment intents, work with webhooks, or use the Stripe SDK without hitting real Stripe servers. Triggers include "Stripe API", "emulate…

vercel-labs/emulate · 102 tokens

create-payment-credential

Gets secure, one-time-use payment credentials (cards, tokens) from a Link wallet so agents can complete purchases on behalf of users. Use when the user says "get me a card", "buy something", "pay for X", "make a purchase", "I need to pay", "complete checkout", or asks to transact on any merchant site. Use when the…

stripe/link-cli · 95 tokens

stripe-best-practices

Guides Stripe integration decisions across API selection (Checkout Sessions vs PaymentIntents), Connect platform setup (Accounts v2, controller properties), billing/subscriptions, tax and registrations (Stripe Tax, automatictax, product tax codes), Treasury financial accounts, integration options (Checkout, Payment…

stripe/ai · 134 tokens

asc-ppp-pricing

Set territory-specific pricing for subscriptions and in-app purchases using current asc setup, pricing summary, price import, and price schedule commands. Use when adjusting prices by country or implementing localized PPP strategies.

rorkai/app-store-connect-cli-skills · 45 tokens