# Vorim Openclaw Skill

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

- **Type:** MCP server
- **Install:** `agentstack add mcp-vorim-ai-labs-vorim-openclaw-skill`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [Vorim-AI-Labs](https://agentstack.voostack.com/s/vorim-ai-labs)
- **Installs:** 0
- **Category:** [Integrations](https://agentstack.voostack.com/c/integrations)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [Vorim-AI-Labs](https://github.com/Vorim-AI-Labs)
- **Source:** https://github.com/Vorim-AI-Labs/vorim-openclaw-skill
- **Website:** https://vorim.ai

## Install

```sh
agentstack add mcp-vorim-ai-labs-vorim-openclaw-skill
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## 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](https://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:

```bash
# 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:

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

Or manually:

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

## Setup

1. Sign up at [vorim.ai](https://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:

- `VORIM_API_KEY` — your Vorim API key, used only to authenticate with `https://api.vorim.ai`. The skill never reads, copies, or transmits any other environment variable. The full source is open at [github.com/Vorim-AI-Labs/vorim-openclaw-skill](https://github.com/Vorim-AI-Labs/vorim-openclaw-skill) and the upstream MCP server at [github.com/Vorim-AI-Labs/vorim-mcp-server](https://github.com/Vorim-AI-Labs/vorim-mcp-server).
- `mcporter` — used to run the Vorim MCP server (`@vorim/mcp-server` on npm). Nothing else.

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](https://github.com/Vorim-AI-Labs/vorim-mcp-server/tree/main/src), and the [VAIP protocol spec](https://github.com/Vorim-AI-Labs/vorim-protocol).

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

- **Platform:** [vorim.ai](https://vorim.ai)
- **MCP Server:** [github.com/Vorim-AI-Labs/vorim-mcp-server](https://github.com/Vorim-AI-Labs/vorim-mcp-server)
- **Protocol Spec (VAIP):** [github.com/Vorim-AI-Labs/vorim-protocol](https://github.com/Vorim-AI-Labs/vorim-protocol)
- **TypeScript SDK:** [@vorim/sdk on npm](https://www.npmjs.com/package/@vorim/sdk)
- **Python SDK:** [vorim on PyPI](https://pypi.org/project/vorim/)
- **OpenClaw:** [openclaw.ai](https://openclaw.ai)
- **IETF Draft:** [draft-nyantakyi-vaip-agent-identity-01](https://datatracker.ietf.org/doc/draft-nyantakyi-vaip-agent-identity/)

## License

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

---

Built by [Vorim AI](https://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.

- **Author:** [Vorim-AI-Labs](https://github.com/Vorim-AI-Labs)
- **Source:** [Vorim-AI-Labs/vorim-openclaw-skill](https://github.com/Vorim-AI-Labs/vorim-openclaw-skill)
- **License:** MIT
- **Homepage:** https://vorim.ai

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

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/mcp-vorim-ai-labs-vorim-openclaw-skill
- Seller: https://agentstack.voostack.com/s/vorim-ai-labs
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
