stripe

stripe is a skill for Claude Code from HybridAIOne/hybridclaw. It costs 23 tokens per session (973 once invoked), scanned A, original, MIT.

A toolkit for inspecting Stripe, a payment service used by websites and apps to charge customers. It covers customers, products, prices, payments, subscriptions, checkout sessions, and webhooks, which are messages sent between services about events.

In plain words
What is it for?
Use it to inspect Stripe records, debug webhook delivery, check subscriptions and payments, and plan safe changes to Stripe-backed applications.
Why use it?
It helps diagnose payment and integration problems using read-only checks before making changes. It also keeps test and live payment environments distinct during investigation.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Good fit Use it to inspect Stripe records, debug webhook delivery, check subscriptions and payments, and plan safe changes to Stripe-backed applications.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hybridaione/hybridclaw/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 HybridAIOne/hybridclaw --skill stripe
Clone the repo
git clone --depth 1 https://github.com/HybridAIOne/hybridclaw

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/hybridaione/hybridclaw/stripe/github.svg)](https://agentmods.dev/skills/hybridaione/hybridclaw/stripe)
Your own site
<a href="https://agentmods.dev/skills/hybridaione/hybridclaw/stripe"><img src="https://agentmods.dev/badge/skills/hybridaione/hybridclaw/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/hybridaione/hybridclaw/stripe"><img src="https://agentmods.dev/badge/skills/hybridaione/hybridclaw/stripe.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 973 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.00023 $0.00973
Opus 5 $0.00012 $0.00487
Sonnet 5 $0.00005 $0.00195
Haiku 4.5 $0.00002 $0.00097

Measured 9d ago against content hash 67d7d018a14e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, 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 9d 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.

skills/stripe/SKILL.md · 163 lines

How it starts

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

Stripe

Use this skill for Stripe Dashboard, Stripe API, Stripe CLI, and integration-debugging workflows.

Scope

  • investigate customers, products, prices, payments, checkout sessions, and subscriptions
  • debug webhook delivery and local webhook forwarding
  • inspect or use the Stripe API through an existing authenticated integration
  • coordinate Dashboard actions through the browser when the user is already signed in
  • draft safe operational steps for Stripe-backed app changes

Default Strategy

  1. Confirm whether the task is in test mode or live mode.
  2. Prefer read-only inspection before any mutation.
  3. Use Stripe CLI or an existing API client when a terminal or application workflow is available; otherwise use the Dashboard in the browser.
  4. Confirm the exact object id or customer email before changing anything.

Stripe CLI

Basic checks:

stripe version
stripe login
stripe config --list

Useful read commands:

stripe customers list --limit 10
stripe customers retrieve cus_123
stripe products list --limit 20
stripe prices list --product prod_123
stripe subscriptions retrieve sub_123
stripe payment_intents retrieve pi_123
stripe events list --limit 10

Stripe API

Use the API when the application already has a configured Stripe client, authenticated helper, or server-side integration path.

Prefer the official Stripe SDKs over ad hoc HTTP calls when you are working in application code. Useful read-first targets include:

  • /v1/customers/{id}
  • /v1/subscriptions/{id}
  • /v1/payment_intents/{id}
  • /v1/checkout/sessions/{id}
  • /v1/events/{id}
  • /v1/prices?product={product_id}

For API-backed debugging:

  1. confirm whether the request is against test or live mode
  2. trace one concrete object id end to end
  3. compare the API object state with webhook delivery and app logs
  4. mutate only after the read path is understood

If the user wants integration help, state whether the source of truth is:

  • Stripe API
  • Stripe CLI
  • Dashboard
  • application logs

Read the full file on GitHub · 163 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. 9d ago First seen · 163 lines · 23 tokens per session scan A 67d7d018a14e

Subscribe to this mod's changes

stripe is a skill published in the GitHub repository HybridAIOne/hybridclaw (132 stars, last pushed yesterday), licensed MIT. It adds 23 tokens to every session and 973 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

asc-ppp-pricing

Set territory-specific pricing for subscriptions and in-app purchases using current asc setup, pricing summary, price import, and price schedule commands. Use when adjusting prices by country or implementing localized PPP strategies.

rorkai/app-store-connect-cli-skills · 45 tokens

stripe

Stripe API integration with managed OAuth. Manage customers, subscriptions, invoices, products, prices, and payments. Use this skill when users want to process payments, manage billing, or handle subscriptions with Stripe. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).…

CraftOS-dev/CraftBot · 79 tokens

ai-slop

Operational rubric that turns "don't make AI slop" into observable properties, severity levels, evidence requirements, and repair actions for interface design. Use as the reference rubric when building or reviewing marketing sites, product interfaces, dashboards, portfolios, or e-commerce pages, especially alongside…

waybarrios/opencode-power-pack · 61 tokens

payment-processor

Skill "payment-processor" from Signal-Execution-Labs/forex-trading-ai-agent, covering payment processor skill, supported services, capabilities, view balances and get all balances.

Signal-Execution-Labs/forex-trading-ai-agent · 0 tokens

marketplace-purchase-vetting

Use this when the user asks whether a local listing is a scam, "too good to be true," worth looking at, or a good deal. Also use this when he asks you to find options — search/discover candidates, then vet the best ones. The goal is not a generic buying guide; it is a practical risk read with clear next steps.

AtlasOmnia/donna-starter · 72 tokens

software-payments

Designs production payment and billing systems. Use when implementing Stripe, Paddle, Adyen, subscriptions, tax, marketplaces, or mobile purchase flows.

vasilyu1983/AI-Agents-public · 33 tokens