From 25219b70d3da4bb2b4d826d5ab4f979ed9e1ac5c Mon Sep 17 00:00:00 2001 From: Sawyer Hollenshead Date: Fri, 20 Feb 2026 14:36:23 -0800 Subject: [PATCH] Restore metadata --- .../payment-processing/skills/stripe-integration/SKILL.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/plugins/payment-processing/skills/stripe-integration/SKILL.md b/plugins/payment-processing/skills/stripe-integration/SKILL.md index b668699..0d651bb 100644 --- a/plugins/payment-processing/skills/stripe-integration/SKILL.md +++ b/plugins/payment-processing/skills/stripe-integration/SKILL.md @@ -214,6 +214,9 @@ def create_payment_intent(amount, currency='usd', customer_id=None): automatic_payment_methods={ 'enabled': True, }, + metadata={ + 'integration_check': 'accept_a_payment' + } ) return intent.client_secret # Send to frontend ``` @@ -517,7 +520,3 @@ def test_payment_flow(): - **Hardcoded Amounts**: Use cents/smallest currency unit - **No Retry Logic**: Implement retries for API calls - **Ignoring Test Mode**: Test all edge cases with test cards - -``` - -```