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 Kevin-Liu-01/Agent-Machines --skill stripegit clone --depth 1 https://github.com/Kevin-Liu-01/Agent-MachinesWrote 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/kevin-liu-01/agent-machines/stripe)<a href="https://agentmods.dev/skills/kevin-liu-01/agent-machines/stripe"><img src="https://agentmods.dev/badge/skills/kevin-liu-01/agent-machines/stripe/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/kevin-liu-01/agent-machines/stripe"><img src="https://agentmods.dev/badge/skills/kevin-liu-01/agent-machines/stripe.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00029 | $0.00499 |
| Opus 5 | $0.00015 | $0.00249 |
| Sonnet 5 | $0.00006 | $0.00100 |
| Haiku 4.5 | $0.00003 | $0.00050 |
Grade A, and why
stripe 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 7d 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.
What it actually says
Script
node --experimental-strip-types ${CLAUDE_SKILL_DIR}/scripts/stripe.ts <verb> <resource> [id] [flags]
Verbs
| Verb | HTTP | Requires ID | Write? |
|---|---|---|---|
| get | GET | yes | no |
| list | GET | no | no |
| search | GET | no | no |
| create | POST | no | yes |
| update | POST | yes | yes |
| delete | DELETE | yes | yes |
Resources
customers, payment_methods, subscriptions, charges, invoices, payment_intents, checkout_sessions, refunds, events, products, prices, credit_grants, balance_transactions
Flags
--customer cus_xxxfilter by customer--type cardfilter payment methods by type--status activefilter by status--limit 10max results--query "email:'[email protected]'"for search verb--format json|tableoutput format (default: table)- Any
--key valuepair maps to Stripe API parameters
Rules
- Write operations require test-mode keys. The script checks
sk_test_*prefix. Live key writes throw. - Never delete production resources unless the user explicitly confirms.
- Default output is table. Use
--format jsonfor structured output.
Examples
# List payment methods for a customer
stripe list payment_methods --customer cus_abc --type card
# Get a specific checkout session
stripe get checkout_session cs_abc
# List recent events
stripe list events --type checkout.session.completed --limit 5
# Search customers by email
stripe search customers --query "email:'[email protected]'"
# Refund a payment (test mode only)
stripe create refund --payment_intent pi_abc --amount 2000
# List active subscriptions
stripe list subscriptions --customer cus_abc --status active
$ARGUMENTS
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.
- 7d ago First seen · 70 lines · 29 tokens per session scan A fd2a3d57f78e
stripe is a skill published in the GitHub repository Kevin-Liu-01/Agent-Machines (29 stars, last pushed yesterday), licensed MIT. It adds 29 tokens to every session and 499 once invoked, about $0.0001 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.
Other skills, from other repositories
tossinvest-openapi-integration
Use when integrating Toss Securities Open API for market data, holdings, order workflows, and approval-gated execution.
design-mcp-server
Design the tool surface, resources, and service layer for a new MCP server. Use when starting a new server, planning a major feature expansion, or when the user describes a domain/API they want to expose via MCP. Produces a design doc at docs/design.md that drives implementation.
api-telemetry
Catalog of OpenTelemetry instrumentation built into framework @cyanheads/mcp-ts-core — spans, metrics, completion logs, env config, runtime caveats, custom instrumentation patterns, and cardinality rules. Use when enabling OTel export, adding custom spans or metrics in services, debugging missing telemetry, looking up…
kalshi-api
Kalshi exchange mechanics — RSA-PSS auth, order schema, YES/NO orderbook convention, WebSocket, and endpoint surface. Market-type-agnostic shared layer for all Kalshi skills.
tushare-plugin-builder
This skill should be used when the user provides a Tushare API document URL and asks to generate a full plugin in this codebase, including extractor, schema, config, query service, and agent/MCP/http usage with testable curl examples.
notification-events
Use ServiceNow events (sysevent) — gs.eventQueue dispatch, syseventregister definitions, syseventscriptaction handlers, delayed events with processon, and reminder/state-change patterns.