{
  "schemaVersion": "1.0",
  "item": {
    "slug": "native-stripe",
    "name": "Native Stripe",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/codeninja23/native-stripe",
    "canonicalUrl": "https://clawhub.ai/codeninja23/native-stripe",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/native-stripe",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=native-stripe",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/stripe_query.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/native-stripe"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/native-stripe",
    "agentPageUrl": "https://openagent3.xyz/skills/native-stripe/agent",
    "manifestUrl": "https://openagent3.xyz/skills/native-stripe/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/native-stripe/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Stripe",
        "body": "Interact with your Stripe account directly via the Stripe API (api.stripe.com)."
      },
      {
        "title": "Setup (one-time)",
        "body": "Get your secret key from https://dashboard.stripe.com/apikeys\nSet environment variable:\nSTRIPE_SECRET_KEY=sk_live_...\n\nUse sk_test_... for test mode."
      },
      {
        "title": "List recent charges",
        "body": "python3 /mnt/skills/user/stripe/scripts/stripe_query.py charges --limit 10"
      },
      {
        "title": "List customers",
        "body": "python3 /mnt/skills/user/stripe/scripts/stripe_query.py customers --limit 20"
      },
      {
        "title": "Search customers by email",
        "body": "python3 /mnt/skills/user/stripe/scripts/stripe_query.py customers --email user@example.com"
      },
      {
        "title": "List subscriptions",
        "body": "python3 /mnt/skills/user/stripe/scripts/stripe_query.py subscriptions --limit 20"
      },
      {
        "title": "List active subscriptions",
        "body": "python3 /mnt/skills/user/stripe/scripts/stripe_query.py subscriptions --status active --limit 20"
      },
      {
        "title": "List invoices",
        "body": "python3 /mnt/skills/user/stripe/scripts/stripe_query.py invoices --limit 20"
      },
      {
        "title": "List payment intents",
        "body": "python3 /mnt/skills/user/stripe/scripts/stripe_query.py payment_intents --limit 20"
      },
      {
        "title": "List products",
        "body": "python3 /mnt/skills/user/stripe/scripts/stripe_query.py products --limit 20"
      },
      {
        "title": "List prices",
        "body": "python3 /mnt/skills/user/stripe/scripts/stripe_query.py prices --limit 20"
      },
      {
        "title": "List refunds",
        "body": "python3 /mnt/skills/user/stripe/scripts/stripe_query.py refunds --limit 20"
      },
      {
        "title": "Get a specific object",
        "body": "python3 /mnt/skills/user/stripe/scripts/stripe_query.py get charges ch_abc123\npython3 /mnt/skills/user/stripe/scripts/stripe_query.py get customers cus_abc123\npython3 /mnt/skills/user/stripe/scripts/stripe_query.py get subscriptions sub_abc123"
      },
      {
        "title": "Create a refund",
        "body": "python3 /mnt/skills/user/stripe/scripts/stripe_query.py create refunds --charge ch_abc123\npython3 /mnt/skills/user/stripe/scripts/stripe_query.py create refunds --charge ch_abc123 --amount 1000"
      },
      {
        "title": "Update a customer",
        "body": "python3 /mnt/skills/user/stripe/scripts/stripe_query.py update customers cus_abc123 --email new@example.com --name \"New Name\""
      },
      {
        "title": "Output",
        "body": "Formatted table for lists, JSON for single objects. Use --json flag for raw JSON on any command."
      },
      {
        "title": "Resources",
        "body": "charges, customers, invoices, subscriptions, payment_intents, refunds, products, prices, balance_transactions"
      }
    ],
    "body": "Stripe\n\nInteract with your Stripe account directly via the Stripe API (api.stripe.com).\n\nSetup (one-time)\nGet your secret key from https://dashboard.stripe.com/apikeys\nSet environment variable:\nSTRIPE_SECRET_KEY=sk_live_...\n\nUse sk_test_... for test mode.\nQueries\nList recent charges\npython3 /mnt/skills/user/stripe/scripts/stripe_query.py charges --limit 10\n\nList customers\npython3 /mnt/skills/user/stripe/scripts/stripe_query.py customers --limit 20\n\nSearch customers by email\npython3 /mnt/skills/user/stripe/scripts/stripe_query.py customers --email user@example.com\n\nList subscriptions\npython3 /mnt/skills/user/stripe/scripts/stripe_query.py subscriptions --limit 20\n\nList active subscriptions\npython3 /mnt/skills/user/stripe/scripts/stripe_query.py subscriptions --status active --limit 20\n\nList invoices\npython3 /mnt/skills/user/stripe/scripts/stripe_query.py invoices --limit 20\n\nList payment intents\npython3 /mnt/skills/user/stripe/scripts/stripe_query.py payment_intents --limit 20\n\nList products\npython3 /mnt/skills/user/stripe/scripts/stripe_query.py products --limit 20\n\nList prices\npython3 /mnt/skills/user/stripe/scripts/stripe_query.py prices --limit 20\n\nList refunds\npython3 /mnt/skills/user/stripe/scripts/stripe_query.py refunds --limit 20\n\nGet a specific object\npython3 /mnt/skills/user/stripe/scripts/stripe_query.py get charges ch_abc123\npython3 /mnt/skills/user/stripe/scripts/stripe_query.py get customers cus_abc123\npython3 /mnt/skills/user/stripe/scripts/stripe_query.py get subscriptions sub_abc123\n\nCreate a refund\npython3 /mnt/skills/user/stripe/scripts/stripe_query.py create refunds --charge ch_abc123\npython3 /mnt/skills/user/stripe/scripts/stripe_query.py create refunds --charge ch_abc123 --amount 1000\n\nUpdate a customer\npython3 /mnt/skills/user/stripe/scripts/stripe_query.py update customers cus_abc123 --email new@example.com --name \"New Name\"\n\nOutput\n\nFormatted table for lists, JSON for single objects. Use --json flag for raw JSON on any command.\n\nResources\ncharges, customers, invoices, subscriptions, payment_intents, refunds, products, prices, balance_transactions"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/codeninja23/native-stripe",
    "publisherUrl": "https://clawhub.ai/codeninja23/native-stripe",
    "owner": "codeninja23",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/native-stripe",
    "downloadUrl": "https://openagent3.xyz/downloads/native-stripe",
    "agentUrl": "https://openagent3.xyz/skills/native-stripe/agent",
    "manifestUrl": "https://openagent3.xyz/skills/native-stripe/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/native-stripe/agent.md"
  }
}