payment-processor

payment-processor is a skill for Claude Code, Codex from Signal-Execution-Labs/forex-trading-ai-agent. It costs 0 tokens per session (845 once invoked), scanned A, original, MIT.

A payment-management tool for sending, receiving, and checking fiat-money balances through services such as PayPal, Skrill, Wise, Revolut, Stripe, and open banking.

In plain words
What is it for?
Use it to view balances, send money, receive payments, create PayPal invoices, and work with supported currencies and payment services.
Why use it?
It brings balances and payment actions from several providers into one interface. This can reduce the need to switch between separate payment accounts when managing transfers or invoices.

Skill for Claude CodeCodex

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

Good fit Use it to view balances, send money, receive payments, create PayPal invoices, and work with supported currencies and payment services.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/signal-execution-labs/forex-trading-ai-agent/payment-processor
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 Signal-Execution-Labs/forex-trading-ai-agent --skill payment-processor
Clone the repo
git clone --depth 1 https://github.com/Signal-Execution-Labs/forex-trading-ai-agent

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-processor

README.md
[![agentmods](https://agentmods.dev/badge/skills/signal-execution-labs/forex-trading-ai-agent/payment-processor/github.svg)](https://agentmods.dev/skills/signal-execution-labs/forex-trading-ai-agent/payment-processor)
Your own site
<a href="https://agentmods.dev/skills/signal-execution-labs/forex-trading-ai-agent/payment-processor"><img src="https://agentmods.dev/badge/skills/signal-execution-labs/forex-trading-ai-agent/payment-processor/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-processor

Your own site · 80×15
<a href="https://agentmods.dev/skills/signal-execution-labs/forex-trading-ai-agent/payment-processor"><img src="https://agentmods.dev/badge/skills/signal-execution-labs/forex-trading-ai-agent/payment-processor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 845 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00000 $0.00845
Opus 5 $0.00000 $0.00423
Sonnet 5 $0.00000 $0.00169
Haiku 4.5 $0.00000 $0.00085

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

Security

Grade A, and why

payment-processor 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 6d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (payment_processor.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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

skills/payment-processor/SKILL.md · 165 lines

How it starts

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

Payment Processor Skill

Send, receive, and manage fiat payments

Supported Services

Service Send Receive Balance Status
PayPal 🚧 Planned
Skrill 🚧 Planned
Wise 🚧 Planned
Revolut 🚧 Planned
Stripe - 🚧 Planned
Bank (Open Banking) 🚧 Planned

Capabilities

View Balances

from skills.payment_processor import PaymentManager

pm = PaymentManager()

# Get all balances
balances = pm.get_all_balances()
# {
#   "paypal": {"USD": 1250.00, "EUR": 340.00},
#   "skrill": {"USD": 890.00},
#   "wise": {"USD": 2100.00, "EUR": 1500.00, "GBP": 800.00}
# }

Send Money

# Send via PayPal
pm.send(
    service="paypal",
    to="[email protected]",
    amount=100.00,
    currency="USD",
    note="Payment for services"
)

# Send via Wise
pm.send(
    service="wise",
    to="recipient_account_id",
    amount=500.00,
    currency="EUR"
)

Receive Payments

# Create PayPal invoice
invoice = pm.create_invoice(
    service="paypal",
    amount=250.00,
    currency="USD",
    description="Consulting services",
    recipient_email="[email protected]"
)

# Create payment link
link = pm.create_payment_link(
    amount=50.00,
    currency="USD",
    services=["paypal", "stripe", "crypto"]
)

Currency Exchange

# Convert EUR to USD via Wise
pm.convert(
    service="wise",
    from_currency="EUR",
    to_currency="USD",
    amount=1000.00
)

K.I.T. Integration

Natural Language Commands

"Send $100 to [email protected] via PayPal"
"What's my PayPal balance?"
"Convert €500 to USD on Wise"
"Create an invoice for $200"
"Show all my fiat balances"
"Transfer $500 from Skrill to PayPal"

Automation Rules

"Every month, if PayPal > $2000, transfer excess to Wise"
"When I receive a payment > $500, notify me"
"Auto-pay my Netflix subscription from PayPal"

Read the full file on GitHub · 165 lines

Files

What ships with it

1 file 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. 6d ago First seen · 165 lines · 0 tokens per session scan A c9c956068eeb

Subscribe to this mod's changes

payment-processor is a skill published in the GitHub repository Signal-Execution-Labs/forex-trading-ai-agent (136 stars, last pushed 6d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 845 tokens. 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

billing-automation

Build automated billing systems for recurring payments, invoicing, subscription lifecycle, and dunning management. Use when implementing subscription billing, automating invoicing, or managing recurring payment systems.

seaworld008/Commonly-used-high-value-skills · 40 tokens

multi-currency

Let international shoppers browse and pay in their local currency with automatic detection, live exchange rates, and locale-specific price formatting.

finsilabs/awesome-ecommerce-skills · 27 tokens

currency-hedging-management

Manage foreign exchange risk for multi-currency ecommerce with FX rate tracking, hedging strategies, and realized/unrealized gain-loss accounting.

finsilabs/awesome-ecommerce-skills · 32 tokens

customer-billing-ops

Operate customer billing workflows such as subscriptions, refunds, churn triage, billing-portal recovery, and plan analysis using connected billing tools like Stripe. Use when the user needs to help a customer, inspect subscription state, or manage revenue-impacting billing operations.

gongyijie85/dsh-ecc · 57 tokens

build-monetized-app

Use when the task is building a new app on Eliza Cloud that earns money — chat apps, agent apps, MCP-backed tools, anything that calls the cloud's chat/messages/inference endpoints on behalf of users. Covers app registration, container deploy, markup configuration, affiliate header, app charge requests, x402 payment…

elizaOS/eliza · 126 tokens

check-deck

Investment deck QC: number consistency, data-narrative alignment, IB language, formatting audit.

ginlix-ai/LangAlpha · 22 tokens