-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.jsonc
More file actions
26 lines (26 loc) · 1.06 KB
/
Copy pathopencode.jsonc
File metadata and controls
26 lines (26 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
// Project-level opencode config.
//
// This project previously used the superlocalmemory (SLM) MCP for
// agent memory. That setup was abandoned: the daemon captures its
// SL_MEMORY_PATH at startup, the opencode config only protects
// the MCP process (not the CLI), and a stale global daemon can
// hijack CLI calls and write to ~/.superlocalmemory/. The SLM
// dashboard also picks up memories from across DBs and snapshots,
// which made it hard to keep this project clean.
//
// Memories for this project are now kept in plain markdown
// (./MEMORY.md). See AGENTS.md "memory" for the rule. If a future
// agent wants structured memory, opt in explicitly by setting
// superlocalmemory.enabled to true and pointing SL_MEMORY_PATH
// at a project-local path via environment, not via the opencode
// config — and verify the daemon's actual scope before writing.
//
// The schema is at https://opencode.ai/config.json
"$schema": "https://opencode.ai/config.json",
"mcp": {
"superlocalmemory": {
"enabled": false
}
}
}