Skip to content
VS Code

DOS — the trust substrate for agent fleets for VS Code

io.github.anthony-chaudhary/dos-kernel

Verify what agents actually shipped, arbitrate file collisions, refuse with structured reasons.

client:VS Code transport:stdio runtime:pypi

Install DOS — the trust substrate for agent fleets in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "dispatch-workspace",
      "description": "DISPATCH_WORKSPACE",
      "password": true
    }
  ],
  "servers": {
    "dos-kernel": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "dos-kernel"
      ],
      "env": {
        "DISPATCH_WORKSPACE": "${input:dispatch-workspace}"
      }
    }
  }
}

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

DOS — the trust substrate for agent fleets in other clients