OpenClaw gateway plugin for 1claw.
Repository: github.com/1clawAI/1claw-openclaw-plugin
npm: @1claw/openclaw-plugin
Docs: OpenClaw Plugins · 1claw
OpenClaw agents need vault access, transaction signing, and sometimes an inspected LLM path. Running a separate MCP process works, but this plugin registers 27+ native tools inside the gateway itself. Secrets are fetched at runtime. Outbound messages get scanned for leaked values. Optional Shroud routing sends LLM traffic through the TEE proxy when the agent has it enabled.
Install one npm package, set ONECLAW_AGENT_API_KEY, restart the gateway. Your agent gets secrets, signing, automations, memory, runtimes, and directory tools without extra wiring. Toggle features (redaction, injection, Shroud, slash commands) in plugins.entries.1claw.config.features.
- Native agent tools — 27+ tools for secrets, vaults, policies, sharing, signing keys, multi-chain transactions, execution intents, automations, memory, runtimes, and discovery (EVM + Bitcoin, Solana, XRP, Cardano, Tron; optional, configurable)
- Automations — Create and manage cron-based scheduled tasks via
oneclaw_create_automation,oneclaw_list_automations,oneclaw_delete_automation - Agent Memory — Store and search persistent vector memory via
oneclaw_store_memory,oneclaw_search_memory - Runtimes — Deploy and manage agent runtime environments via
oneclaw_deploy_runtime,oneclaw_list_runtimes - Discovery — Publish agents to the 1Claw directory via
oneclaw_publish_agent,oneclaw_search_directory - Secret redaction — Scan outbound messages and redact leaked secret values (default on)
- Secret injection — Replace
{{1claw:path/to/secret}}placeholders at prompt time (opt-in) - Shroud routing — Route LLM traffic through Shroud TEE when the agent has
shroud_enabled(opt-in) - Key rotation monitor — Background warnings for secrets expiring within 7 days (opt-in)
- Slash commands —
/oneclaw,/oneclaw-list,/oneclaw-rotate,/oneclaw-memory(optional) - Gateway RPC —
1claw.statusfor programmatic health/status - Bundled skill — 1claw skill (
skills/1claw/SKILL.md) auto-discovered by OpenClaw
All features are toggled via plugins.entries.1claw.config.features. Auth uses config or env vars.
openclaw plugins install @1claw/openclaw-pluginOr from the repo (e.g. when developing or using as a submodule):
openclaw plugins install -l ./path/to/1claw-openclaw-pluginMinimal config (config file or env):
{
plugins: {
entries: {
"1claw": {
enabled: true,
config: {
apiKey: "ocv_..."
// agentId, vaultId, baseUrl, shroudUrl optional
// features: { tools: true, secretRedaction: true, ... }
}
}
}
}
}Env fallback: ONECLAW_AGENT_API_KEY, ONECLAW_AGENT_ID, ONECLAW_VAULT_ID, ONECLAW_BASE_URL, ONECLAW_SHROUD_URL.
Restart the OpenClaw Gateway after changing config.
When enabled, tools are registered with a oneclaw_ prefix (e.g. oneclaw_list_secrets, oneclaw_get_secret). Add them to your agent’s tools.allow (e.g. "1claw" or specific names).
| Command | Description |
|---|---|
/oneclaw |
Connection status, vault info, token TTL, features |
/oneclaw-list |
List secret paths (optional prefix arg) |
/oneclaw-rotate |
Rotate a secret: /oneclaw-rotate <path> <new-value> |
npm install
npm run typecheck- TypeScript only (no build step required for OpenClaw; jiti loads
.tsat runtime). - Optional:
npm run buildto emitdist/(not required foropenclaw plugins installwhen using source).
From the 1claw repo root:
git submodule add https://github.com/1clawAI/1claw-openclaw-plugin.git packages/openclaw-plugin
git submodule update --init --recursiveClone 1claw with the submodule:
git clone --recurse-submodules https://github.com/1clawAI/1claw.gitMIT © 1claw