Skill · em Construir backend e dados

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…

Procedência

Antes de instalar

1 arquivo · 7,9 KB · só texto, nenhum script

Instalar na sua CLI

O comando baixa a versão fixada (commit af7c088) direto da origem, para a pasta que a CLI lê. Precisa de curl (macOS e Linux); no Windows não há comando, porque o Rook Labs é para macOS.

Claude Code

Neste projeto: instala em .claude/skills/stripe-projects/.

d=".claude/skills/stripe-projects"
u="https://raw.githubusercontent.com/stripe/ai/af7c088ac40115e23ab5fa60b5b968d71e801b97/skills/stripe-projects"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md" \
  -o "$d/LICENSE" "https://raw.githubusercontent.com/stripe/ai/af7c088ac40115e23ab5fa60b5b968d71e801b97/LICENSE"

Global: instala em ~/.claude/skills/stripe-projects/.

d="$HOME/.claude/skills/stripe-projects"
u="https://raw.githubusercontent.com/stripe/ai/af7c088ac40115e23ab5fa60b5b968d71e801b97/skills/stripe-projects"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md" \
  -o "$d/LICENSE" "https://raw.githubusercontent.com/stripe/ai/af7c088ac40115e23ab5fa60b5b968d71e801b97/LICENSE"

Codex

Neste projeto: instala em .agents/skills/stripe-projects/.

d=".agents/skills/stripe-projects"
u="https://raw.githubusercontent.com/stripe/ai/af7c088ac40115e23ab5fa60b5b968d71e801b97/skills/stripe-projects"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md" \
  -o "$d/LICENSE" "https://raw.githubusercontent.com/stripe/ai/af7c088ac40115e23ab5fa60b5b968d71e801b97/LICENSE"

Global: instala em ~/.agents/skills/stripe-projects/.

d="$HOME/.agents/skills/stripe-projects"
u="https://raw.githubusercontent.com/stripe/ai/af7c088ac40115e23ab5fa60b5b968d71e801b97/skills/stripe-projects"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md" \
  -o "$d/LICENSE" "https://raw.githubusercontent.com/stripe/ai/af7c088ac40115e23ab5fa60b5b968d71e801b97/LICENSE"

Antigravity

Neste projeto: instala em .agents/skills/stripe-projects/.

d=".agents/skills/stripe-projects"
u="https://raw.githubusercontent.com/stripe/ai/af7c088ac40115e23ab5fa60b5b968d71e801b97/skills/stripe-projects"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md" \
  -o "$d/LICENSE" "https://raw.githubusercontent.com/stripe/ai/af7c088ac40115e23ab5fa60b5b968d71e801b97/LICENSE"

Global: instala em ~/.gemini/antigravity-cli/skills/stripe-projects/.

d="$HOME/.gemini/antigravity-cli/skills/stripe-projects"
u="https://raw.githubusercontent.com/stripe/ai/af7c088ac40115e23ab5fa60b5b968d71e801b97/skills/stripe-projects"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md" \
  -o "$d/LICENSE" "https://raw.githubusercontent.com/stripe/ai/af7c088ac40115e23ab5fa60b5b968d71e801b97/LICENSE"

Peça ao Rook

Já usa o Rook Labs? Cole no chat do Rook: instale a skill https://rooklabs.sh/marketplace/stripe.ai.stripe-projects

Prévia do SKILL.md

---
name: stripe-projects
description: >
  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 get an
  API key or credentials for any third-party service — don't tell them to sign
  up manually; check the Projects catalog first. Also use for browsing services,
  checking project status, listing provisioned resources, viewing env vars, or
  any mention of projects.dev or adding/provisioning/connecting a cloud service.
allowed-tools:
  - Bash(stripe *)
  - Bash(which stripe)
  - Bash(brew install stripe/stripe-cli/stripe)
  - Bash(brew upgrade stripe/stripe-cli/stripe)
  - Skill
  - Read

---

## 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:
…

Ver todo o marketplace