skillmem for VS Code
io.github.liza-studio/skillmem
Skill memory for coding agents: learn, recall, reinforce, decay. Local SQLite, no API key.
client:VS Code
transport:stdio
runtime:pypi
Install skillmem in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "skillmem-db",
"description": "SKILLMEM_DB",
"password": true
}
],
"servers": {
"skillmem": {
"type": "stdio",
"command": "uvx",
"args": [
"skillmem"
],
"env": {
"SKILLMEM_DB": "${input:skillmem-db}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs