AVAILABLE NOW · Claude Code COMING SOON · Codex · Antigravity · MCP-capable local agents
Note
RUNE currently supports Claude Code on Linux and macOS. Codex, Antigravity, and MCP-capable local agent runtimes powered by SLMs are coming soon. You also need a runev1_… registration string from your RUNE workspace administrator.
Run these commands inside a Claude Code session:
/plugin marketplace add https://github.com/CryptoLabInc/rune
/plugin install rune
/rune:configure
When prompted by /rune:configure, paste the registration string from your invitation email. RUNE installs its runtime, connects to your team's Console, and activates organizational memory.
Then use RUNE directly:
/rune:capture We cap payment retry backoff at five minutes to prevent queue starvation during webhook spikes.
/rune:recall Why is the payment retry delay capped at five minutes?
See the member quick start for the complete setup flow.
RUNE's memory layer is built on MCP, so it is not intended to stay tied to a single agent. Claude Code is available now. Codex, Antigravity, and MCP-capable local agent runtimes powered by SLMs—including Qwen 3.6-based setups—are coming soon. The same capture, blind-search, and recall workflow will carry across each integration.
| Command | What it does |
|---|---|
/rune:configure |
Connect or reconnect this device using a registration string. |
/rune:capture [context] |
Save a decision, insight, or piece of team context. |
/rune:recall [query] |
Find relevant memories and cite their record IDs. |
/rune:status |
Inspect configuration, Console, keys, pipelines, and the local embedder. |
/rune:deactivate |
Pause capture and recall without removing credentials. |
/rune:activate |
Resume RUNE with the existing configuration. |
/rune:update |
Update the installed rune-mcp and runed runtime binaries. |
Claude Code is available today. Dashed integrations—Codex, Antigravity, and MCP-capable local agent runtimes, including Qwen 3.6-based setups—are planned.
runedcreates the embedding on your device.- The plugin encrypts the vector with FHE and seals the memory payload before sending it through your team's Console.
- RuneSpace evaluates similarity over encrypted vectors and returns encrypted results.
- The Console, which holds the team's secret key, opens authorized results and returns the relevant memories to the agent.
RuneSpace stores neither plaintext documents nor plaintext embeddings. Team keys and access policy remain in the Console trust boundary.
This repository is the public entry point for RUNE's agent integrations. The current release contains the Claude Code plugin manifest, slash commands, session hook, and the bootstrap CLI that installs and supervises the shared runtime. Additional MCP-capable agent adapters will live alongside it as support expands.
| Path | Responsibility |
|---|---|
.claude-plugin/ |
Claude Code plugin and marketplace manifests. |
commands/claude/ |
User-facing RUNE slash commands. |
hooks/ |
Session integration and proactive capture hints. |
cmd/rune/ |
Bootstrap, update, diagnostics, and runtime launcher CLI. |
internal/ |
Verified downloads, installation checks, and process supervision. |
The bootstrap CLI is written in Go. Go 1.26.2 or newer is required for local development.
go build ./cmd/rune
go vet ./...
go test -race ./...Pull requests should keep agent-specific integration thin and leave installation, updates, and supervision in the shared bootstrap layer.
RUNE is licensed under the Apache License 2.0.