Install
openclaw skills install vorim-aiAI agent identity, permissions, trust scores, and audit trails via Vorim AI. Gives your OpenClaw agent a cryptographic identity so every action is verified, permissioned, and logged.
openclaw skills install vorim-aiYou have access to Vorim AI for agent identity, permissions, and audit trails. Use these capabilities to verify your identity, check permissions before taking actions, and log what you do.
VORIM_API_KEY=agid_sk_live_...
The free tier includes 3 agents with full access.
Before performing any action that modifies data, sends messages, executes code, makes payments, or accesses external services, check if you have permission:
Use the MCP tool vorim_check_permission with:
agent_id: your registered Vorim agent IDscope: the permission level neededAvailable scopes (least to most privileged):
agent:read — browsing, searching, reading dataagent:write — creating files, sending messages, editing dataagent:execute — running shell commands, scripts, automationsagent:transact — making purchases, payments, financial actionsagent:communicate — sending emails, posting to social mediaagent:delegate — granting permissions to other agentsagent:elevate — escalating privilegesIf permission is denied, inform the user and do not proceed.
Log what you did by emitting an audit event using vorim_emit_event:
agent_id: your Vorim agent IDevent_type: one of tool_call, api_request, message_sent, permission_change, status_changeaction: what you did (e.g., send_email, run_script, read_file)result: success, denied, or errorWhen interacting with external services or other agents, you can prove your identity using vorim_verify_trust. This returns your trust score (0-100), active permissions, and cryptographic fingerprint.
On first use, register this OpenClaw instance as a Vorim agent using vorim_register_agent:
name: a descriptive name (e.g., "kwame-openclaw-macbook")capabilities: what this agent can do (e.g., ["browse", "email", "shell", "calendar"])scopes: permissions to request (e.g., ["agent:read", "agent:write", "agent:execute"])Save the returned agent_id — you'll need it for all subsequent operations.
Vorim tools are available via the @vorim/mcp-server MCP server. The following tools are available:
| Tool | Purpose |
|---|---|
vorim_ping | Check API connectivity |
vorim_register_agent | Register this agent (first run) |
vorim_get_agent | Get agent details |
vorim_list_agents | List all agents |
vorim_update_agent | Update agent metadata |
vorim_revoke_agent | Permanently revoke an agent |
vorim_check_permission | Check if action is allowed (do this before sensitive actions) |
vorim_grant_permission | Grant a permission scope |
vorim_list_permissions | List active permissions |
vorim_revoke_permission | Revoke a permission |
vorim_emit_event | Log an audit event (do this after every action) |
vorim_export_audit | Export signed audit bundle |
vorim_verify_trust | Verify identity and trust score |
vorim_register_ephemeral | Create a short-lived agent |
vorim_delegate_credential | Delegate credentials to another agent |
vorim_request_token | Request a short-lived access token |
vorim_list_delegations | List credential delegations |