Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.brickken.com/llms.txt

Use this file to discover all available pages before exploring further.

The Brickken CLI (brickken-cli on npm) is a public, x402-paid command-line tool for the Brickken agentic API V2. It runs the same preparesignsend workflow documented under API Reference directly from your terminal, signing transactions locally and paying each request through x402. It covers:
  • ERC-8004 agent identity — register agents, set their URI, metadata, and operational wallet.
  • ERC-8004 reputation — give, revoke, and respond to feedback.
  • Agentic token economics — create, mint, burn, transfer, transfer-from, and approve x402-capable ERC-20 tokens.
  • Raw transaction flow — prepare, sign, send, and check status of any API V2 method, or run all three steps in one shot.
Repository: github.com/Brickken/brickken-api-cli
The CLI is x402-only. It does not use API keys — BRICKKEN_API_KEY and BKN_API_KEY are ignored. You sign and pay every request locally with a private key, which never leaves your machine. See Authentication.

How it works

High-level commands are wallet-first and prepare-only by default. Add --execute to prepare, sign locally, send, and pay the API request through x402 in one step.
# Prepare only (returns an unsigned transaction, no signing, no send)
brickken create-token --chain 11155111 --signer-address 0xYourWallet --name "My Token" --symbol MYT --agent-wallet 0xYourWallet

# Prepare, sign, send, and pay through x402 in one step
brickken create-token --chain 11155111 --signer-address 0xYourWallet --name "My Token" --symbol MYT --agent-wallet 0xYourWallet --execute --json

Command groups

GroupPurpose
brickken agentERC-8004 identity and reputation operations
brickken create-token / mint / burn / transfer / transfer-from / approveAgentic ERC-20 token economics through the x402 flow
brickken txRaw prepare / sign / send / status flows and one-shot execute

Next steps

Install the CLI

Install brickken-cli globally from npm.

Authentication

Configure your private key, RPC, and environment.

Quickstart

Run your first end-to-end x402 transaction.

API Reference

Field-level reference for every agentic method.