stripe-backend
스타13
포크0
업데이트2026년 5월 23일 14:10
Stripe Backend
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Stripe Backend
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Dev In Browser
Fastapi_Stripe
Fix Tests
Implement Fastapi Routes
Plan Only
Python Command
| name | stripe-backend |
| description | Stripe Backend |
cast(object, ...) should not be used. Can you instead cast expandable fields to PaymentIntent, or whatever their expandable type is?from stripe import Charge can we use top-level imports instead of importing from private packages?customer = getattr(session, "customer", None) instead just access session.customer and assert that it is not null. Use the pattern for all stripe objects.auto_paging_iter for example stripe_client.prices.list(params={ ... }).auto_paging_iter()StripeClient is used everywhere and type it as such. When using this client, all API params should be a dictionary inside a params= kwarg.amount_refunded=0 when the charge is disputed. The dispute amount only exists in the balance_transactions of the dispute object.