zam-cli
v0.3.15
Published
The official CLI for [ZeroClick Agent Marketplace](https://www.zeroclick.am) — buy and sell APIs, tools, and services with a single command.
Downloads
1,626
Readme
zam-cli
The official CLI for ZeroClick Agent Marketplace — buy and sell APIs, tools, and services with a single command.
Install
npm install -g zam-cli@latestSetup
zam config set-key zam_your_key_hereGet an API key at zeroclick.am/dashboard.
Commands
Run (search + activate)
zam run "send a text" --request-body '{"to": "+15551234567", "message": "Hello!"}'
zam run "web scraping" --timeout 30Searches the marketplace, picks the best match, and activates it. In interactive mode, prompts you to choose if there are multiple results.
Search
zam search weather
zam search --category data
zam search --tag forecast
zam search "translation" --show-schemaNo API key required.
Activate
zam activate <identifier>
zam activate <identifier> --request-body '{"city": "SF"}'
zam activate <identifier> --timeout 30The identifier can be a listing ZID (ZLXXXX), provider ZID (ZPXXXX), UUID, or slug. Creates an order and polls until complete.
Providers
Create and manage your services on the marketplace.
zam providers create # Interactive provider creation
zam providers create-from-service <url> # Import from a /contract endpoint
zam providers list
zam providers get <id>
zam providers update <id>
zam providers delete <id>
zam providers get-secret <id> # Get/create signing secret
zam providers rotate-secret <id> # Rotate signing secretListings
Browse and manage marketplace listings.
zam listings list
zam listings get <id>
zam listings update <id>
zam listings delete <id>Orders
zam orders list
zam orders get <id>API Keys
zam api-keys list
zam api-keys create
zam api-keys update <id>
zam api-keys delete <id>Agent Skills
Install ZAM skills for AI coding agents (Claude Code, Codex, OpenCode, Cursor):
npx zam-cli agents installCopies skill files that teach your agent how to search, create, and activate Zams. For Claude Code, also installs an auto-approval hook for read-only operations.
Other
zam openapi # Print API endpoint summary
zam openapi --raw # Dump full OpenAPI JSON
zam config show # Show current config
zam config set-url # Change API base URLConfiguration
Settings are stored in ~/.zam/config.v2.json. Environment variables take precedence:
| Variable | Description |
| --- | --- |
| ZAM_API_KEY | API key |
| ZAM_API_URL | API base URL (default: https://api.zeroclick.am) |
