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.
npx skills add kayzaa/k.i.t.-bot --skill payment-processorgit clone --depth 1 https://github.com/kayzaa/k.i.t.-botWrote 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.
[](https://agentmods.dev/skills/kayzaa/k.i.t.-bot/payment-processor)<a href="https://agentmods.dev/skills/kayzaa/k.i.t.-bot/payment-processor"><img src="https://agentmods.dev/badge/skills/kayzaa/k.i.t.-bot/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.
<a href="https://agentmods.dev/skills/kayzaa/k.i.t.-bot/payment-processor"><img src="https://agentmods.dev/badge/skills/kayzaa/k.i.t.-bot/payment-processor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once 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 |
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.
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.
This is a copy
100% identical to payment-processor — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
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"
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.
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.
- 6d ago First seen · 165 lines · 0 tokens per session scan A c9c956068eeb
payment-processor is a skill published in the GitHub repository kayzaa/k.i.t.-bot (5 stars, last pushed 6mo 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. It is 100% identical to payment-processor, differing in 0 lines, and is treated as a copy.
Other skills, from other repositories
BytesAgain Crypto Toolkit — 200+ Technical Indicators, Real-Time Market Data
Use when you need real-time crypto prices, technical indicators (RSI, MACD, Bollinger, 50+), market rankings, on-chain data, or trading signals. Zero API key required.
derivatives-trading-portfolio-margin
Binance Derivatives-trading-portfolio-margin request using the Binance API. Authentication requires API key and secret key. Supports testnet and mainnet.
spot
Binance Spot request using the Binance API. Authentication requires API key and secret key. Supports testnet, mainnet, and demo.
trading-futures
Trade perpetual futures on Binance, Bybit, Hyperliquid, MEXC with up to 200x leverage.
assets
Binance Assets request using the Binance API. Authentication requires API key and secret key.
derivatives-trading-coin-futures
Binance Derivatives-trading-coin-futures request using the Binance API. Authentication requires API key and secret key. Supports testnet and mainnet.