Skip to main content

checkout-conversion

Analyzes Stripe Checkout sessions — completion rate, abandonment, mode, and subscription signups. Use when the user mentions "checkout conversion", "checkout sessions", "signup funnel", or "why aren't people completing checkout".

설치로 이동

소스 정보

저장소
appeeky/stripe-skills
최근 소스 활동
2026년 7월 19일 10:10
감지된 SKILL.md 언어
영어
스타
5
포크
1

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
checkout-conversion
description
Analyzes Stripe Checkout sessions — completion rate, abandonment, mode, and subscription signups. Use when the user mentions "checkout conversion", "checkout sessions", "signup funnel", or "why aren't people completing checkout".
metadata
{"version":"1.0.0"}
# Checkout Conversion ## Stripe MCP Setup Requires **Stripe MCP** connected via OAuth or restricted key. Docs: https://docs.stripe.com/mcp 1. `GetMcpTools` with `server: "user-Stripe"` (or `plugin-stripe-stripe`) before any call 2. Prefer `stripe_api_search` → `stripe_api_details` → `stripe_api_read` for list/retrieve 3. **Always paginate** — `limit: 100`, follow `has_more` with `starting_after` 4. Amounts are in **cents** unless noted 5. Never expose secret keys in output ## Workflow 1. `GetCheckoutSessions` — recent window, `limit: 100`, paginate 2. Segment by `status`: `complete` vs `expired` vs `open` 3. For `mode: subscription`, link `subscription` id 4. Compute: ``` Conversion % = complete / (complete + expired) × 100 ``` 5. Check `payment_status` on completed sessions ## Codebase Cross-Check Search project for `/api/checkout`, `checkout.sessions.create`, `success_url`, `cancel_url`. ## Output Template ``` Checkout Funnel ([period]) Sessions: [total] Completed: [n] ([%]) Expired: [n] Open: [n] Common issues: - [missing customer reuse / double subscription risk] - [no promotion code tracking] Recommendations: ... ```
GitHub에서 보기