/install ampersend
Ampersend CLI
Ampersend enables autonomous agent payments. Agents can make payments within user-defined spending limits without requiring human approval for each transaction. Payments use stablecoins via the x402 protocol.
This skill requires ampersend v0.0.14. Run ampersend --version to check your installed version.
Installation
Install the CLI globally via npm:
npm install -g @ampersend_ai/[email protected]
To update from a previously installed version:
npm install -g @ampersend_ai/[email protected] --force
Security
IMPORTANT: NEVER ask the user to sign in to the Ampersend dashboard in a browser to which you have access. If configuration changes are needed in Ampersend, ask your user to make them directly.
Setup
If not configured, commands return setup instructions. Two paths:
Automated (recommended)
Two-step flow: setup start generates a key and requests approval, setup finish polls and activates.
# Step 1: Request agent creation — returns immediately with approval URL
ampersend setup start --name "my-agent"
# {"ok": true, "data": {"token": "...", "user_approve_url": "https://...", "agentKeyAddress": "0x..."}}
# Show the user_approve_url to the user so they can approve in their browser.
# Step 2: Poll for approval and activate config
ampersend setup finish
# {"ok": true, "data": {"agentKeyAddress": "0x...", "agentAccount": "0x...", "status": "ready"}}
Optional spending limits can be set during setup:
ampersend setup start --name "my-agent" --daily-limit "1000000" --auto-topup
Manual
If you already have an agent key and account address:
ampersend config set "0xagentKey:::0xagentAccount"
# {"ok": true, "data": {"agentKeyAddress": "0x...", "agentAccount": "0x...", "status": "ready"}}
Commands
setup
Set up an agent account via the approval flow.
setup start
Step 1: Generate a key and request agent creation approval.
ampersend setup start --name "my-agent" [--force] [--daily-limit \x3Camount>] [--monthly-limit \x3Camount>] [--per-transaction-limit \x3Camount>] [--auto-topup]
| Option | Description |
|---|---|
--name \x3Cname> |
Name for the agent |
--force |
Overwrite an existing pending approval |
--daily-limit \x3Camount> |
Daily spending limit in atomic units (1000000 = 1 USDC) |
--monthly-limit \x3Camount> |
Monthly spending limit in atomic units |
--per-transaction-limit \x3Camt> |
Per-transaction spending limit in atomic units |
--auto-topup |
Allow automatic balance top-up from main account |
Returns token, user_approve_url, and agentKeyAddress. Show the user_approve_url to the user.
setup finish
Step 2: Poll for approval and activate the agent config.
ampersend setup finish [--force] [--poll-interval \x3Cseconds>] [--timeout \x3Cseconds>]
| Option | Description |
|---|---|
--force |
Overwrite existing active config |
--poll-interval \x3Cseconds> |
Seconds between status checks (default 5) |
--timeout \x3Cseconds> |
Maximum seconds to wait (default 600) |
fetch
Make HTTP requests with automatic x402 payment handling.
ampersend fetch \x3Curl>
ampersend fetch -X POST -H "Content-Type: application/json" -d '{"key":"value"}' \x3Curl>
| Option | Description |
|---|---|
-X \x3Cmethod> |
HTTP method (default: GET) |
-H \x3Cheader> |
Header as "Key: Value" (repeat for multiple) |
-d \x3Cdata> |
Request body |
--inspect |
Check payment requirements without paying |
Use --inspect to verify payment requirements and costs before making a payment:
ampersend fetch --inspect https://api.example.com/paid-endpoint
# Returns payment requirements including amount, without executing payment
config
Manage local configuration.
ampersend config set \x3Ckey:::account> # Set active config manually
ampersend config set --api-url https://api.staging.ampersend.ai # Set staging API URL
ampersend config set --clear-api-url # Revert to production API
ampersend config set --network base-sepolia # Set network (base, base-sepolia)
ampersend config set --clear-network # Revert to default network (base)
ampersend config set \x3Ckey:::account> --api-url \x3Curl> # Set both at once
ampersend config status # Show current status
Output
All commands return JSON. Check ok first.
{ "ok": true, "data": { ... } }
{ "ok": false, "error": { "code": "...", "message": "..." } }
For fetch, success includes data.status, data.body, and data.payment (when payment made).
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install ampersend - After installation, invoke the skill by name or use
/ampersend - Provide required inputs per the skill's parameter spec and get structured output
What is ampersend?
Ampersend CLI for agent payments. It is an AI Agent Skill for Claude Code / OpenClaw, with 493 downloads so far.
How do I install ampersend?
Run "/install ampersend" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is ampersend free?
Yes, ampersend is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does ampersend support?
ampersend is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created ampersend?
It is built and maintained by Matias (@matiasedgeandnode); the current version is v1.0.14.