Remove the megamemory MCP knowledge graph and replace with plain markdown files in .memory/ for tracking plans, research, knowledge, and implementation state. This enables collaboration across people and agentic coding tools (Claude Code, Copilot, Cursor, etc.). Changes: - Remove megamemory MCP from opencode.jsonc - Delete tool/megamemory.ts and .megamemory/ database - Rewrite all 25 config files to use .memory/ markdown files - Add cross-tool instruction file awareness (AGENTS.md, CLAUDE.md, copilot-instructions.md, .cursorrules) - Update save-memory, bootstrap-memory, status commands for md workflow - Update all agent files, skills, and commands consistently
45 lines
719 B
JSON
45 lines
719 B
JSON
{
|
|
"$schema": "https://opencode.ai/config.json",
|
|
"autoupdate": true,
|
|
"default_agent": "lead",
|
|
"plugin": ["@tarquinen/opencode-dcp"],
|
|
"agent": {
|
|
"build": {
|
|
"disable": true
|
|
},
|
|
"general": {
|
|
"disable": true
|
|
},
|
|
"explore": {
|
|
"disable": true
|
|
}
|
|
},
|
|
"permission": {
|
|
"websearch": "allow",
|
|
"question": "allow"
|
|
},
|
|
"mcp": {
|
|
"context7": {
|
|
"type": "remote",
|
|
"url": "https://mcp.context7.com/mcp",
|
|
"enabled": true
|
|
},
|
|
"gh_grep": {
|
|
"type": "remote",
|
|
"url": "https://mcp.grep.app",
|
|
"enabled": true
|
|
},
|
|
"playwright": {
|
|
"type": "local",
|
|
"command": [
|
|
"npx",
|
|
"@playwright/mcp@latest",
|
|
"--headless",
|
|
"--browser",
|
|
"chromium"
|
|
],
|
|
"enabled": true
|
|
}
|
|
}
|
|
}
|