AgentSkillsCN

integration-shopify

通过 AgenCo 可用的 Shopify 操作

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

Shopify

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

Actions

ActionDescription
list_productsRetrieves products from the store catalog
get_productFetches product details including variants and images
create_productAdds new products to the catalog
update_productModifies product information and variants
list_ordersRetrieves orders with status filters
get_orderFetches order details including items and customer
create_orderCreates new orders with line items
list_customersRetrieves customer records from the store
create_fulfillmentRecords shipment and tracking for orders
get_inventory_levelsRetrieves stock levels for products

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":["shopify list products"]}'

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":["shopify list products"]}'

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

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