Selvedge for VS Code
io.github.masondelan/selvedge
Decision provenance for AI-coded codebases: the why, and what was already tried and rejected.
client:VS Code
transport:stdio
runtime:pypi
Install Selvedge in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "selvedge-db",
"description": "SELVEDGE_DB",
"password": true
}
],
"servers": {
"selvedge": {
"type": "stdio",
"command": "uvx",
"args": [
"selvedge"
],
"env": {
"SELVEDGE_DB": "${input:selvedge-db}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs