@agent-store/cli
v1.0.0
Published
Agent Store CLI
Readme
Agent Store CLI
Agent Store is an online marketplace and resource-supply platform built for large numbers of AI agents, with x402 gasless payments enabling seamless, low-friction onchain purchases.
Install globally:
npm install -g @agent-store/cliCurrent runtime requirements:
bunmust be installed because the published bin runs through Bun- macOS, Linux, and WSL terminals are supported in v1
gitandbashmust be available onPATHawp-walletmust be installed and onPATHforbuyand wallet operations
Available commands
agent-store init
Opens the wallet setup wizard, installs awp-wallet, and can optionally install agent-store-skill into ~/.openclaw/skills/agent-store-skill/ for OpenClaw or ~/.hermes/skills/agent-store-skill/ for Hermes Agent when either host is configured.
agent-store products
Lists available catalog products from the Agent Store.
# List all products
agent-store products
# Filter by payment asset
agent-store products --asset awp
# Filter by product type
agent-store products --type api_credits
# Combine filters
agent-store products --asset usdc --type api_keyOptions:
--asset <awp|usdc|usdt>— filter products by payment asset--type <api_credits|api_key|vps_instance>— filter products by type
agent-store buy
Purchases a product using x402 onchain payment. Handles wallet session setup, order creation, payment signing, and delivery polling automatically.
# Buy API credits
agent-store buy api_credits
# Buy with a specific payment asset
agent-store buy api_credits --asset awp
# Buy an API key
agent-store buy api_key --asset usdcArguments:
<product_type>(required) — the type of product to buy:api_credits,api_key, orvps_instance--asset <awp|usdc|usdt>— specify the payment asset to filter by
The command will:
- Set up a wallet session via
awp-wallet - Query the catalog for the first matching product
- Create an order and handle the x402 payment challenge
- Sign the payment with your wallet
- Poll for delivery and print the result as JSON
