stripe-automation
أتمتة مدفو��ات Stripe عبر الذكاء الاصطناعي
توقف عن إدارة Stripe يدويًا عبر لوحات التحكم. تتيح هذه المهارة لعملاء الذكاء الاصطناعي التعامل مع إدارة العملاء وفوترة الاشتراكات والفواتير والعمليات المالية من خلال أوامر اللغة الطبيعية، مما يقلل وقت سير عمل الفوترة بنسبة 80%.
تنزيل ZIP المهارة
رفع في Claude
اذهب إلى Settings → Capabilities → Skills → Upload skill
فعّل وابدأ الاستخدام
اختبرها
استخدام "stripe-automation". Create a customer for sarah@company.com with name 'Sarah Johnson'
النتيجة المتوقعة:
تم إنشاء العميل بنجاح. معرف العميل: cus_abc123xyz، البريد الإلكتروني: sarah@company.com، الاسم: Sarah Johnson، تاريخ الإنشاء: 2025-02-25T10:30:00Z
استخدام "stripe-automation". List all subscriptions for customer cus_12345
النتيجة المتوقعة:
تم العثور على 2 اشتراك لـ cus_12345: 1) المعرف: sub_abc123، الحالة: نشط، السعر: price_xxx ($29/شهر)، نهاية الفترة الحالية: 2025-03-25. 2) المعرف: sub_def456، الحالة: متأخر الدفع، السعر: price_yyy ($99/سنة)
التدقيق الأمني
آمنAll 75 static findings are false positives. The 'external_commands' patterns are Markdown code formatting backticks in documentation, not executable code. 'Weak cryptographic algorithm' detections are false positives from API tool names containing 'create', 'search', 'list'. The hardcoded URL is the legitimate Rube MCP endpoint. This is a documentation-only skill with no executable code, no security risks, and clear intent to help users automate Stripe operations through official APIs.
مشكلات منخفضة المخاطر (1)
درجة الجودة
ماذا يمكنك بناءه
أتمتة إدخال العملاء
يستخدم مؤسسو SaaS اللغة الطبيعية لإنشاء عملاء Stripe وإعداد الاشتراكات وإنشاء الفواتير أثناء تسجيل المستخدم دون مغادرة بيئة التطوير الخاصة بهم.
سير عمل دعم الفوترة
تستعلم فرق الدعم عن سجل مدفوعات العملاء وتعالج المبالغ المستردة وتحدث خطط الاشتراكات وإنشاء روابط الفواتير من خلال أوامر الذكاء الاصطناعي ��لتحدثية.
المطابقة المالية
يُدرج المحترفون الماليون الرسوم ويبحثون عن المعاملات حسب نطاق التاريخ ويصدمون بيانات الدفع ويتدققون في الاشتراكات عبر عدة عملاء باستخدام استعلامات الذكاء الاصطناعي.
جرّب هذه الموجهات
Create a Stripe customer for john@example.com with name 'John Smith' and metadata set to {source: 'website', plan: 'premium'}Create a subscription for customer cus_12345 using price_id price_abc123 with quantity 2
Issue a full refund for charge ch_67890 with reason 'requested_by_customer'
List all invoices for customer cus_12345 from the last 30 days and show their status and amounts
أفضل الممارسات
- Call RUBE_SEARCH_TOOLS first before executing any Stripe operation to get current API schemas
- Search for existing customers by email before creating new ones to prevent duplicate customer records
- Verify Rube MCP connection status shows ACTIVE before running any Stripe workflows
- Use payment intents instead of direct charges for better security and 3D Secure support
تجنب
- Creating customers without searching first - this leads to duplicate customer records in Stripe
- Using uppercase currency codes like 'USD' instead of lowercase 'usd' - this causes API validation errors
- Forgetting that amounts are in cents (100 = $1.00) - entering decimal amounts like '10.50' will be interpreted as 1050 cents
- Assuming subscriptions work immediately - customers must have valid payment methods attached before subscriptions can be created