allow reading of opencode.json(c) from .opencode/
Some checks are pending
deploy / deploy (push) Waiting to run
format / format (push) Waiting to run
snapshot / publish (push) Waiting to run
test / test (push) Waiting to run

This commit is contained in:
Aiden Cline 2025-11-07 17:34:38 -06:00
parent b2dd9fdfdf
commit 8cef7940fe
2 changed files with 13 additions and 0 deletions

View file

@ -35,6 +35,19 @@ export namespace Config {
}
}
const opencodeDirectories = await Array.fromAsync(
Filesystem.up({
targets: [".opencode"],
start: Instance.directory,
stop: Instance.worktree,
}),
)
for (const dir of opencodeDirectories.toReversed()) {
for (const file of ["opencode.jsonc", "opencode.json"]) {
result = mergeDeep(result, await loadFile(path.join(dir, file)))
}
}
// Override with custom config if provided
if (Flag.OPENCODE_CONFIG) {
result = mergeDeep(result, await loadFile(Flag.OPENCODE_CONFIG))