Skip to content
VS Code

runeward for VS Code

io.github.runewardd/runeward

Governed execution cells for AI agents: Docker/K8s sandboxes with policy, audit, and approvals.

client:VS Code transport:stdio runtime:oci

Install runeward in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "runeward-config-dir",
      "description": "RUNEWARD_CONFIG_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "runeward-state-dir",
      "description": "RUNEWARD_STATE_DIR",
      "password": true
    }
  ],
  "servers": {
    "runeward": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/runewardd/runeward:v0.1.4"
      ],
      "env": {
        "RUNEWARD_CONFIG_DIR": "${input:runeward-config-dir}",
        "RUNEWARD_STATE_DIR": "${input:runeward-state-dir}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

runeward in other clients