stripe-recipes

stripe-recipes is a skill for Claude Code from workato-devs/recipe-skills. It costs 33 tokens per session (2,641 once invoked), scanned A, original, MIT.

A set of Stripe-specific instructions for Workato, an automation platform, to generate recipe JSON. Stripe is a payment service; Workato recipes connect apps and automate steps.

In plain words
What is it for?
Building automations for Stripe customers, payments, subscriptions, charges, 3D Secure authentication, and refunds, when the required Workato Stripe connection is configured.
Why use it?
It provides patterns for handling Stripe operations within Workato, reducing the need to work out the connector settings and payment flows from scratch.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: positional $N argument.

Part of the recipe-skills plugin — 8 skills, 7 commands shipped together

Good fit Building automations for Stripe customers, payments, subscriptions, charges, 3D Secure authentication, and refunds, when the required Workato Stripe connection is configured.

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

Made for: Claude Code.

Or install recipe-skills, the plugin that ships this one along with the rest of its 8 skills, 7 commands.

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-recipes

README.md
[![agentmods](https://agentmods.dev/badge/skills/workato-devs/recipe-skills/stripe-recipes/github.svg)](https://agentmods.dev/skills/workato-devs/recipe-skills/stripe-recipes)
Your own site
<a href="https://agentmods.dev/skills/workato-devs/recipe-skills/stripe-recipes"><img src="https://agentmods.dev/badge/skills/workato-devs/recipe-skills/stripe-recipes/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-recipes

Your own site · 80×15
<a href="https://agentmods.dev/skills/workato-devs/recipe-skills/stripe-recipes"><img src="https://agentmods.dev/badge/skills/workato-devs/recipe-skills/stripe-recipes.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,641 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 warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Tool Misuse · line 54
    Tool defaults are unsafe or overly permissive (e.g. disabled TLS verification, no authentication, world-writable permissions). Unsafe defaults widen the attack surface.
    Fix: Override unsafe defaults with secure settings (verify=True, auth required, restrictive permissions). Review and harden all tool configurations.
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.00033 $0.02641
Opus 5 $0.00016 $0.01321
Sonnet 5 $0.00007 $0.00528
Haiku 4.5 $0.00003 $0.00264

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

Security

Grade A, and why

stripe-recipes 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 11d 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-recipes/SKILL.md · 372 lines

How it starts

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

Stripe Recipes Skill - Agent Instructions

⚠️ DEPENDENCY: Load the workato-recipes base skill first if not already loaded. This skill requires the base Workato knowledge for triggers, control flow, datapills, and recipe structure.

This skill provides Stripe-specific knowledge for generating Workato recipes. It extends the workato-recipes base skill and focuses on Stripe-specific patterns.


Table of Contents

  1. When to Use This Skill
  2. Stripe Config Requirements
  3. Native Connector Guidance
  4. Stripe Custom HTTP Actions
  5. Stripe Datapill Exception
  6. Stripe Patterns
  7. Pre-Push Checklist (Stripe)

When to Use This Skill

Use this skill when building Workato recipes that:

  • Create, search, or manage Stripe customers
  • Create and confirm PaymentIntents
  • Handle 3D Secure authentication flows
  • Process refunds for completed payments
  • Retrieve payment, subscription, or charge status

Prerequisites:

  • workato-recipes base skill loaded
  • Workato workspace with Stripe connection configured

Stripe Config Requirements

Every Stripe recipe requires the stripe provider in the config section:

{
  "keyword": "application",
  "provider": "stripe",
  "skip_validation": false,
  "account_id": {
    "zip_name": "Workspace Connections/stripe_connection.connection.json",
    "name": "Stripe Connection Name",
    "folder": "Workspace Connections"
  }
}

Combined with trigger provider:

For API endpoint trigger:

"config": [
  { "provider": "workato_api_platform", "account_id": null, ... },
  { "provider": "stripe", "account_id": { ... }, ... }
]

For callable recipe trigger:

"config": [
  { "provider": "workato_recipe_function", "account_id": null, ... },
  { "provider": "stripe", "account_id": { ... }, ... }
]

Read the full file on GitHub · 372 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. 11d ago First seen · 372 lines · 33 tokens per session scan A 2384a8c1e777

Subscribe to this mod's changes

stripe-recipes is a skill published in the GitHub repository workato-devs/recipe-skills (18 stars, last pushed 12d ago), licensed MIT. It adds 33 tokens to every session and 2,641 once invoked, about $0.0002 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-30.

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

etsy-pricing-strategy

Etsy pricing — cost calculation, competitor pricing, perceived value, shipping cost integration, sales and coupons.

nexscope-ai/eCommerce-Skills · 26 tokens

amazon-wholesale-sourcing

Wholesale product sourcing — supplier discovery, negotiation, MOQ optimization, margin analysis.

nexscope-ai/Amazon-Skills · 20 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