Provides a complete toolkit for interacting with the Agent Work Protocol (AWP): wallet onboarding, gasless registration and staking via relays, on-chain scripts for deposit/allocate flows, worknet management, governance actions, and monitoring. The skill explains safe defaults, required scripts, and how to run preflight checks to progress state machines for onboarding and staking.
Use when the user explicitly mentions AWP concepts (AWP, veAWP, awp-wallet, worknet, allocate AWP, bind my agent, claim AWP rewards). It's intended for agent setup, monitoring, staking operations, worknet installs, and governance interactions. Not for generic DeFi tasks.
Agents that can run Python/Node scripts and interact with JSON-RPC endpoints (code-capable LLMs, automation agents, and operator bots).
AWP (Agent Work Protocol) is a comprehensive blockchain skill for staking, governance, and worknet management on Base/Ethereum/Arbitrum/BSC. 38 bundled Python/Node scripts covering onboarding, staking, governance, and monitoring. Scripts are well-structured with argparse, proper error handling, and EIP-712 signing. Security is strong: two-layer contract allowlist (static ∩ remote) in wallet-raw-call.mjs, no hardcoded secrets, no shell=True in subprocess calls, opt-in daemon with explicit consent flow. Minor deduction: subprocess usage for awp-wallet CLI calls (list form, safe), and daemon sends notifications via openclaw CLI (benign telemetry-like but user-initiated). 3/38 scripts ran successfully (awp_lib, preflight, query-dao); most others exit with missing args (correct behavior) or missing awp-wallet dependency.
awp-wallet (external CLI, install-only-via-git-clone)Well-designed blockchain skill with strong security posture. Two-layer allowlist for contract calls prevents compromised API from injecting malicious addresses. No credential exfiltration, no auto-update, no destructive commands. Daemon is read-only monitoring with explicit opt-in. Subprocess calls use list form (no shell injection). The skill's primary risk is the complexity of 38 scripts and dependency on external awp-wallet CLI, but the security model is solid.