vorim

AI agent identity, permissions, trust scores, and audit trails via Vorim AI. Use when: (1) performing sensitive actions that need permission checks, (2) logging agent actions for audit trails, (3) verifying agent identity or trust score, (4) registering a new agent. Requires mcporter with @vorim/mcp-server configured.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "vorim" with this command: npx skills add kzino/vorim-ai

Vorim AI — Agent Identity & Trust

Use Vorim to give your agent a cryptographic identity, enforce permissions before actions, log an audit trail, and verify trust scores.

Setup

  1. Create a free account at https://vorim.ai (no credit card required)
  2. Get your API key from Settings → API Keys
  3. Set the environment variable:
VORIM_API_KEY=agid_sk_live_...

The free tier includes 3 agents with full access.

When to Use

USE this skill when:

  • About to perform a sensitive or destructive action (shell commands, sending emails, making payments)
  • Logging what the agent did for accountability
  • Proving your identity to an external service or another agent
  • Registering this agent for the first time
  • Checking if you have permission to do something

DON'T use this skill for:

  • Read-only browsing or simple queries (no permission check needed)
  • Actions the user is performing directly (Vorim tracks agent actions, not human actions)

Quick Reference

# Add Vorim MCP server
mcporter config add vorim --stdio "npx -y @vorim/mcp-server"

# Register your agent (first run)
mcporter call --stdio "npx -y @vorim/mcp-server" vorim_register_agent \
  --args '{"name":"my-openclaw","capabilities":["browse","email","shell"],"scopes":["agent:read","agent:write","agent:execute"]}'

# Check permission before a sensitive action
mcporter call --stdio "npx -y @vorim/mcp-server" vorim_check_permission \
  --args '{"agent_id":"agid_...","scope":"agent:execute"}'

# Log an action to the audit trail
mcporter call --stdio "npx -y @vorim/mcp-server" vorim_emit_event \
  --args '{"agent_id":"agid_...","event_type":"tool_call","action":"send_email","result":"success"}'

# Verify trust score
mcporter call --stdio "npx -y @vorim/mcp-server" vorim_verify_trust \
  --args '{"agent_id":"agid_..."}'

Permission Scopes

Check the appropriate scope before taking action:

ScopeWhen to check
agent:readBrowsing, searching, reading files or data
agent:writeCreating files, editing data, sending messages
agent:executeRunning shell commands, scripts, automations
agent:transactMaking purchases, payments, financial actions
agent:communicateSending emails, posting to social media, messaging
agent:delegateGranting permissions to other agents
agent:elevateEscalating privileges beyond current level

Available Tools (17)

ToolPurpose
vorim_pingCheck API connectivity
vorim_register_agentRegister this agent with an Ed25519 keypair
vorim_get_agentGet agent details by ID
vorim_list_agentsList all agents in the organization
vorim_update_agentUpdate agent name, status, or capabilities
vorim_revoke_agentPermanently revoke an agent
vorim_check_permissionCheck if an action is allowed (sub-5ms)
vorim_grant_permissionGrant a permission with optional expiry and rate limits
vorim_list_permissionsList active permissions for an agent
vorim_revoke_permissionRevoke a permission
vorim_emit_eventLog a tamper-evident audit event
vorim_export_auditExport a signed audit bundle (SHA-256 manifest)
vorim_verify_trustVerify agent identity and trust score (0-100)
vorim_register_ephemeralCreate a short-lived agent with did:key identity
vorim_delegate_credentialDelegate a scoped credential to another agent
vorim_request_tokenRequest a short-lived access token
vorim_list_delegationsList credential delegations

Behavioral Rules

  1. Always check permission before destructive or external actions — protects the user
  2. Always log actions with vorim_emit_event — the audit trail is the user's proof
  3. If permission is denied, stop and inform the user — do not attempt the action
  4. Register once on first use — save the agent_id for all future operations
  5. Share your trust score when asked — transparency builds user confidence

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Security

Agentshield Audit

Trust Infrastructure for AI Agents - Like SSL/TLS for agent-to-agent communication. 77 security tests, cryptographic certificates, and Trust Handshake Protoc...

Registry SourceRecently Updated
1.2K0Profile unavailable
Security

Oraclenet Mesh

OracleNet is a mesh capability router for autonomous agents. Use when an agent needs to discover, route, verify, or pay for external capabilities through Too...

Registry SourceRecently Updated
1390Profile unavailable
Security

AxonFlow Governance Policies

Govern OpenClaw with AxonFlow — block dangerous commands, detect PII, prevent data exfiltration, protect agent config files, explain policy decisions, grant...

Registry SourceRecently Updated
2381Profile unavailable
Security

JEP Guard

JEP Guard intercepts high-risk commands, requires user confirmation, issues temporary tokens, and logs actions with exportable audit receipts.

Registry SourceRecently Updated
5021Profile unavailable
vorim | V50.AI