AgentStack
MCP verified MIT Self-run

Vorim Openclaw Skill

mcp-vorim-ai-labs-vorim-openclaw-skill · by Vorim-AI-Labs

Official OpenClaw Skill for Vorim AI — cryptographic identity, scoped permissions, and tamper-evident audit trails for OpenClaw agents.

No reviews yet
0 installs
14 views
0.0% view→install

Install

$ agentstack add mcp-vorim-ai-labs-vorim-openclaw-skill

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Vorim Openclaw Skill? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Vorim AI — OpenClaw Skill

> Give your OpenClaw agent its own cryptographic identity, scoped permissions, and a tamper-evident audit trail.

This is the official OpenClaw Skill for Vorim AI, the identity and trust layer for autonomous AI agents.

Once installed, your OpenClaw agent will:

  • Verify its own identity before acting
  • Check permissions before destructive or external actions (shell, email, payments)
  • Log every action with a hash-linked, tamper-evident audit trail
  • Build a public trust score (0-100) over time that any third party can verify

What is Vorim AI?

Vorim AI gives every AI agent its own Ed25519 keypair, time-bounded scoped permissions, and a publicly verifiable trust score. The protocol underneath (VAIP) is open, MIT-licensed, and submitted to IETF as draft-nyantakyi-vaip-agent-identity-01.

If you've ever asked "which agent did this?" after something went wrong — Vorim is what answers that question, instantly, with cryptographic proof.

Repo Layout

vorim-openclaw-skill/
├── README.md
├── LICENSE
└── skills/
    └── vorim/
        └── SKILL.md   ← the skill manifest

Install

Option 1: Copy the skill

Copy skills/vorim/SKILL.md to your OpenClaw skills directory:

# Global (all workspaces)
mkdir -p ~/.openclaw/skills/vorim
cp skills/vorim/SKILL.md ~/.openclaw/skills/vorim/

# Or workspace-specific
mkdir -p ./skills/vorim
cp skills/vorim/SKILL.md ./skills/vorim/

Option 2: Add the MCP server

Add Vorim's MCP server to your OpenClaw config:

mcporter add vorim --command "npx @vorim/mcp-server" --env VORIM_API_KEY=agid_sk_live_...

Or manually:

{
  "mcpServers": {
    "vorim": {
      "command": "npx",
      "args": ["-y", "@vorim/mcp-server"],
      "env": {
        "VORIM_API_KEY": "agid_sk_live_..."
      }
    }
  }
}

Setup

  1. Sign up at vorim.ai (free, no credit card)
  2. Go to Settings → API Keys and create a key
  3. Set VORIM_API_KEY=agid_sk_live_... in your environment
  4. On first run, the skill registers your OpenClaw agent automatically and saves the agent ID

The free tier supports 3 agents and 10K events per month — enough for personal use and prototyping.

17 MCP Tools Available

| Category | Tools | |---|---| | Health | vorim_ping | | Identity | vorim_register_agent, vorim_register_ephemeral, vorim_get_agent, vorim_list_agents, vorim_update_agent, vorim_revoke_agent | | Permissions | vorim_check_permission, vorim_grant_permission, vorim_list_permissions, vorim_revoke_permission | | Credentials | vorim_delegate_credential, vorim_request_token, vorim_list_delegations | | Audit | vorim_emit_event, vorim_export_audit | | Trust | vorim_verify_trust |

Why This Matters

If you run OpenClaw agents that browse the web, run shell commands, send emails, or call APIs, those agents are acting in your name. Without an identity layer:

  • You can't prove which agent did what
  • You can't restrict permissions per agent
  • A compromised marketplace skill has the same authority as any trusted action
  • Your audit trail is "trust the database"

Vorim adds the missing layer. Every agent action is identified, scoped, and logged in a way that's verifiable by you, by your security team, or by a regulator — without trusting any single vendor's database.

Note on ClawHub's "high-impact capability" flag

ClawHub's automated security scanner flags this skill as "high-impact" because it declares two things that malicious skills also declare: an environment variable requirement (VORIM_API_KEY) and an external binary dependency (mcporter). The same signal triggers on roughly half of all ClawHub skills, including legitimate security tools.

Here's the honest breakdown of why those declarations exist:

The skill is MIT-0 licensed and every file in the repo is public. If you'd like to verify before installing, read the [SKILL.md](skills/vorim/SKILL.md), the MCP server source, and the VAIP protocol spec.

If you spot anything wrong — security, accuracy, or otherwise — please open an issue or email [kwame@vorim.ai](mailto:kwame@vorim.ai). Vorim is built by a solo founder; honest feedback is taken seriously.

Links

License

MIT — see [LICENSE](LICENSE) for details.


Built by Vorim AI. Questions or feedback: [kwame@vorim.ai](mailto:kwame@vorim.ai).

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.