Add OpenCode integration and adoption plan

This commit is contained in:
Sam Valladares 2026-06-08 13:12:06 -05:00
parent 6324bb7a24
commit 575d02a6f5
20 changed files with 508 additions and 25 deletions

View file

@ -141,6 +141,40 @@ Add to `%APPDATA%\Claude\claude_desktop_config.json`:
}
```
### OpenCode
OpenCode supports global and project-local config. For a project-local setup, add to `opencode.json`:
```json
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"vestige": {
"type": "local",
"command": ["vestige-mcp"],
"enabled": true,
"timeout": 10000
}
}
}
```
For isolated per-project memory, pass the data directory in the command array:
```json
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"vestige": {
"type": "local",
"command": ["vestige-mcp", "--data-dir", "./.vestige"],
"enabled": true,
"timeout": 10000
}
}
}
```
See the [OpenCode integration guide](integrations/opencode.md) for global config, verification, and troubleshooting.
---
## Custom Data Directory