Lockstep for VS Code
io.github.lockstep-team-agent/lockstep
Decision memory for AI coding agents: captures decisions once, briefs every agent before it acts.
client:VS Code
transport:stdio
runtime:npm
Install Lockstep in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "lockstep-vendor",
"description": "LOCKSTEP_VENDOR",
"password": true
}
],
"servers": {
"lockstep": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"lockstep-cli"
],
"env": {
"LOCKSTEP_VENDOR": "${input:lockstep-vendor}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs