Skip to content
VS Code

AVCS for VS Code

io.github.izagood/avcs

AI-native version control where intent, operation, evidence and decision are first-class objects.

client:VS Code transport:stdio runtime:npm

Install AVCS in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "avcs-repo",
      "description": "AVCS_REPO",
      "password": true
    }
  ],
  "servers": {
    "avcs": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@izagood/avcs"
      ],
      "env": {
        "AVCS_REPO": "${input:avcs-repo}"
      }
    }
  }
}

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

AVCS in other clients