WaaP for Agents
With @human.tech/waap-cli, AI agents and humans can use WaaP wallet programmatically—no browser required.
Under the hood, WaaP uses 2PC - two-party computation, so no private key is ever exposed to the agent or server.
Agent actions can still be constrained by policy controls (i.e: daily spend limit) and high-risk actions can require 2FA approval.
WaaP CLI agent usage is free till April.
Installation
https://www.npmjs.com/package/@human.tech/waap-cli
npm install -g @human.tech/waap-cli@latest
# or run without installing
npx @human.tech/waap-cli@latest --helpAI Agent Skills (skills.sh)
This package ships with a native skills.sh - compatible skill definition.
If your AI agent (Claude, Cursor, Copilot, etc.) supports local agent skills, it will automatically discover the SKILL.md rules inside the @human.tech/waap-cli npm package when installed in your workspace.
Agents can also install the standalone WaaP Skills directly from its repository using the Skills CLI :
npx skills add holonym-foundation/the-waap-skillsQuick Start
1. Create an account
waap-cli signup --email youremail+agent007@example.com --password 'S3cur3Pass!'2. Check your wallet address
waap-cli whoami
# → Wallet address: 0xAbc...3. Send a transaction
waap-cli send-tx \
--to 0xRecipientAddress \
--value 0.01 \
--chain-id 1 \
--rpc https://eth.llamarpc.comNext Steps
- CLI Commands — Full command reference
- Agent Patterns — 2FA, policy controls, session management, and RPC
- Polymarket Agent Recipe — Build an autonomous trading agent
- DAO Governance Agent Recipe — Build an autonomous voting agent