Local sandbox wallet skill for OpenClaw and Claude Code agents. Install the sandbox locally, operate through localhost APIs or CLI, and support both local wallets and phase2 remote-managed wallets.
This repository is now structured so it can be added as a third-party Claude Code marketplace.
Use:
/plugin marketplace add <this-repo-url>
/plugin install claw-wallet@claw-wallet-marketplaceThis is a community marketplace setup, not an Anthropic-curated listing. To appear in Anthropic's official directory, the repo still needs to pass their review and submission flow.
Skill assets are hosted at https://www.clawwallet.cc. Deploy that site so these paths exist: /skills/install.sh, /skills/install.ps1, /skills/SKILL.md, /skills/claw-wallet.sh, /skills/claw-wallet, /skills/claw-wallet.ps1, /skills/claw-wallet.cmd, and /bin/<platform binary>.
From the workspace root:
mkdir -p skills/claw-wallet
cd skills/claw-wallet
curl -fsSL https://www.clawwallet.cc/skills/install.sh | bashNew-Item -ItemType Directory -Path "skills\claw-wallet" -Force | Out-Null
Set-Location "skills\claw-wallet"
Invoke-WebRequest -Uri "https://www.clawwallet.cc/install.ps1" -OutFile "install.ps1" -UseBasicParsing
& ".\install.ps1"For the dev test environment, prefer Option 1 so the local checkout is pinned to the dev branch explicitly.
npx skills add ClawWallet/Claw-Wallet-Skill -a openclaw --yesThen run the installer from the cloned skill directory (or use the curl flow above instead of git).
install.sh and install.ps1 are now the unified local entrypoints.
- No argument: install flow, including wallet initialization
upgrade: refresh skill files and binary without re-running wallet initstart/restart/stop/is-running/serve/uninstall: runtime management commands
Verify status:
GET {CLAY_SANDBOX_URL}/health— expected:{"status": "ok"}GET {CLAY_SANDBOX_URL}/api/v1/wallet/statuswithAuthorization: Bearer <token>when a token is present; ifAGENT_TOKENis empty, local dev mode allows the request without the header — confirm wallet is ready
Token and URL are in skills/claw-wallet/.env.clay.
See SKILL.md for full documentation, API reference, and agent rules.