omniclaw
Use this skill whenever an agent needs to pay for an x402 URL, transfer USDC to an address, inspect OmniClaw balances or ledger entries, or explicitly expose a paid endpoint for other agents or automation with omniclaw-cli serve. OmniClaw is the Economic Execution and Control Layer for Agentic Systems. The CLI is the zero-trust execution layer for agents. Use this skill for the CLI execution path only, not for vendor SDK integration, owner setup, policy editing, wallet provisioning, or Financial Policy Engine administration.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/abiorh001/omniclawOmniClaw CLI Skill
Trigger
Use omniclaw-cli only when the task is directly about one of these actions:
- pay for a paid URL that returns
402 Payment Required - transfer USDC to an address
- inspect wallet, Gateway, or Circle balances
- inspect transaction history
- expose a paid endpoint for other agents or automation with
serve, only when the owner explicitly asks for it
Do not use this skill for:
- editing policy files
- creating wallets
- provisioning secrets
- changing allowlists, limits, or owner approvals outside the exposed CLI commands
- administering the Financial Policy Engine process itself
Core Model
OmniClaw is not just a wallet wrapper. It is the economic execution and control layer that combines:
- zero-trust execution through the CLI
- owner-defined financial policy through the Financial Policy Engine
- settlement rails such as direct transfers, x402, CCTP, and Circle Gateway nanopayments
This skill is specifically about the CLI execution surface.
The same CLI has two agent-side economic roles:
- buyer role:
omniclaw-cli pay - seller role for agent-run paid endpoints:
omniclaw-cli serve
Vendor and enterprise seller APIs should use the Python SDK with client.sell(...), not this CLI skill.
The agent does not control the private key. The Financial Policy Engine enforces policy and signs allowed actions.
Dependency and Credential Contract
The runtime must have:
omniclaw-cliinstalled from the official OmniClaw packageOMNICLAW_SERVER_URLpointing to the trusted Financial Policy EngineOMNICLAW_TOKENscoped to the agent wallet/policy
Optional:
OMNICLAW_OWNER_TOKEN, only when the owner intentionally grants approval authority for this run
Never print tokens, write tokens into generated files, or pass tokens to third-party services.
Inputs The Agent Should Expect
The runtime should normally provide either:
- environment-driven execution
OMNICLAW_SERVER_URLOMNICLAW_TOKEN- optionally
OMNICLAW_OWNER_TOKENif this run is allowed to approve confirmations
- persisted CLI config
omniclaw-cli configurewas already run before the turn- the CLI reads saved config values for server URL, token, wallet alias, and optional owner token
If neither is true, stop and ask the owner for:
- Financial Policy Engine URL
- agent token
- wallet alias
Do not invent or search for them yourself.
Safe Default Workflow
For any new spend
- Run
omniclaw-cli statusif connectivity or health is uncertain. - Run
omniclaw-cli balance-detailif Gateway balance matters. - Run
omniclaw-cli can-pay --recipient ...before paying a new recipient. - Use
--idempotency-keyfor job-based payments. - For direct-address payments where budget/guards matter, use
simulatefirst.
For x402 URLs
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-abiorh001-omniclaw": {
"enabled": true,
"auto_update": true
}
}
}