Agent skill · Security

stripe-projects

Use when the user wants to provision infrastructure or third-party services using Stripe Projects. Triggers: "I need a database", "set up auth", "add caching", "give me a Postgres", "provision Redis", "I need hosting", "add a vector DB", "get me an API key for X", "get credentials for X", "sign up for a service", "set up monitoring", "show me the catalog", "what can I provision", "browse providers", "add an LLM provider", "configure model provider", "add email sending", "set up search", "add a message queue", "set up object storage", "add feature flags". Also trigger when the user asks how to

fcakyongithub.com/fcakyonGitHub ↗
claude-codecodexcursorread-onlyApache-2.0
Install
npx skills add fcakyon/claude-codex-settings --skill stripe-projects --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 7 KB
Bundled scripts: none
Allowed tools: -Bash(stripe*)-Bash(whichstripe)-Bash(brewinstallstripe/stripe-cli/stripe)-Bash(brew
Path: plugins/stripe-skills/skills/stripe-projects/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 967
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

## Stripe Projects — Service Provisioning Provision third-party services (databases, auth, hosting, analytics, caching, AI, observability) and retrieve API keys/tokens using the Stripe Projects CLI plugin. ## Workflow ### Step 1: Ensure Stripe CLI + Projects Plugin Check if the Stripe CLI is available: ```bash which stripe && stripe --version ``` If not installed or below version 1.40.0: - **macOS (Homebrew):** `brew install stripe/stripe-cli/stripe` (or `brew upgrade stripe/stripe-cli/stripe`) - **Other platforms:** Direct the user to https://docs.stripe.com/stripe-cli/install for up-to-date instructions. Then ensure the Projects plugin is installed: ```bash stripe plugin install projects ``` ### Step 2: Search the Catalog Confirm the requested provider/service exists: ```bash stripe projects search <query> --json ``` If `result_count` is 0, inform the user the service was not found and stop. If the user’s request is vague (for example, “I need a database”), browse the catalog to suggest options: ```bash stripe projects catalog --json ``` ### Step 3: Initialize a Project Check if a project is already initialized: ```bash stripe projects status --json ``` If not initialized, run a

What's inside
Steps it walks through
  1. Stripe Projects — Service Provisioning
  2. Workflow
  3. Step 1: Ensure Stripe CLI + Projects Plugin
  4. Step 2: Search the Catalog
  5. Step 3: Initialize a Project
  6. Step 4: Hand Off to stripe-projects-cli
  7. Step 5: Summarize and Suggest
  8. CLI as Source of Truth
  9. Project Variables
  10. Error Handling
Commands it runs
which stripe && stripe --version
stripe plugin install projects
stripe projects search <query> --json
stripe projects catalog --json
stripe projects status --json
stripe projects init --preflight --json
stripe projects init --accept-tos --yes
test -f .claude/skills/stripe-projects-cli/SKILL.md && echo "OK" || echo "MISSING"
stripe projects variables set <name> --env-key <ENV_KEY> --value <value>
stripe projects env add <name> --variable --env-key <ENV_KEY>
More from claude-codex-settings
All skills →
About this skill
What does the stripe-projects skill do?

Use when the user wants to provision infrastructure or third-party services using Stripe Projects. Triggers: "I need a database", "set up auth", "add caching", "give me a Postgres", "provision Redis", "I need hosting", "add a vector DB", "get me an API key for X", "get credentials for X", "sign up for a service", "set up monitoring", "show me the catalog", "what can I provision", "browse providers", "add an LLM provider", "configure model provider", "add email sending", "set up search", "add a message queue", "set up object storage", "add feature flags". Also trigger when the user asks how to

How do I install it?

Run `npx skills add fcakyon/claude-codex-settings --skill stripe-projects --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From fcakyon/claude-codex-settings, a repository with 967 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going