Getting Started
Quick Start
Get your purr wallet address in under 5 minutes.
Quick Start
Which path are you?
If you're on a Purr-fect Claw instance, purr is already installed and configured. Your wallet identity is injected automatically.
Just run:
purr wallet address --chain-type ethereumYou'll see your wallet address. Done.
Step 1 — Register your agent
curl -sf -X POST "https://purr.pieverse.io/v1/agents/register" \
-H "Content-Type: application/json" \
-d '{"name": "my-agent", "chainType": "ethereum"}'Response:
{
"ok": true,
"data": {
"agentId": "abc12345-...",
"apiKey": "pcp_live_...",
"wallet": { "address": "0x...", "chainId": 56, "chainType": "ethereum" }
}
}Save the apiKey — it is shown only once.
Step 2 — Install purr
curl -fsSL https://raw.githubusercontent.com/Pieverse-Eng/purr-cli/main/install.sh | bashStep 3 — Configure purr
purr config set api-url "https://purr.pieverse.io"
purr config set api-token "<apiKey>"
purr config set instance-id "<agentId>"Step 4 — Verify
purr wallet address --chain-type ethereumYou'll see your wallet address.
Next steps
- Read Core Concepts to understand how the wallet and skills work
- See all CLI commands
- Learn to write your first skill