Gestion Stripe via CLI uni

VérifiéSûr

Gérez les paiements Stripe depuis le terminal avec la CLI uni. Créez des liens de paiement, gérez clients, factures, remboursements et abonnements.

Spar Skills Guide Bot
DeveloppementIntermédiaire
2002/06/2026
Claude CodeCursorWindsurfCopilotCodex
#stripe#payments#terminal#billing#subscriptions

Recommandé pour

Notre avis

Ce skill permet de gérer les opérations Stripe (paiements, clients, factures, remboursements, abonnements) directement depuis le terminal via l'outil CLI 'uni'.

Points forts

  • Interface en ligne de commande rapide pour les opérations Stripe courantes
  • Prise en charge de l'authentification via clé API ou variable d'environnement
  • Création de liens de paiement, gestion des clients et des abonnements

Limites

  • Nécessite une clé API Stripe (sk_test ou sk_live)
  • Fonctionnalités limitées aux commandes implémentées dans l'outil 'uni'
  • Pas de gestion avancée des webhooks ou des reports
Quand l'utiliser

Utilisez ce skill pour effectuer rapidement des opérations Stripe courantes sans quitter votre terminal.

Quand l'éviter

Ne l'utilisez pas si vous avez besoin de fonctionnalités avancées de Stripe non couvertes par les commandes disponibles.

Analyse de sécurité

Sûr
Score qualité88/100

The skill documents the usage of the uni CLI for Stripe operations. It does not contain any malicious or destructive instructions, does not exfiltrate data, and does not disable safety features. The commands are standard CLI interactions.

Aucun point d'attention détecté

Exemples

Check Stripe balance
Check my Stripe account balance
Create a payment link
Create a $50 payment link for consulting services
List recent payments
Show me the last 20 payments from Stripe

name: uni-stripe description: | Stripe payments via uni CLI. Use when user wants to check balance, create payment links, manage customers, invoices, refunds, or subscriptions. Requires STRIPE_SECRET_KEY or run 'uni stripe auth'. allowed-tools: Bash(uni:), Bash(~/.local/bin/uni:)

Stripe (uni)

Manage Stripe payments from the terminal. Requires API key setup.

Authentication

uni stripe auth sk_test_xxx       # Set API key directly
uni stripe auth --status          # Check configuration
uni stripe auth --logout          # Remove credentials

# Or use environment variable
export STRIPE_SECRET_KEY="sk_test_xxx"

Get keys from: https://dashboard.stripe.com/apikeys

Balance

uni stripe balance                # Check account balance
uni stripe bal                    # Alias

Payments

uni stripe payments               # List recent payments
uni stripe payments -n 20         # More payments
uni stripe payments pi_xxx        # View specific payment

Payment Links

uni stripe link 50                # Create $50 payment link
uni stripe link 99.99 -d "Consulting"  # With description
uni stripe link 100 -c eur        # Different currency
uni stripe link --list            # List existing links

Customers

uni stripe customers              # List customers
uni stripe customers john@example.com -n "John Doe"  # Create
uni stripe customers cus_xxx      # View specific customer

Invoices

uni stripe invoices                              # List invoices
uni stripe invoices create --customer cus_xxx -a 100 -d "Service"
uni stripe invoices send in_xxx                  # Send invoice

Refunds

uni stripe refunds                # List refunds
uni stripe refunds pi_xxx         # Refund a payment
uni stripe refunds pi_xxx -a 25   # Partial refund ($25)
uni stripe refunds pi_xxx -r requested_by_customer

Subscriptions

uni stripe subs                   # List subscriptions
uni stripe subs sub_xxx           # View subscription
uni stripe subs cancel sub_xxx    # Cancel subscription

Products

uni stripe products               # List products
uni stripe products --prices      # With pricing info
uni stripe products "Pro Plan" -d "Full access"  # Create product

Notes

  • Use sk_test_... for testing, sk_live_... for production
  • All amounts are in the smallest currency unit (cents for USD)
  • IDs shown in output [xxx] can be used in subsequent commands
  • Test mode is clearly indicated in output
Skills similaires