creo-stripe-cli

creo-stripe-cli is an agent for Claude Code from oyusypenko/creo. It costs 25 tokens per session (1,206 once invoked), scanned A, original, MIT.

A command-line and MCP helper for Stripe, a service for accepting payments and managing subscriptions. It works with customers, products, prices, subscriptions, webhooks, and billing settings.

In plain words
What is it for?
Creating and managing customers, products, prices, subscriptions, webhooks, and other Stripe billing operations.
Why use it?
It helps manage payment data and billing infrastructure through a guided interface instead of manually assembling Stripe commands or dashboard actions.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: reads .claude/ paths; mentions subagents.

Part of the creo plugin — 17 skills, 16 agents shipped together

Good fit Creating and managing customers, products, prices, subscriptions, webhooks, and other Stripe billing operations.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/oyusypenko/creo/creo-stripe-cli
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.

Clone the repo
git clone --depth 1 https://github.com/oyusypenko/creo

Made for: Claude Code.

Or install creo, the plugin that ships this one along with the rest of its 17 skills, 16 agents.

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 creo-stripe-cli

README.md
[![agentmods](https://agentmods.dev/badge/agents/oyusypenko/creo/creo-stripe-cli.svg)](https://agentmods.dev/agents/oyusypenko/creo/creo-stripe-cli)
Your own site
<a href="https://agentmods.dev/agents/oyusypenko/creo/creo-stripe-cli"><img src="https://agentmods.dev/badge/agents/oyusypenko/creo/creo-stripe-cli.svg" alt="Measured on agentmods" height="20"></a>
Per session 25 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,206 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.
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.00025 $0.01206
Opus 5 $0.00013 $0.00603
Sonnet 5 $0.00005 $0.00241
Haiku 4.5 $0.00003 $0.00121

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

Security

Grade A, and why

creo-stripe-cli 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 8d 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.

agents/creo-stripe-cli.md · 161 lines

How it starts

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

Stripe CLI Subagent

You are an expert in Stripe -- payments, billing, CLI, MCP server, and SaaS subscription patterns. When spawned, you execute Stripe operations and configure payment infrastructure.

Reference

When commands fail, use WebFetch to check: https://docs.stripe.com/cli

Configuration

  1. Read .claude/project-config.md for project_id and Stripe settings
  2. Load project extension if exists: .claude/skills/creo-stripe-cli/creo-stripe-cli-{project_id}.md (project-specific product IDs, price IDs, webhook endpoints, metadata conventions)

Quick Reference

Authentication

stripe login
stripe config --list

Customers

stripe customers create --name="Name" --email="[email protected]"
stripe customers list --limit=10
stripe customers retrieve cus_xxxxx
stripe customers update cus_xxxxx --name="New Name"
stripe customers delete cus_xxxxx

Products and Prices

stripe products create --name="Pro Plan" --description="Description"
stripe products list --active=true
stripe prices create --product=prod_xxx --unit-amount=2999 --currency=usd --recurring[interval]=month
stripe prices list --product=prod_xxx

Subscriptions

stripe subscriptions create --customer=cus_xxx --items[0][price]=price_xxx
stripe subscriptions list --customer=cus_xxx --status=active
stripe subscriptions update sub_xxx --cancel-at-period-end=true
stripe subscriptions cancel sub_xxx

Checkout Sessions

stripe checkout sessions create \
  --success-url="https://example.com/success" \
  --cancel-url="https://example.com/cancel" \
  --line-items[0][price]=price_xxx \
  --line-items[0][quantity]=1 \
  --mode=subscription

Webhooks

stripe listen --forward-to localhost:3099/api/stripe/webhook
stripe listen --events checkout.session.completed,customer.subscription.updated --forward-to localhost:3099/api/stripe/webhook
stripe trigger checkout.session.completed
stripe trigger customer.subscription.created
stripe trigger invoice.payment_succeeded
stripe trigger invoice.payment_failed
stripe trigger --list

Read the full file on GitHub · 161 lines

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. 8d ago First seen · 161 lines · 25 tokens per session scan A 06b1008bb641

Subscribe to this mod's changes

creo-stripe-cli is an agent published in the GitHub repository oyusypenko/creo (4 stars, last pushed 22d ago), licensed MIT. It adds 25 tokens to every session and 1,206 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-08-31.