AgentSkillsCN

integration-stripe

通过 AgenCo 可用的 Stripe 操作

SKILL.md
--- frontmatter
name: integration-stripe
description: "Stripe actions available through AgenCo"
user-invocable: false
disable-model-invocation: false

Stripe

Actions available through AgenCo secure gateway. All credentials are stored in the cloud vault — never exposed locally.

Actions

ActionDescription
create_customerGenerates new customer records for billing purposes
get_customerRetrieves customer details and payment methods
create_payment_intentInitiates payment processing for orders
get_payment_intentRetrieves payment status and transaction details
create_chargeProcesses one-time charges to payment methods
create_refundIssues refunds for previous charges
list_subscriptionsRetrieves active and past subscriptions
create_subscriptionSets up recurring billing for customers
create_invoiceGenerates invoices for customer billing
list_invoicesRetrieves invoice history for customers

How to Use

Always search first to discover exact tool names and their input schemas, then call the tool.

Step 1: Search for the tool

bash
agenco search-tools '{"queries":["stripe create customer"]}'

The response includes toolName (exact name) and inputSchema (required/optional parameters).

Step 2: Call the tool

Use the exact toolName and match the inputSchema from the search results:

bash
agenco call-tool '{"toolName":"<toolName from search>","input":{...}}'

Example

bash
# Find the right tool
agenco search-tools '{"queries":["stripe create customer"]}'

# Call it (use the exact toolName and schema from the search result)
agenco call-tool '{"toolName":"stripe_create_customer","input":{...}}'

If Stripe is not connected, run agenco list-connected-integrations to check, then connect it via the Shield UI.