stripe

stripe is a skill for Claude Code from Kevin-Liu-01/Agent-Machines. It costs 29 tokens per session (499 once invoked), scanned A, original, MIT.

A command-line tool guide for reading and managing Stripe customers, payments, subscriptions, invoices, and other billing records.

In plain words
What is it for?
Use it to retrieve, list, search, create, update, or delete Stripe resources, with options for filtering and structured output.
Why use it?
It gives developers a consistent way to inspect Stripe data and puts safeguards around operations that can change or delete resources.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it to retrieve, list, search, create, update, or delete Stripe resources, with options for filtering and structured output.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kevin-liu-01/agent-machines/stripe
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 Kevin-Liu-01/Agent-Machines --skill stripe
Clone the repo
git clone --depth 1 https://github.com/Kevin-Liu-01/Agent-Machines

Made for: Claude Code.

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 stripe

README.md
[![agentmods](https://agentmods.dev/badge/skills/kevin-liu-01/agent-machines/stripe/github.svg)](https://agentmods.dev/skills/kevin-liu-01/agent-machines/stripe)
Your own site
<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.

agentmods 80×15 button for stripe

Your own site · 80×15
<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>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 499 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.00029 $0.00499
Opus 5 $0.00015 $0.00249
Sonnet 5 $0.00006 $0.00100
Haiku 4.5 $0.00003 $0.00050

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

Security

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.

knowledge/skills/stripe/SKILL.md · 70 lines

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_xxx filter by customer
  • --type card filter payment methods by type
  • --status active filter by status
  • --limit 10 max results
  • --query "email:'[email protected]'" for search verb
  • --format json|table output format (default: table)
  • Any --key value pair maps to Stripe API parameters

Rules

  1. Write operations require test-mode keys. The script checks sk_test_* prefix. Live key writes throw.
  2. Never delete production resources unless the user explicitly confirms.
  3. Default output is table. Use --format json for 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

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. 7d ago First seen · 70 lines · 29 tokens per session scan A fd2a3d57f78e

Subscribe to this mod's changes

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.

Related

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.

kuil09/tossinvest-openapi-agent-pack · 30 tokens

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.

cyanheads/obsidian-mcp-server · 62 tokens

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…

cyanheads/obsidian-mcp-server · 85 tokens

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.

agiprolabs/claude-trading-skills · 44 tokens

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.

Yourdaylight/stock_datasource · 56 tokens

notification-events

Use ServiceNow events (sysevent) — gs.eventQueue dispatch, syseventregister definitions, syseventscriptaction handlers, delayed events with processon, and reminder/state-change patterns.

serac-labs/serac · 43 tokens