bonecode 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (605) hide show
  1. package/ARCHITECTURE.md +183 -0
  2. package/README.md +71 -0
  3. package/bin/bonecode +62 -0
  4. package/bone/migrations/rag_vectors.sql +258 -0
  5. package/bone/output/agent/.dockerignore +7 -0
  6. package/bone/output/agent/.env.example +36 -0
  7. package/bone/output/agent/.github/workflows/ci.yaml +58 -0
  8. package/bone/output/agent/AgentDomain.bone.map +350 -0
  9. package/bone/output/agent/AgentDomain.postman_collection.json +958 -0
  10. package/bone/output/agent/Dockerfile +22 -0
  11. package/bone/output/agent/README.md +47 -0
  12. package/bone/output/agent/admin/index.html +740 -0
  13. package/bone/output/agent/docker-compose.yaml +22 -0
  14. package/bone/output/agent/k8s/deployment.yaml +75 -0
  15. package/bone/output/agent/migrations/agent.sql +36 -0
  16. package/bone/output/agent/migrations/agent_instance.sql +36 -0
  17. package/bone/output/agent/migrations/audit_log.sql +18 -0
  18. package/bone/output/agent/migrations/build_step.sql +34 -0
  19. package/bone/output/agent/migrations/event_outbox.sql +31 -0
  20. package/bone/output/agent/migrations/plan.sql +30 -0
  21. package/bone/output/agent/migrations/task.sql +30 -0
  22. package/bone/output/agent/migrations/tool_call.sql +33 -0
  23. package/bone/output/agent/openapi.yaml +1116 -0
  24. package/bone/output/agent/package.json +36 -0
  25. package/bone/output/agent/schema.graphql +233 -0
  26. package/bone/output/agent/sdk/client.ts +231 -0
  27. package/bone/output/agent/src/algorithms.ts +2 -0
  28. package/bone/output/agent/src/audit.ts +44 -0
  29. package/bone/output/agent/src/auth.ts +57 -0
  30. package/bone/output/agent/src/cron.ts +12 -0
  31. package/bone/output/agent/src/db.ts +32 -0
  32. package/bone/output/agent/src/debug.ts +66 -0
  33. package/bone/output/agent/src/events.ts +243 -0
  34. package/bone/output/agent/src/extensions.ts +54 -0
  35. package/bone/output/agent/src/failure_rules.ts +323 -0
  36. package/bone/output/agent/src/flows.ts +168 -0
  37. package/bone/output/agent/src/health.ts +43 -0
  38. package/bone/output/agent/src/index.ts +100 -0
  39. package/bone/output/agent/src/logger.ts +66 -0
  40. package/bone/output/agent/src/metrics.ts +75 -0
  41. package/bone/output/agent/src/migrate.ts +352 -0
  42. package/bone/output/agent/src/migration_diff.ts +108 -0
  43. package/bone/output/agent/src/notify.ts +125 -0
  44. package/bone/output/agent/src/routes/agent_instance.ts +234 -0
  45. package/bone/output/agent/src/routes/build_step.ts +105 -0
  46. package/bone/output/agent/src/routes/plan.ts +91 -0
  47. package/bone/output/agent/src/routes/task.ts +105 -0
  48. package/bone/output/agent/src/routes/tool_call.ts +166 -0
  49. package/bone/output/agent/src/schemas.ts +384 -0
  50. package/bone/output/agent/src/state_machines/agent_instance.ts +24 -0
  51. package/bone/output/agent/src/state_machines/build_step.ts +22 -0
  52. package/bone/output/agent/src/state_machines/plan.ts +22 -0
  53. package/bone/output/agent/src/state_machines/task.ts +22 -0
  54. package/bone/output/agent/src/state_machines/tool_call.ts +22 -0
  55. package/bone/output/agent/src/tests.ts +362 -0
  56. package/bone/output/agent/src/websocket.ts +201 -0
  57. package/bone/output/agent/tsconfig.json +25 -0
  58. package/bone/output/rag/.dockerignore +7 -0
  59. package/bone/output/rag/.env.example +36 -0
  60. package/bone/output/rag/.github/workflows/ci.yaml +58 -0
  61. package/bone/output/rag/Dockerfile +22 -0
  62. package/bone/output/rag/RAGDomain.bone.map +287 -0
  63. package/bone/output/rag/RAGDomain.postman_collection.json +923 -0
  64. package/bone/output/rag/README.md +47 -0
  65. package/bone/output/rag/admin/index.html +818 -0
  66. package/bone/output/rag/docker-compose.yaml +22 -0
  67. package/bone/output/rag/k8s/deployment.yaml +75 -0
  68. package/bone/output/rag/migrations/audit_log.sql +18 -0
  69. package/bone/output/rag/migrations/code_chunk.sql +34 -0
  70. package/bone/output/rag/migrations/code_file.sql +33 -0
  71. package/bone/output/rag/migrations/event_outbox.sql +31 -0
  72. package/bone/output/rag/migrations/indexing_job.sql +33 -0
  73. package/bone/output/rag/migrations/knowledge_base.sql +35 -0
  74. package/bone/output/rag/migrations/memory_entry.sql +34 -0
  75. package/bone/output/rag/openapi.yaml +1097 -0
  76. package/bone/output/rag/package.json +36 -0
  77. package/bone/output/rag/schema.graphql +245 -0
  78. package/bone/output/rag/sdk/client.ts +234 -0
  79. package/bone/output/rag/src/algorithms.ts +2 -0
  80. package/bone/output/rag/src/audit.ts +37 -0
  81. package/bone/output/rag/src/auth.ts +57 -0
  82. package/bone/output/rag/src/cron.ts +12 -0
  83. package/bone/output/rag/src/db.ts +32 -0
  84. package/bone/output/rag/src/debug.ts +66 -0
  85. package/bone/output/rag/src/events.ts +243 -0
  86. package/bone/output/rag/src/extensions.ts +350 -0
  87. package/bone/output/rag/src/failure_rules.ts +315 -0
  88. package/bone/output/rag/src/flows.ts +239 -0
  89. package/bone/output/rag/src/health.ts +43 -0
  90. package/bone/output/rag/src/index.ts +95 -0
  91. package/bone/output/rag/src/logger.ts +66 -0
  92. package/bone/output/rag/src/metrics.ts +75 -0
  93. package/bone/output/rag/src/migrate.ts +364 -0
  94. package/bone/output/rag/src/migration_diff.ts +108 -0
  95. package/bone/output/rag/src/notify.ts +99 -0
  96. package/bone/output/rag/src/routes/code_chunk.ts +75 -0
  97. package/bone/output/rag/src/routes/code_file.ts +101 -0
  98. package/bone/output/rag/src/routes/indexing_job.ts +87 -0
  99. package/bone/output/rag/src/routes/knowledge_base.ts +230 -0
  100. package/bone/output/rag/src/routes/memory_entry.ts +87 -0
  101. package/bone/output/rag/src/schemas.ts +394 -0
  102. package/bone/output/rag/src/state_machines/code_file.ts +23 -0
  103. package/bone/output/rag/src/state_machines/indexing_job.ts +22 -0
  104. package/bone/output/rag/src/state_machines/knowledge_base.ts +23 -0
  105. package/bone/output/rag/src/state_machines/memory_entry.ts +20 -0
  106. package/bone/output/rag/src/tests.ts +340 -0
  107. package/bone/output/rag/tsconfig.json +25 -0
  108. package/bone/output/session/.dockerignore +7 -0
  109. package/bone/output/session/.env.example +36 -0
  110. package/bone/output/session/.github/workflows/ci.yaml +58 -0
  111. package/bone/output/session/Dockerfile +22 -0
  112. package/bone/output/session/README.md +47 -0
  113. package/bone/output/session/SessionDomain.bone.map +350 -0
  114. package/bone/output/session/SessionDomain.postman_collection.json +958 -0
  115. package/bone/output/session/admin/index.html +667 -0
  116. package/bone/output/session/docker-compose.yaml +22 -0
  117. package/bone/output/session/k8s/deployment.yaml +75 -0
  118. package/bone/output/session/migrations/audit_log.sql +18 -0
  119. package/bone/output/session/migrations/event_outbox.sql +31 -0
  120. package/bone/output/session/migrations/message.sql +31 -0
  121. package/bone/output/session/migrations/part.sql +28 -0
  122. package/bone/output/session/migrations/permission.sql +28 -0
  123. package/bone/output/session/migrations/project.sql +28 -0
  124. package/bone/output/session/migrations/session.sql +38 -0
  125. package/bone/output/session/openapi.yaml +1101 -0
  126. package/bone/output/session/package.json +36 -0
  127. package/bone/output/session/schema.graphql +222 -0
  128. package/bone/output/session/sdk/client.ts +225 -0
  129. package/bone/output/session/src/algorithms.ts +2 -0
  130. package/bone/output/session/src/audit.ts +44 -0
  131. package/bone/output/session/src/auth.ts +57 -0
  132. package/bone/output/session/src/cron.ts +12 -0
  133. package/bone/output/session/src/db.ts +32 -0
  134. package/bone/output/session/src/debug.ts +66 -0
  135. package/bone/output/session/src/events.ts +270 -0
  136. package/bone/output/session/src/extensions.ts +215 -0
  137. package/bone/output/session/src/failure_rules.ts +284 -0
  138. package/bone/output/session/src/flows.ts +168 -0
  139. package/bone/output/session/src/health.ts +43 -0
  140. package/bone/output/session/src/index.ts +100 -0
  141. package/bone/output/session/src/logger.ts +66 -0
  142. package/bone/output/session/src/metrics.ts +75 -0
  143. package/bone/output/session/src/migrate.ts +332 -0
  144. package/bone/output/session/src/migration_diff.ts +108 -0
  145. package/bone/output/session/src/notify.ts +112 -0
  146. package/bone/output/session/src/routes/message.ts +93 -0
  147. package/bone/output/session/src/routes/part.ts +79 -0
  148. package/bone/output/session/src/routes/permission.ts +79 -0
  149. package/bone/output/session/src/routes/project.ts +79 -0
  150. package/bone/output/session/src/routes/session.ts +294 -0
  151. package/bone/output/session/src/schemas.ts +357 -0
  152. package/bone/output/session/src/state_machines/session.ts +23 -0
  153. package/bone/output/session/src/tests.ts +326 -0
  154. package/bone/output/session/src/websocket.ts +201 -0
  155. package/bone/output/session/tsconfig.json +25 -0
  156. package/bone/output/workspace/.dockerignore +7 -0
  157. package/bone/output/workspace/.env.example +36 -0
  158. package/bone/output/workspace/.github/workflows/ci.yaml +58 -0
  159. package/bone/output/workspace/Dockerfile +22 -0
  160. package/bone/output/workspace/README.md +45 -0
  161. package/bone/output/workspace/WorkspaceDomain.bone.map +189 -0
  162. package/bone/output/workspace/WorkspaceDomain.postman_collection.json +621 -0
  163. package/bone/output/workspace/admin/index.html +485 -0
  164. package/bone/output/workspace/docker-compose.yaml +22 -0
  165. package/bone/output/workspace/k8s/deployment.yaml +75 -0
  166. package/bone/output/workspace/migrations/audit_log.sql +18 -0
  167. package/bone/output/workspace/migrations/codebase.sql +34 -0
  168. package/bone/output/workspace/migrations/event_outbox.sql +31 -0
  169. package/bone/output/workspace/migrations/snapshot.sql +32 -0
  170. package/bone/output/workspace/migrations/workspace.sql +33 -0
  171. package/bone/output/workspace/openapi.yaml +721 -0
  172. package/bone/output/workspace/package.json +36 -0
  173. package/bone/output/workspace/schema.graphql +153 -0
  174. package/bone/output/workspace/sdk/client.ts +155 -0
  175. package/bone/output/workspace/src/algorithms.ts +2 -0
  176. package/bone/output/workspace/src/audit.ts +37 -0
  177. package/bone/output/workspace/src/auth.ts +57 -0
  178. package/bone/output/workspace/src/cron.ts +12 -0
  179. package/bone/output/workspace/src/db.ts +32 -0
  180. package/bone/output/workspace/src/debug.ts +66 -0
  181. package/bone/output/workspace/src/events.ts +243 -0
  182. package/bone/output/workspace/src/extensions.ts +44 -0
  183. package/bone/output/workspace/src/failure_rules.ts +153 -0
  184. package/bone/output/workspace/src/health.ts +43 -0
  185. package/bone/output/workspace/src/index.ts +89 -0
  186. package/bone/output/workspace/src/logger.ts +66 -0
  187. package/bone/output/workspace/src/metrics.ts +75 -0
  188. package/bone/output/workspace/src/migrate.ts +220 -0
  189. package/bone/output/workspace/src/migration_diff.ts +108 -0
  190. package/bone/output/workspace/src/notify.ts +73 -0
  191. package/bone/output/workspace/src/routes/codebase.ts +87 -0
  192. package/bone/output/workspace/src/routes/snapshot.ts +127 -0
  193. package/bone/output/workspace/src/routes/workspace.ts +190 -0
  194. package/bone/output/workspace/src/schemas.ts +231 -0
  195. package/bone/output/workspace/src/state_machines/codebase.ts +21 -0
  196. package/bone/output/workspace/src/state_machines/snapshot.ts +20 -0
  197. package/bone/output/workspace/src/state_machines/workspace.ts +21 -0
  198. package/bone/output/workspace/src/tests.ts +249 -0
  199. package/bone/output/workspace/tsconfig.json +25 -0
  200. package/compat/opencode_adapter.ts +410 -0
  201. package/package.json +69 -0
  202. package/scripts/check_benchmark_session.js +34 -0
  203. package/scripts/check_finish_event.js +24 -0
  204. package/scripts/check_parts.js +15 -0
  205. package/scripts/compile.js +79 -0
  206. package/scripts/copy_opencode.ps1 +53 -0
  207. package/scripts/create_functions.sql +129 -0
  208. package/scripts/migrate.js +85 -0
  209. package/scripts/migrate_from_opencode.ts +218 -0
  210. package/scripts/test_agent_loop.js +101 -0
  211. package/scripts/test_api.ps1 +116 -0
  212. package/scripts/test_context_builder.js +136 -0
  213. package/scripts/test_context_builder.ts +97 -0
  214. package/scripts/test_rag.js +189 -0
  215. package/scripts/test_stream_events.js +36 -0
  216. package/scripts/test_websocket_and_saga.js +216 -0
  217. package/src/cli.ts +475 -0
  218. package/src/config.ts +162 -0
  219. package/src/context_builder.ts +598 -0
  220. package/src/engine/account/account.sql.ts +39 -0
  221. package/src/engine/account/account.ts +456 -0
  222. package/src/engine/account/repo.ts +166 -0
  223. package/src/engine/account/schema.ts +99 -0
  224. package/src/engine/account/url.ts +8 -0
  225. package/src/engine/acp/README.md +174 -0
  226. package/src/engine/acp/agent.ts +1968 -0
  227. package/src/engine/acp/runtime.ts +22 -0
  228. package/src/engine/acp/session.ts +122 -0
  229. package/src/engine/acp/types.ts +24 -0
  230. package/src/engine/agent/agent.ts +463 -0
  231. package/src/engine/agent/generate.txt +75 -0
  232. package/src/engine/agent/prompt/compaction.txt +9 -0
  233. package/src/engine/agent/prompt/explore.txt +18 -0
  234. package/src/engine/agent/prompt/scout.txt +36 -0
  235. package/src/engine/agent/prompt/summary.txt +11 -0
  236. package/src/engine/agent/prompt/title.txt +44 -0
  237. package/src/engine/agent/subagent-permissions.ts +34 -0
  238. package/src/engine/auth/index.ts +96 -0
  239. package/src/engine/background/background/job.ts +200 -0
  240. package/src/engine/background/job.ts +200 -0
  241. package/src/engine/bus/bus-event.ts +45 -0
  242. package/src/engine/bus/global.ts +22 -0
  243. package/src/engine/bus/index.ts +203 -0
  244. package/src/engine/command/command/index.ts +181 -0
  245. package/src/engine/command/command/template/initialize.txt +66 -0
  246. package/src/engine/command/command/template/review.txt +101 -0
  247. package/src/engine/command/index.ts +181 -0
  248. package/src/engine/command/template/initialize.txt +66 -0
  249. package/src/engine/command/template/review.txt +101 -0
  250. package/src/engine/config/agent.ts +172 -0
  251. package/src/engine/config/attachment.ts +25 -0
  252. package/src/engine/config/command.ts +62 -0
  253. package/src/engine/config/config.ts +833 -0
  254. package/src/engine/config/console-state.ts +14 -0
  255. package/src/engine/config/entry-name.ts +16 -0
  256. package/src/engine/config/error.ts +23 -0
  257. package/src/engine/config/formatter.ts +13 -0
  258. package/src/engine/config/layout.ts +6 -0
  259. package/src/engine/config/lsp.ts +43 -0
  260. package/src/engine/config/managed.ts +71 -0
  261. package/src/engine/config/markdown.ts +96 -0
  262. package/src/engine/config/mcp.ts +56 -0
  263. package/src/engine/config/model-id.ts +5 -0
  264. package/src/engine/config/parse.ts +79 -0
  265. package/src/engine/config/paths.ts +45 -0
  266. package/src/engine/config/permission.ts +58 -0
  267. package/src/engine/config/plugin.ts +84 -0
  268. package/src/engine/config/provider.ts +111 -0
  269. package/src/engine/config/reference.ts +23 -0
  270. package/src/engine/config/server.ts +19 -0
  271. package/src/engine/config/skills.ts +14 -0
  272. package/src/engine/config/variable.ts +90 -0
  273. package/src/engine/control-plane/adapters/index.ts +41 -0
  274. package/src/engine/control-plane/adapters/worktree.ts +96 -0
  275. package/src/engine/control-plane/dev/README.md +19 -0
  276. package/src/engine/control-plane/dev/debug-workspace-plugin.ts +73 -0
  277. package/src/engine/control-plane/schema.ts +14 -0
  278. package/src/engine/control-plane/types.ts +59 -0
  279. package/src/engine/control-plane/util.ts +39 -0
  280. package/src/engine/control-plane/workspace-adapter-runtime.ts +51 -0
  281. package/src/engine/control-plane/workspace-context.ts +26 -0
  282. package/src/engine/control-plane/workspace.sql.ts +20 -0
  283. package/src/engine/control-plane/workspace.ts +1072 -0
  284. package/src/engine/data-migration.ts +161 -0
  285. package/src/engine/effect/app-runtime.ts +143 -0
  286. package/src/engine/effect/bootstrap-runtime.ts +29 -0
  287. package/src/engine/effect/bridge.ts +84 -0
  288. package/src/engine/effect/config-service.ts +67 -0
  289. package/src/engine/effect/instance-ref.ts +11 -0
  290. package/src/engine/effect/instance-registry.ts +12 -0
  291. package/src/engine/effect/instance-state.ts +72 -0
  292. package/src/engine/effect/promise.ts +17 -0
  293. package/src/engine/effect/run-service.ts +47 -0
  294. package/src/engine/effect/runner.ts +217 -0
  295. package/src/engine/effect/runtime-flags.ts +74 -0
  296. package/src/engine/effect/service-use.ts +38 -0
  297. package/src/engine/env/index.ts +37 -0
  298. package/src/engine/event-v2-bridge.ts +89 -0
  299. package/src/engine/file/file/ignore.ts +81 -0
  300. package/src/engine/file/file/index.ts +651 -0
  301. package/src/engine/file/file/protected.ts +59 -0
  302. package/src/engine/file/file/ripgrep.ts +481 -0
  303. package/src/engine/file/file/watcher.ts +167 -0
  304. package/src/engine/file/ignore.ts +81 -0
  305. package/src/engine/file/index.ts +651 -0
  306. package/src/engine/file/protected.ts +59 -0
  307. package/src/engine/file/ripgrep.ts +481 -0
  308. package/src/engine/file/watcher.ts +167 -0
  309. package/src/engine/format/format/formatter.ts +404 -0
  310. package/src/engine/format/format/index.ts +209 -0
  311. package/src/engine/format/formatter.ts +404 -0
  312. package/src/engine/format/index.ts +209 -0
  313. package/src/engine/git/git/index.ts +347 -0
  314. package/src/engine/git/index.ts +347 -0
  315. package/src/engine/id/id.ts +80 -0
  316. package/src/engine/ide/index.ts +70 -0
  317. package/src/engine/image/image/image.ts +176 -0
  318. package/src/engine/image/image.ts +176 -0
  319. package/src/engine/index.ts +251 -0
  320. package/src/engine/installation/index.ts +327 -0
  321. package/src/engine/lsp/client.ts +707 -0
  322. package/src/engine/lsp/diagnostic.ts +29 -0
  323. package/src/engine/lsp/language.ts +121 -0
  324. package/src/engine/lsp/launch.ts +21 -0
  325. package/src/engine/lsp/lsp/client.ts +707 -0
  326. package/src/engine/lsp/lsp/diagnostic.ts +29 -0
  327. package/src/engine/lsp/lsp/language.ts +121 -0
  328. package/src/engine/lsp/lsp/launch.ts +21 -0
  329. package/src/engine/lsp/lsp/lsp.ts +507 -0
  330. package/src/engine/lsp/lsp/server.ts +2064 -0
  331. package/src/engine/lsp/lsp.ts +507 -0
  332. package/src/engine/lsp/server.ts +2064 -0
  333. package/src/engine/mcp/auth.ts +146 -0
  334. package/src/engine/mcp/index.ts +958 -0
  335. package/src/engine/mcp/mcp/auth.ts +146 -0
  336. package/src/engine/mcp/mcp/index.ts +958 -0
  337. package/src/engine/mcp/mcp/oauth-callback.ts +232 -0
  338. package/src/engine/mcp/mcp/oauth-provider.ts +214 -0
  339. package/src/engine/mcp/oauth-callback.ts +232 -0
  340. package/src/engine/mcp/oauth-provider.ts +214 -0
  341. package/src/engine/node.ts +6 -0
  342. package/src/engine/patch/index.ts +689 -0
  343. package/src/engine/patch/patch/index.ts +689 -0
  344. package/src/engine/permission/arity.ts +163 -0
  345. package/src/engine/permission/evaluate.ts +15 -0
  346. package/src/engine/permission/index.ts +306 -0
  347. package/src/engine/permission/permission/arity.ts +163 -0
  348. package/src/engine/permission/permission/evaluate.ts +15 -0
  349. package/src/engine/permission/permission/index.ts +306 -0
  350. package/src/engine/permission/permission/schema.ts +13 -0
  351. package/src/engine/permission/schema.ts +13 -0
  352. package/src/engine/plugin/azure.ts +26 -0
  353. package/src/engine/plugin/cloudflare.ts +76 -0
  354. package/src/engine/plugin/codex.ts +622 -0
  355. package/src/engine/plugin/digitalocean.ts +411 -0
  356. package/src/engine/plugin/github-copilot/copilot.ts +394 -0
  357. package/src/engine/plugin/github-copilot/models.ts +196 -0
  358. package/src/engine/plugin/index.ts +295 -0
  359. package/src/engine/plugin/install.ts +439 -0
  360. package/src/engine/plugin/loader.ts +216 -0
  361. package/src/engine/plugin/meta.ts +188 -0
  362. package/src/engine/plugin/shared.ts +323 -0
  363. package/src/engine/project/bootstrap-service.ts +9 -0
  364. package/src/engine/project/bootstrap.ts +75 -0
  365. package/src/engine/project/instance-context.ts +24 -0
  366. package/src/engine/project/instance-layer.ts +11 -0
  367. package/src/engine/project/instance-runtime.ts +16 -0
  368. package/src/engine/project/instance-store.ts +193 -0
  369. package/src/engine/project/project.sql.ts +17 -0
  370. package/src/engine/project/project.ts +537 -0
  371. package/src/engine/project/schema.ts +13 -0
  372. package/src/engine/project/vcs.ts +405 -0
  373. package/src/engine/provider/auth.ts +225 -0
  374. package/src/engine/provider/error.ts +204 -0
  375. package/src/engine/provider/model-status.ts +8 -0
  376. package/src/engine/provider/provider.ts +1843 -0
  377. package/src/engine/provider/schema.ts +30 -0
  378. package/src/engine/provider/sdk/copilot/AGENTS.md +1 -0
  379. package/src/engine/provider/transform.ts +1376 -0
  380. package/src/engine/pty/index.ts +365 -0
  381. package/src/engine/pty/input.ts +24 -0
  382. package/src/engine/pty/pty/index.ts +365 -0
  383. package/src/engine/pty/pty/input.ts +24 -0
  384. package/src/engine/pty/pty/pty.bun.ts +26 -0
  385. package/src/engine/pty/pty/pty.node.ts +27 -0
  386. package/src/engine/pty/pty/pty.ts +25 -0
  387. package/src/engine/pty/pty/schema.ts +14 -0
  388. package/src/engine/pty/pty/ticket.ts +68 -0
  389. package/src/engine/pty/pty.bun.ts +26 -0
  390. package/src/engine/pty/pty.node.ts +27 -0
  391. package/src/engine/pty/pty.ts +25 -0
  392. package/src/engine/pty/schema.ts +14 -0
  393. package/src/engine/pty/ticket.ts +68 -0
  394. package/src/engine/question/index.ts +213 -0
  395. package/src/engine/question/question/index.ts +213 -0
  396. package/src/engine/question/question/schema.ts +10 -0
  397. package/src/engine/question/schema.ts +10 -0
  398. package/src/engine/reference/reference/reference.ts +241 -0
  399. package/src/engine/reference/reference/repository-cache.ts +147 -0
  400. package/src/engine/reference/reference.ts +241 -0
  401. package/src/engine/reference/repository-cache.ts +147 -0
  402. package/src/engine/session/compaction.ts +651 -0
  403. package/src/engine/session/compaction_logic.ts +120 -0
  404. package/src/engine/session/instruction.ts +238 -0
  405. package/src/engine/session/instruction_loader.ts +54 -0
  406. package/src/engine/session/llm.ts +459 -0
  407. package/src/engine/session/message-error.ts +14 -0
  408. package/src/engine/session/message-v2.ts +1202 -0
  409. package/src/engine/session/message.ts +146 -0
  410. package/src/engine/session/overflow.ts +32 -0
  411. package/src/engine/session/overflow_check.ts +46 -0
  412. package/src/engine/session/processor.ts +823 -0
  413. package/src/engine/session/prompt/anthropic.txt +105 -0
  414. package/src/engine/session/prompt/beast.txt +147 -0
  415. package/src/engine/session/prompt/build-switch.txt +5 -0
  416. package/src/engine/session/prompt/codex.txt +79 -0
  417. package/src/engine/session/prompt/copilot-gpt-5.txt +143 -0
  418. package/src/engine/session/prompt/default.txt +105 -0
  419. package/src/engine/session/prompt/gemini.txt +155 -0
  420. package/src/engine/session/prompt/gpt.txt +107 -0
  421. package/src/engine/session/prompt/kimi.txt +95 -0
  422. package/src/engine/session/prompt/max-steps.txt +16 -0
  423. package/src/engine/session/prompt/plan-reminder-anthropic.txt +67 -0
  424. package/src/engine/session/prompt/plan.txt +26 -0
  425. package/src/engine/session/prompt/trinity.txt +97 -0
  426. package/src/engine/session/prompt.ts +671 -0
  427. package/src/engine/session/provider_transform.ts +187 -0
  428. package/src/engine/session/retry.ts +200 -0
  429. package/src/engine/session/retry_logic.ts +65 -0
  430. package/src/engine/session/revert.ts +162 -0
  431. package/src/engine/session/run-state.ts +153 -0
  432. package/src/engine/session/schema.ts +26 -0
  433. package/src/engine/session/session.sql.ts +137 -0
  434. package/src/engine/session/session.ts +1011 -0
  435. package/src/engine/session/status.ts +94 -0
  436. package/src/engine/session/summary.ts +164 -0
  437. package/src/engine/session/system.ts +84 -0
  438. package/src/engine/session/system_prompt.ts +65 -0
  439. package/src/engine/session/todo.ts +81 -0
  440. package/src/engine/session/tool_registry.ts +162 -0
  441. package/src/engine/share/session.ts +61 -0
  442. package/src/engine/share/share-next.ts +376 -0
  443. package/src/engine/share/share.sql.ts +13 -0
  444. package/src/engine/shell/shell/shell.ts +215 -0
  445. package/src/engine/shell/shell.ts +215 -0
  446. package/src/engine/skill/discovery.ts +116 -0
  447. package/src/engine/skill/index.ts +336 -0
  448. package/src/engine/skill/prompt/customize-opencode.md +377 -0
  449. package/src/engine/skill/skill/discovery.ts +116 -0
  450. package/src/engine/skill/skill/index.ts +336 -0
  451. package/src/engine/skill/skill/prompt/customize-opencode.md +377 -0
  452. package/src/engine/snapshot/index.ts +762 -0
  453. package/src/engine/snapshot/snapshot/index.ts +762 -0
  454. package/src/engine/sync/README.md +179 -0
  455. package/src/engine/sync/event.sql.ts +17 -0
  456. package/src/engine/sync/index.ts +410 -0
  457. package/src/engine/sync/schema.ts +11 -0
  458. package/src/engine/temporary.ts +33 -0
  459. package/src/engine/tool/apply_patch.ts +313 -0
  460. package/src/engine/tool/apply_patch.txt +33 -0
  461. package/src/engine/tool/edit.ts +711 -0
  462. package/src/engine/tool/edit.txt +10 -0
  463. package/src/engine/tool/external-directory.ts +49 -0
  464. package/src/engine/tool/glob.ts +103 -0
  465. package/src/engine/tool/glob.txt +6 -0
  466. package/src/engine/tool/grep.ts +156 -0
  467. package/src/engine/tool/grep.txt +8 -0
  468. package/src/engine/tool/invalid.ts +21 -0
  469. package/src/engine/tool/json-schema.ts +164 -0
  470. package/src/engine/tool/lsp.ts +113 -0
  471. package/src/engine/tool/lsp.txt +24 -0
  472. package/src/engine/tool/mcp-websearch.ts +96 -0
  473. package/src/engine/tool/plan-enter.txt +14 -0
  474. package/src/engine/tool/plan-exit.txt +13 -0
  475. package/src/engine/tool/plan.ts +78 -0
  476. package/src/engine/tool/question.ts +44 -0
  477. package/src/engine/tool/question.txt +10 -0
  478. package/src/engine/tool/read.ts +337 -0
  479. package/src/engine/tool/read.txt +14 -0
  480. package/src/engine/tool/registry.ts +472 -0
  481. package/src/engine/tool/repo_clone.ts +80 -0
  482. package/src/engine/tool/repo_clone.txt +5 -0
  483. package/src/engine/tool/repo_overview.ts +279 -0
  484. package/src/engine/tool/repo_overview.txt +4 -0
  485. package/src/engine/tool/schema.ts +14 -0
  486. package/src/engine/tool/shell/id.ts +19 -0
  487. package/src/engine/tool/shell/prompt.ts +295 -0
  488. package/src/engine/tool/shell/shell.txt +77 -0
  489. package/src/engine/tool/shell.ts +647 -0
  490. package/src/engine/tool/skill.ts +75 -0
  491. package/src/engine/tool/skill.txt +5 -0
  492. package/src/engine/tool/task.ts +337 -0
  493. package/src/engine/tool/task.txt +58 -0
  494. package/src/engine/tool/task_status.ts +179 -0
  495. package/src/engine/tool/task_status.txt +13 -0
  496. package/src/engine/tool/todo.ts +57 -0
  497. package/src/engine/tool/todowrite.txt +167 -0
  498. package/src/engine/tool/tool/apply_patch.ts +313 -0
  499. package/src/engine/tool/tool/apply_patch.txt +33 -0
  500. package/src/engine/tool/tool/edit.ts +711 -0
  501. package/src/engine/tool/tool/edit.txt +10 -0
  502. package/src/engine/tool/tool/external-directory.ts +49 -0
  503. package/src/engine/tool/tool/glob.ts +103 -0
  504. package/src/engine/tool/tool/glob.txt +6 -0
  505. package/src/engine/tool/tool/grep.ts +156 -0
  506. package/src/engine/tool/tool/grep.txt +8 -0
  507. package/src/engine/tool/tool/invalid.ts +21 -0
  508. package/src/engine/tool/tool/json-schema.ts +164 -0
  509. package/src/engine/tool/tool/lsp.ts +113 -0
  510. package/src/engine/tool/tool/lsp.txt +24 -0
  511. package/src/engine/tool/tool/mcp-websearch.ts +96 -0
  512. package/src/engine/tool/tool/plan-enter.txt +14 -0
  513. package/src/engine/tool/tool/plan-exit.txt +13 -0
  514. package/src/engine/tool/tool/plan.ts +78 -0
  515. package/src/engine/tool/tool/question.ts +44 -0
  516. package/src/engine/tool/tool/question.txt +10 -0
  517. package/src/engine/tool/tool/read.ts +337 -0
  518. package/src/engine/tool/tool/read.txt +14 -0
  519. package/src/engine/tool/tool/registry.ts +472 -0
  520. package/src/engine/tool/tool/repo_clone.ts +80 -0
  521. package/src/engine/tool/tool/repo_clone.txt +5 -0
  522. package/src/engine/tool/tool/repo_overview.ts +279 -0
  523. package/src/engine/tool/tool/repo_overview.txt +4 -0
  524. package/src/engine/tool/tool/schema.ts +14 -0
  525. package/src/engine/tool/tool/shell/id.ts +19 -0
  526. package/src/engine/tool/tool/shell/prompt.ts +295 -0
  527. package/src/engine/tool/tool/shell/shell.txt +77 -0
  528. package/src/engine/tool/tool/shell.ts +647 -0
  529. package/src/engine/tool/tool/skill.ts +75 -0
  530. package/src/engine/tool/tool/skill.txt +5 -0
  531. package/src/engine/tool/tool/task.ts +337 -0
  532. package/src/engine/tool/tool/task.txt +58 -0
  533. package/src/engine/tool/tool/task_status.ts +179 -0
  534. package/src/engine/tool/tool/task_status.txt +13 -0
  535. package/src/engine/tool/tool/todo.ts +57 -0
  536. package/src/engine/tool/tool/todowrite.txt +167 -0
  537. package/src/engine/tool/tool/tool.ts +164 -0
  538. package/src/engine/tool/tool/truncate.ts +160 -0
  539. package/src/engine/tool/tool/truncation-dir.ts +4 -0
  540. package/src/engine/tool/tool/webfetch.ts +192 -0
  541. package/src/engine/tool/tool/webfetch.txt +13 -0
  542. package/src/engine/tool/tool/websearch.ts +143 -0
  543. package/src/engine/tool/tool/websearch.txt +14 -0
  544. package/src/engine/tool/tool/write.ts +104 -0
  545. package/src/engine/tool/tool/write.txt +8 -0
  546. package/src/engine/tool/tool.ts +164 -0
  547. package/src/engine/tool/truncate.ts +160 -0
  548. package/src/engine/tool/truncation-dir.ts +4 -0
  549. package/src/engine/tool/webfetch.ts +192 -0
  550. package/src/engine/tool/webfetch.txt +13 -0
  551. package/src/engine/tool/websearch.ts +143 -0
  552. package/src/engine/tool/websearch.txt +14 -0
  553. package/src/engine/tool/write.ts +104 -0
  554. package/src/engine/tool/write.txt +8 -0
  555. package/src/engine/util/archive.ts +17 -0
  556. package/src/engine/util/bom.ts +31 -0
  557. package/src/engine/util/data-url.ts +9 -0
  558. package/src/engine/util/defer.ts +10 -0
  559. package/src/engine/util/effect-http-client.ts +11 -0
  560. package/src/engine/util/error.ts +88 -0
  561. package/src/engine/util/filesystem.ts +252 -0
  562. package/src/engine/util/format.ts +20 -0
  563. package/src/engine/util/iife.ts +3 -0
  564. package/src/engine/util/lazy.ts +20 -0
  565. package/src/engine/util/local-context.ts +25 -0
  566. package/src/engine/util/locale.ts +86 -0
  567. package/src/engine/util/media.ts +26 -0
  568. package/src/engine/util/process.ts +176 -0
  569. package/src/engine/util/queue.ts +32 -0
  570. package/src/engine/util/record.ts +3 -0
  571. package/src/engine/util/repository.ts +158 -0
  572. package/src/engine/util/rpc.ts +66 -0
  573. package/src/engine/util/signal.ts +12 -0
  574. package/src/engine/util/timeout.ts +13 -0
  575. package/src/engine/util/token.ts +7 -0
  576. package/src/engine/util/util/archive.ts +17 -0
  577. package/src/engine/util/util/bom.ts +31 -0
  578. package/src/engine/util/util/data-url.ts +9 -0
  579. package/src/engine/util/util/defer.ts +10 -0
  580. package/src/engine/util/util/effect-http-client.ts +11 -0
  581. package/src/engine/util/util/error.ts +88 -0
  582. package/src/engine/util/util/filesystem.ts +252 -0
  583. package/src/engine/util/util/format.ts +20 -0
  584. package/src/engine/util/util/iife.ts +3 -0
  585. package/src/engine/util/util/lazy.ts +20 -0
  586. package/src/engine/util/util/local-context.ts +25 -0
  587. package/src/engine/util/util/locale.ts +86 -0
  588. package/src/engine/util/util/media.ts +26 -0
  589. package/src/engine/util/util/process.ts +176 -0
  590. package/src/engine/util/util/queue.ts +32 -0
  591. package/src/engine/util/util/record.ts +3 -0
  592. package/src/engine/util/util/repository.ts +158 -0
  593. package/src/engine/util/util/rpc.ts +66 -0
  594. package/src/engine/util/util/signal.ts +12 -0
  595. package/src/engine/util/util/timeout.ts +13 -0
  596. package/src/engine/util/util/token.ts +7 -0
  597. package/src/engine/util/util/which.ts +14 -0
  598. package/src/engine/util/util/wildcard.ts +59 -0
  599. package/src/engine/util/which.ts +14 -0
  600. package/src/engine/util/wildcard.ts +59 -0
  601. package/src/engine/worktree/index.ts +621 -0
  602. package/src/rag_worker.ts +519 -0
  603. package/src/server.ts +201 -0
  604. package/src/tui.ts +637 -0
  605. package/tsconfig.json +24 -0
@@ -0,0 +1,833 @@
1
+ import * as Log from "@opencode-ai/core/util/log"
2
+ import path from "path"
3
+ import { pathToFileURL } from "url"
4
+ import os from "os"
5
+ import { mergeDeep } from "remeda"
6
+ import { Global } from "@opencode-ai/core/global"
7
+ import fsNode from "fs/promises"
8
+ import { NamedError } from "@opencode-ai/core/util/error"
9
+ import { Flag } from "@opencode-ai/core/flag/flag"
10
+ import { Auth } from "../auth"
11
+ import { Env } from "../env"
12
+ import { applyEdits, modify } from "jsonc-parser"
13
+ import { InstallationLocal, InstallationVersion } from "@opencode-ai/core/installation/version"
14
+ import { existsSync } from "fs"
15
+ import { Account } from "@/account/account"
16
+ import { isRecord } from "@/util/record"
17
+ import type { ConsoleState } from "./console-state"
18
+ import { AppFileSystem } from "@opencode-ai/core/filesystem"
19
+ import { InstanceState } from "@/effect/instance-state"
20
+ import { Context, Duration, Effect, Exit, Fiber, Layer, Option, Schema } from "effect"
21
+ import { EffectFlock } from "@opencode-ai/core/util/effect-flock"
22
+ import { containsPath, type InstanceContext } from "../project/instance-context"
23
+ import { NonNegativeInt, PositiveInt, type DeepMutable } from "@opencode-ai/core/schema"
24
+ import { ConfigAgent } from "./agent"
25
+ import { ConfigAttachment } from "./attachment"
26
+ import { ConfigCommand } from "./command"
27
+ import { ConfigFormatter } from "./formatter"
28
+ import { ConfigLayout } from "./layout"
29
+ import { ConfigLSP } from "./lsp"
30
+ import { ConfigManaged } from "./managed"
31
+ import { ConfigMCP } from "./mcp"
32
+ import { ConfigModelID } from "./model-id"
33
+ import { ConfigParse } from "./parse"
34
+ import { ConfigPaths } from "./paths"
35
+ import { ConfigPermission } from "./permission"
36
+ import { ConfigPlugin } from "./plugin"
37
+ import { ConfigProvider } from "./provider"
38
+ import { ConfigReference } from "./reference"
39
+ import { ConfigServer } from "./server"
40
+ import { ConfigSkills } from "./skills"
41
+ import { ConfigVariable } from "./variable"
42
+ import { Npm } from "@opencode-ai/core/npm"
43
+
44
+ const log = Log.create({ service: "config" })
45
+
46
+ // Custom merge function that concatenates array fields instead of replacing them
47
+ // Keep remeda's deep conditional merge type out of hot config-loading paths; TS profiling showed it dominates here.
48
+ function mergeConfig(target: Info, source: Info): Info {
49
+ return mergeDeep(target, source) as Info
50
+ }
51
+
52
+ function mergeConfigConcatArrays(target: Info, source: Info): Info {
53
+ const merged = mergeConfig(target, source)
54
+ if (target.instructions && source.instructions) {
55
+ merged.instructions = Array.from(new Set([...target.instructions, ...source.instructions]))
56
+ }
57
+ return merged
58
+ }
59
+
60
+ function normalizeLoadedConfig(data: unknown, source: string) {
61
+ if (!isRecord(data)) return data
62
+ const copy = { ...data }
63
+ const hadLegacy = "theme" in copy || "keybinds" in copy || "tui" in copy
64
+ if (!hadLegacy) return copy
65
+ delete copy.theme
66
+ delete copy.keybinds
67
+ delete copy.tui
68
+ log.warn("tui keys in opencode config are deprecated; move them to tui.json", { path: source })
69
+ return copy
70
+ }
71
+
72
+ async function substituteWellKnownRemoteConfig(input: { value: unknown; dir: string; source: string }) {
73
+ if (!isRecord(input.value) || typeof input.value.url !== "string") return
74
+
75
+ const url = await ConfigVariable.substitute({
76
+ text: input.value.url,
77
+ type: "virtual",
78
+ dir: input.dir,
79
+ source: input.source,
80
+ })
81
+ const headers = isRecord(input.value.headers)
82
+ ? Object.fromEntries(
83
+ await Promise.all(
84
+ Object.entries(input.value.headers)
85
+ .filter((entry): entry is [string, string] => typeof entry[1] === "string")
86
+ .map(async ([key, value]) => [
87
+ key,
88
+ await ConfigVariable.substitute({
89
+ text: value,
90
+ type: "virtual",
91
+ dir: input.dir,
92
+ source: input.source,
93
+ }),
94
+ ]),
95
+ ),
96
+ )
97
+ : undefined
98
+
99
+ return { url, headers }
100
+ }
101
+
102
+ async function resolveLoadedPlugins<T extends { plugin?: ConfigPlugin.Spec[] }>(config: T, filepath: string) {
103
+ if (!config.plugin) return config
104
+ for (let i = 0; i < config.plugin.length; i++) {
105
+ // Normalize path-like plugin specs while we still know which config file declared them.
106
+ // This prevents `./plugin.ts` from being reinterpreted relative to some later merge location.
107
+ config.plugin[i] = await ConfigPlugin.resolvePluginSpec(config.plugin[i], filepath)
108
+ }
109
+ return config
110
+ }
111
+
112
+ export type Layout = ConfigLayout.Layout
113
+
114
+ const LogLevelRef = Schema.Literals(["DEBUG", "INFO", "WARN", "ERROR"]).annotate({
115
+ identifier: "LogLevel",
116
+ description: "Log level",
117
+ })
118
+
119
+ export const Info = Schema.Struct({
120
+ $schema: Schema.optional(Schema.String).annotate({
121
+ description: "JSON schema reference for configuration validation",
122
+ }),
123
+ shell: Schema.optional(Schema.String).annotate({
124
+ description: "Default shell to use for terminal and bash tool",
125
+ }),
126
+ logLevel: Schema.optional(LogLevelRef).annotate({ description: "Log level" }),
127
+ server: Schema.optional(ConfigServer.Server).annotate({
128
+ description: "Server configuration for opencode serve and web commands",
129
+ }),
130
+ command: Schema.optional(Schema.Record(Schema.String, ConfigCommand.Info)).annotate({
131
+ description: "Command configuration, see https://opencode.ai/docs/commands",
132
+ }),
133
+ skills: Schema.optional(ConfigSkills.Info).annotate({ description: "Additional skill folder paths" }),
134
+ reference: Schema.optional(ConfigReference.Info).annotate({
135
+ description: "Named git or local directory references that can be mentioned as @alias or @alias/path",
136
+ }),
137
+ watcher: Schema.optional(
138
+ Schema.Struct({
139
+ ignore: Schema.optional(Schema.mutable(Schema.Array(Schema.String))),
140
+ }),
141
+ ),
142
+ snapshot: Schema.optional(Schema.Boolean).annotate({
143
+ description:
144
+ "Enable or disable snapshot tracking. When false, filesystem snapshots are not recorded and undoing or reverting will not undo/redo file changes. Defaults to true.",
145
+ }),
146
+ // User-facing plugin config is stored as Specs; provenance gets attached later while configs are merged.
147
+ plugin: Schema.optional(Schema.mutable(Schema.Array(ConfigPlugin.Spec))),
148
+ share: Schema.optional(Schema.Literals(["manual", "auto", "disabled"])).annotate({
149
+ description:
150
+ "Control sharing behavior:'manual' allows manual sharing via commands, 'auto' enables automatic sharing, 'disabled' disables all sharing",
151
+ }),
152
+ autoshare: Schema.optional(Schema.Boolean).annotate({
153
+ description: "@deprecated Use 'share' field instead. Share newly created sessions automatically",
154
+ }),
155
+ autoupdate: Schema.optional(Schema.Union([Schema.Boolean, Schema.Literal("notify")])).annotate({
156
+ description:
157
+ "Automatically update to the latest version. Set to true to auto-update, false to disable, or 'notify' to show update notifications",
158
+ }),
159
+ disabled_providers: Schema.optional(Schema.mutable(Schema.Array(Schema.String))).annotate({
160
+ description: "Disable providers that are loaded automatically",
161
+ }),
162
+ enabled_providers: Schema.optional(Schema.mutable(Schema.Array(Schema.String))).annotate({
163
+ description: "When set, ONLY these providers will be enabled. All other providers will be ignored",
164
+ }),
165
+ model: Schema.optional(ConfigModelID).annotate({
166
+ description: "Model to use in the format of provider/model, eg anthropic/claude-2",
167
+ }),
168
+ small_model: Schema.optional(ConfigModelID).annotate({
169
+ description: "Small model to use for tasks like title generation in the format of provider/model",
170
+ }),
171
+ default_agent: Schema.optional(Schema.String).annotate({
172
+ description:
173
+ "Default agent to use when none is specified. Must be a primary agent. Falls back to 'build' if not set or if the specified agent is invalid.",
174
+ }),
175
+ username: Schema.optional(Schema.String).annotate({
176
+ description: "Custom username to display in conversations instead of system username",
177
+ }),
178
+ mode: Schema.optional(
179
+ Schema.StructWithRest(
180
+ Schema.Struct({
181
+ build: Schema.optional(ConfigAgent.Info),
182
+ plan: Schema.optional(ConfigAgent.Info),
183
+ }),
184
+ [Schema.Record(Schema.String, ConfigAgent.Info)],
185
+ ),
186
+ ).annotate({ description: "@deprecated Use `agent` field instead." }),
187
+ agent: Schema.optional(
188
+ Schema.StructWithRest(
189
+ Schema.Struct({
190
+ // primary
191
+ plan: Schema.optional(ConfigAgent.Info),
192
+ build: Schema.optional(ConfigAgent.Info),
193
+ // subagent
194
+ general: Schema.optional(ConfigAgent.Info),
195
+ explore: Schema.optional(ConfigAgent.Info),
196
+ scout: Schema.optional(ConfigAgent.Info),
197
+ // specialized
198
+ title: Schema.optional(ConfigAgent.Info),
199
+ summary: Schema.optional(ConfigAgent.Info),
200
+ compaction: Schema.optional(ConfigAgent.Info),
201
+ }),
202
+ [Schema.Record(Schema.String, ConfigAgent.Info)],
203
+ ),
204
+ ).annotate({ description: "Agent configuration, see https://opencode.ai/docs/agents" }),
205
+ provider: Schema.optional(Schema.Record(Schema.String, ConfigProvider.Info)).annotate({
206
+ description: "Custom provider configurations and model overrides",
207
+ }),
208
+ mcp: Schema.optional(
209
+ Schema.Record(
210
+ Schema.String,
211
+ Schema.Union([
212
+ ConfigMCP.Info,
213
+ // Matches the legacy `{ enabled: false }` form used to disable a server.
214
+ Schema.Struct({ enabled: Schema.Boolean }),
215
+ ]),
216
+ ),
217
+ ).annotate({ description: "MCP (Model Context Protocol) server configurations" }),
218
+ formatter: Schema.optional(ConfigFormatter.Info).annotate({
219
+ description:
220
+ "Enable or configure formatters. Omit or set to false to disable, true to enable built-ins, or an object to enable built-ins with overrides.",
221
+ }),
222
+ lsp: Schema.optional(ConfigLSP.Info).annotate({
223
+ description:
224
+ "Enable or configure LSP servers. Omit or set to false to disable, true to enable built-ins, or an object to enable built-ins with overrides.",
225
+ }),
226
+ instructions: Schema.optional(Schema.mutable(Schema.Array(Schema.String))).annotate({
227
+ description: "Additional instruction files or patterns to include",
228
+ }),
229
+ layout: Schema.optional(ConfigLayout.Layout).annotate({ description: "@deprecated Always uses stretch layout." }),
230
+ permission: Schema.optional(ConfigPermission.Info),
231
+ tools: Schema.optional(Schema.Record(Schema.String, Schema.Boolean)),
232
+ attachment: Schema.optional(ConfigAttachment.Info).annotate({
233
+ description: "Attachment processing configuration, including image size limits and resizing behavior",
234
+ }),
235
+ enterprise: Schema.optional(
236
+ Schema.Struct({
237
+ url: Schema.optional(Schema.String).annotate({ description: "Enterprise URL" }),
238
+ }),
239
+ ),
240
+ tool_output: Schema.optional(
241
+ Schema.Struct({
242
+ max_lines: Schema.optional(PositiveInt).annotate({
243
+ description: "Maximum lines of tool output before it is truncated and saved to disk (default: 2000)",
244
+ }),
245
+ max_bytes: Schema.optional(PositiveInt).annotate({
246
+ description: "Maximum bytes of tool output before it is truncated and saved to disk (default: 51200)",
247
+ }),
248
+ }),
249
+ ).annotate({
250
+ description:
251
+ "Thresholds for truncating tool output. When output exceeds either limit, the full text is written to the truncation directory and a preview is returned.",
252
+ }),
253
+ compaction: Schema.optional(
254
+ Schema.Struct({
255
+ auto: Schema.optional(Schema.Boolean).annotate({
256
+ description: "Enable automatic compaction when context is full (default: true)",
257
+ }),
258
+ prune: Schema.optional(Schema.Boolean).annotate({
259
+ description: "Enable pruning of old tool outputs (default: true)",
260
+ }),
261
+ tail_turns: Schema.optional(NonNegativeInt).annotate({
262
+ description:
263
+ "Number of recent user turns, including their following assistant/tool responses, to keep verbatim during compaction (default: 2)",
264
+ }),
265
+ preserve_recent_tokens: Schema.optional(NonNegativeInt).annotate({
266
+ description: "Maximum number of tokens from recent turns to preserve verbatim after compaction",
267
+ }),
268
+ reserved: Schema.optional(NonNegativeInt).annotate({
269
+ description: "Token buffer for compaction. Leaves enough window to avoid overflow during compaction.",
270
+ }),
271
+ }),
272
+ ),
273
+ experimental: Schema.optional(
274
+ Schema.Struct({
275
+ disable_paste_summary: Schema.optional(Schema.Boolean),
276
+ batch_tool: Schema.optional(Schema.Boolean).annotate({ description: "Enable the batch tool" }),
277
+ openTelemetry: Schema.optional(Schema.Boolean).annotate({
278
+ description: "Enable OpenTelemetry spans for AI SDK calls (using the 'experimental_telemetry' flag)",
279
+ }),
280
+ primary_tools: Schema.optional(Schema.mutable(Schema.Array(Schema.String))).annotate({
281
+ description: "Tools that should only be available to primary agents.",
282
+ }),
283
+ continue_loop_on_deny: Schema.optional(Schema.Boolean).annotate({
284
+ description: "Continue the agent loop when a tool call is denied",
285
+ }),
286
+ mcp_timeout: Schema.optional(PositiveInt).annotate({
287
+ description: "Timeout in milliseconds for model context protocol (MCP) requests",
288
+ }),
289
+ }),
290
+ ),
291
+ }).annotate({ identifier: "Config" })
292
+
293
+ // Uses the shared `DeepMutable` from `@opencode-ai/core/schema`. See the definition
294
+ // there for why the local variant is needed over `Types.DeepMutable` from
295
+ // effect-smol (the upstream version collapses `unknown` to `{}`).
296
+ export type Info = DeepMutable<Schema.Schema.Type<typeof Info>> & {
297
+ // plugin_origins is derived state, not a persisted config field. It keeps each winning plugin spec together
298
+ // with the file and scope it came from so later runtime code can make location-sensitive decisions.
299
+ plugin_origins?: ConfigPlugin.Origin[]
300
+ }
301
+
302
+ type State = {
303
+ config: Info
304
+ directories: string[]
305
+ deps: Fiber.Fiber<void, never>[]
306
+ consoleState: ConsoleState
307
+ }
308
+
309
+ export interface Interface {
310
+ readonly get: () => Effect.Effect<Info>
311
+ readonly getGlobal: () => Effect.Effect<Info>
312
+ readonly getConsoleState: () => Effect.Effect<ConsoleState>
313
+ readonly update: (config: Info) => Effect.Effect<void>
314
+ readonly updateGlobal: (config: Info) => Effect.Effect<{ info: Info; changed: boolean }>
315
+ readonly invalidate: () => Effect.Effect<void>
316
+ readonly directories: () => Effect.Effect<string[]>
317
+ readonly waitForDependencies: () => Effect.Effect<void>
318
+ }
319
+
320
+ export class Service extends Context.Service<Service, Interface>()("@opencode/Config") {}
321
+
322
+ function globalConfigFile() {
323
+ const candidates = ["opencode.jsonc", "opencode.json", "config.json"].map((file) =>
324
+ path.join(Global.Path.config, file),
325
+ )
326
+ for (const file of candidates) {
327
+ if (existsSync(file)) return file
328
+ }
329
+ return candidates[0]
330
+ }
331
+
332
+ function patchJsonc(input: string, patch: unknown, path: string[] = []): string {
333
+ if (!isRecord(patch)) {
334
+ const edits = modify(input, path, patch, {
335
+ formattingOptions: {
336
+ insertSpaces: true,
337
+ tabSize: 2,
338
+ },
339
+ })
340
+ return applyEdits(input, edits)
341
+ }
342
+
343
+ return Object.entries(patch).reduce((result, [key, value]) => patchJsonc(result, value, [...path, key]), input)
344
+ }
345
+
346
+ function writable(info: Info) {
347
+ const { plugin_origins: _plugin_origins, ...next } = info
348
+ return next
349
+ }
350
+
351
+ function writableGlobal(info: Info) {
352
+ const next = writable(info)
353
+ // When a user changes config from a value back to default in the Desktop app, we don't want to leave a blank `"shell": "",` key
354
+ if ("shell" in next && next.shell === "") return { ...next, shell: undefined }
355
+ return next
356
+ }
357
+
358
+ export const ConfigDirectoryTypoError = NamedError.create("ConfigDirectoryTypoError", {
359
+ path: Schema.String,
360
+ dir: Schema.String,
361
+ suggestion: Schema.String,
362
+ })
363
+
364
+ export const layer = Layer.effect(
365
+ Service,
366
+ Effect.gen(function* () {
367
+ const fs = yield* AppFileSystem.Service
368
+ const authSvc = yield* Auth.Service
369
+ const accountSvc = yield* Account.Service
370
+ const env = yield* Env.Service
371
+ const npmSvc = yield* Npm.Service
372
+
373
+ const readConfigFile = (filepath: string) => fs.readFileStringSafe(filepath).pipe(Effect.orDie)
374
+
375
+ const loadConfig = Effect.fnUntraced(function* (
376
+ text: string,
377
+ options: { path: string } | { dir: string; source: string },
378
+ ) {
379
+ const source = "path" in options ? options.path : options.source
380
+ const expanded = yield* Effect.promise(() =>
381
+ ConfigVariable.substitute(
382
+ "path" in options ? { text, type: "path", path: options.path } : { text, type: "virtual", ...options },
383
+ ),
384
+ )
385
+ const parsed = ConfigParse.jsonc(expanded, source)
386
+ const data = ConfigParse.schema(Info, normalizeLoadedConfig(parsed, source), source)
387
+ if (!("path" in options)) return data
388
+
389
+ yield* Effect.promise(() => resolveLoadedPlugins(data, options.path))
390
+ if (!data.$schema) {
391
+ data.$schema = "https://opencode.ai/config.json"
392
+ const updated = text.replace(/^\s*\{/, '{\n "$schema": "https://opencode.ai/config.json",')
393
+ yield* fs.writeFileString(options.path, updated).pipe(Effect.catch(() => Effect.void))
394
+ }
395
+ return data
396
+ })
397
+
398
+ const loadFile = Effect.fnUntraced(function* (filepath: string) {
399
+ log.info("loading", { path: filepath })
400
+ const text = yield* readConfigFile(filepath)
401
+ if (!text) return {} as Info
402
+ return yield* loadConfig(text, { path: filepath })
403
+ })
404
+
405
+ const loadGlobal = Effect.fnUntraced(function* () {
406
+ let result: Info = {}
407
+ // Seed the default global config with the schema for editor completion, but avoid writing when the user
408
+ // explicitly routes config through env-provided paths or content.
409
+ if (!Flag.OPENCODE_CONFIG && !Flag.OPENCODE_CONFIG_DIR && !Flag.OPENCODE_CONFIG_CONTENT) {
410
+ const file = globalConfigFile()
411
+ if (!existsSync(file)) {
412
+ yield* fs
413
+ .writeWithDirs(file, JSON.stringify({ $schema: "https://opencode.ai/config.json" }, null, 2))
414
+ .pipe(Effect.catch(() => Effect.void))
415
+ }
416
+ }
417
+ result = mergeConfig(result, yield* loadFile(path.join(Global.Path.config, "config.json")))
418
+ result = mergeConfig(result, yield* loadFile(path.join(Global.Path.config, "opencode.json")))
419
+ result = mergeConfig(result, yield* loadFile(path.join(Global.Path.config, "opencode.jsonc")))
420
+
421
+ const legacy = path.join(Global.Path.config, "config")
422
+ if (existsSync(legacy)) {
423
+ yield* Effect.promise(() =>
424
+ import(pathToFileURL(legacy).href, { with: { type: "toml" } })
425
+ .then(async (mod) => {
426
+ const { provider, model, ...rest } = mod.default
427
+ if (provider && model) result.model = `${provider}/${model}`
428
+ result["$schema"] = "https://opencode.ai/config.json"
429
+ result = mergeConfig(result, rest)
430
+ await fsNode.writeFile(path.join(Global.Path.config, "config.json"), JSON.stringify(result, null, 2))
431
+ await fsNode.unlink(legacy)
432
+ })
433
+ .catch(() => {}),
434
+ )
435
+ }
436
+
437
+ return result
438
+ })
439
+
440
+ const [cachedGlobal, invalidateGlobal] = yield* Effect.cachedInvalidateWithTTL(
441
+ loadGlobal().pipe(
442
+ Effect.tapError((error) =>
443
+ Effect.sync(() => log.error("failed to load global config, using defaults", { error: String(error) })),
444
+ ),
445
+ Effect.orElseSucceed((): Info => ({})),
446
+ ),
447
+ Duration.infinity,
448
+ )
449
+
450
+ const getGlobal = Effect.fn("Config.getGlobal")(function* () {
451
+ return yield* cachedGlobal
452
+ })
453
+
454
+ const ensureGitignore = Effect.fn("Config.ensureGitignore")(function* (dir: string) {
455
+ const gitignore = path.join(dir, ".gitignore")
456
+ const hasIgnore = yield* fs.existsSafe(gitignore)
457
+ if (!hasIgnore) {
458
+ yield* fs
459
+ .writeFileString(
460
+ gitignore,
461
+ ["node_modules", "package.json", "package-lock.json", "bun.lock", ".gitignore"].join("\n"),
462
+ )
463
+ .pipe(
464
+ Effect.catchIf(
465
+ (e) => e.reason._tag === "PermissionDenied",
466
+ () => Effect.void,
467
+ ),
468
+ )
469
+ }
470
+ })
471
+
472
+ const loadInstanceState = Effect.fn("Config.loadInstanceState")(
473
+ function* (ctx: InstanceContext) {
474
+ const auth = yield* authSvc.all().pipe(Effect.orDie)
475
+
476
+ let result: Info = {}
477
+ const consoleManagedProviders = new Set<string>()
478
+ let activeOrgName: string | undefined
479
+
480
+ const pluginScopeForSource = Effect.fnUntraced(function* (source: string) {
481
+ if (source.startsWith("http://") || source.startsWith("https://")) return "global"
482
+ if (source === "OPENCODE_CONFIG_CONTENT") return "local"
483
+ if (containsPath(source, ctx)) return "local"
484
+ return "global"
485
+ })
486
+
487
+ const mergePluginOrigins = Effect.fnUntraced(function* (
488
+ source: string,
489
+ // mergePluginOrigins receives raw Specs from one config source, before provenance for this merge step
490
+ // is attached.
491
+ list: ConfigPlugin.Spec[] | undefined,
492
+ // Scope can be inferred from the source path, but some callers already know whether the config should
493
+ // behave as global or local and can pass that explicitly.
494
+ kind?: ConfigPlugin.Scope,
495
+ ) {
496
+ if (!list?.length) return
497
+ const hit = kind ?? (yield* pluginScopeForSource(source))
498
+ // Merge newly seen plugin origins with previously collected ones, then dedupe by plugin identity while
499
+ // keeping the winning source/scope metadata for downstream installs, writes, and diagnostics.
500
+ const plugins = ConfigPlugin.deduplicatePluginOrigins([
501
+ ...(result.plugin_origins ?? []),
502
+ ...list.map((spec) => ({ spec, source, scope: hit })),
503
+ ])
504
+ result.plugin = plugins.map((item) => item.spec)
505
+ result.plugin_origins = plugins
506
+ })
507
+
508
+ const merge = (source: string, next: Info, kind?: ConfigPlugin.Scope) => {
509
+ result = mergeConfigConcatArrays(result, next)
510
+ return mergePluginOrigins(source, next.plugin, kind)
511
+ }
512
+
513
+ for (const [key, value] of Object.entries(auth)) {
514
+ if (value.type === "wellknown") {
515
+ const url = key.replace(/\/+$/, "")
516
+ process.env[value.key] = value.token
517
+ log.debug("fetching remote config", { url: `${url}/.well-known/opencode` })
518
+ const response = yield* Effect.promise(() => fetch(`${url}/.well-known/opencode`))
519
+ if (!response.ok) {
520
+ throw new Error(`failed to fetch remote config from ${url}: ${response.status}`)
521
+ }
522
+ const wellknown = (yield* Effect.promise(() => response.json())) as {
523
+ config?: Record<string, unknown>
524
+ remote_config?: unknown
525
+ }
526
+ const remote = yield* Effect.promise(() =>
527
+ substituteWellKnownRemoteConfig({
528
+ value: wellknown.remote_config,
529
+ dir: url,
530
+ source: `${url}/.well-known/opencode`,
531
+ }),
532
+ )
533
+ const fetchedConfig = remote
534
+ ? ((yield* Effect.promise(async () => {
535
+ log.debug("fetching remote config", { url: remote.url })
536
+ const response = await fetch(remote.url, { headers: remote.headers })
537
+ if (!response.ok)
538
+ throw new Error(`failed to fetch remote config from ${remote.url}: ${response.status}`)
539
+ const data = await response.json()
540
+ return isRecord(data) && isRecord(data.config) ? data.config : data
541
+ })) as Record<string, unknown>)
542
+ : {}
543
+ const remoteConfig = mergeConfig(wellknown.config ?? {}, fetchedConfig as Info)
544
+ if (!remoteConfig.$schema) remoteConfig.$schema = "https://opencode.ai/config.json"
545
+ const source = `${url}/.well-known/opencode`
546
+ const next = yield* loadConfig(JSON.stringify(remoteConfig), {
547
+ dir: path.dirname(source),
548
+ source,
549
+ })
550
+ yield* merge(source, next, "global")
551
+ log.debug("loaded remote config from well-known", { url })
552
+ }
553
+ }
554
+
555
+ const global = yield* getGlobal()
556
+ yield* merge(Global.Path.config, global, "global")
557
+
558
+ if (Flag.OPENCODE_CONFIG) {
559
+ yield* merge(Flag.OPENCODE_CONFIG, yield* loadFile(Flag.OPENCODE_CONFIG))
560
+ log.debug("loaded custom config", { path: Flag.OPENCODE_CONFIG })
561
+ }
562
+
563
+ if (!Flag.OPENCODE_DISABLE_PROJECT_CONFIG) {
564
+ for (const file of yield* ConfigPaths.files("opencode", ctx.directory, ctx.worktree).pipe(Effect.orDie)) {
565
+ yield* merge(file, yield* loadFile(file), "local")
566
+ }
567
+ }
568
+
569
+ result.agent = result.agent || {}
570
+ result.mode = result.mode || {}
571
+ result.plugin = result.plugin || []
572
+
573
+ const directories = yield* ConfigPaths.directories(ctx.directory, ctx.worktree)
574
+
575
+ if (Flag.OPENCODE_CONFIG_DIR) {
576
+ log.debug("loading config from OPENCODE_CONFIG_DIR", { path: Flag.OPENCODE_CONFIG_DIR })
577
+ }
578
+
579
+ const deps: Fiber.Fiber<void, never>[] = []
580
+
581
+ for (const dir of directories) {
582
+ if (dir.endsWith(".opencode") || dir === Flag.OPENCODE_CONFIG_DIR) {
583
+ for (const file of ["opencode.json", "opencode.jsonc"]) {
584
+ const source = path.join(dir, file)
585
+ log.debug(`loading config from ${source}`)
586
+ yield* merge(source, yield* loadFile(source))
587
+ result.agent ??= {}
588
+ result.mode ??= {}
589
+ result.plugin ??= []
590
+ }
591
+ }
592
+
593
+ yield* ensureGitignore(dir).pipe(Effect.orDie)
594
+
595
+ const dep = yield* npmSvc
596
+ .install(dir, {
597
+ add: [
598
+ {
599
+ name: "@opencode-ai/plugin",
600
+ version: InstallationLocal ? undefined : InstallationVersion,
601
+ },
602
+ ],
603
+ })
604
+ .pipe(
605
+ Effect.exit,
606
+ Effect.tap((exit) =>
607
+ Exit.isFailure(exit)
608
+ ? Effect.sync(() => {
609
+ log.warn("background dependency install failed", { dir, error: String(exit.cause) })
610
+ })
611
+ : Effect.void,
612
+ ),
613
+ Effect.asVoid,
614
+ Effect.forkDetach,
615
+ )
616
+ deps.push(dep)
617
+
618
+ result.command = mergeDeep(result.command ?? {}, yield* Effect.promise(() => ConfigCommand.load(dir)))
619
+ result.agent = mergeDeep(result.agent ?? {}, yield* Effect.promise(() => ConfigAgent.load(dir)))
620
+ result.agent = mergeDeep(result.agent ?? {}, yield* Effect.promise(() => ConfigAgent.loadMode(dir)))
621
+ // Auto-discovered plugins under `.opencode/plugin(s)` are already local files, so ConfigPlugin.load
622
+ // returns normalized Specs and we only need to attach origin metadata here.
623
+ const list = yield* Effect.promise(() => ConfigPlugin.load(dir))
624
+ yield* mergePluginOrigins(dir, list)
625
+ }
626
+
627
+ if (process.env.OPENCODE_CONFIG_CONTENT) {
628
+ const source = "OPENCODE_CONFIG_CONTENT"
629
+ const next = yield* loadConfig(process.env.OPENCODE_CONFIG_CONTENT, {
630
+ dir: ctx.directory,
631
+ source,
632
+ })
633
+ yield* merge(source, next, "local")
634
+ log.debug("loaded custom config from OPENCODE_CONFIG_CONTENT")
635
+ }
636
+
637
+ const activeAccount = Option.getOrUndefined(
638
+ yield* accountSvc.active().pipe(Effect.catch(() => Effect.succeed(Option.none()))),
639
+ )
640
+ if (activeAccount?.active_org_id) {
641
+ const accountID = activeAccount.id
642
+ const orgID = activeAccount.active_org_id
643
+ const url = activeAccount.url
644
+ yield* Effect.gen(function* () {
645
+ const [configOpt, tokenOpt] = yield* Effect.all(
646
+ [accountSvc.config(accountID, orgID), accountSvc.token(accountID)],
647
+ { concurrency: 2 },
648
+ )
649
+ if (Option.isSome(tokenOpt)) {
650
+ process.env["OPENCODE_CONSOLE_TOKEN"] = tokenOpt.value
651
+ yield* env.set("OPENCODE_CONSOLE_TOKEN", tokenOpt.value)
652
+ }
653
+
654
+ if (Option.isSome(configOpt)) {
655
+ const source = `${url}/api/config`
656
+ const next = yield* loadConfig(JSON.stringify(configOpt.value), {
657
+ dir: path.dirname(source),
658
+ source,
659
+ })
660
+ for (const providerID of Object.keys(next.provider ?? {})) {
661
+ consoleManagedProviders.add(providerID)
662
+ }
663
+ yield* merge(source, next, "global")
664
+ }
665
+ }).pipe(
666
+ Effect.withSpan("Config.loadActiveOrgConfig"),
667
+ Effect.catch((err) => {
668
+ log.debug("failed to fetch remote account config", {
669
+ error: err instanceof Error ? err.message : String(err),
670
+ })
671
+ return Effect.void
672
+ }),
673
+ )
674
+ }
675
+
676
+ const managedDir = ConfigManaged.managedConfigDir()
677
+ if (existsSync(managedDir)) {
678
+ for (const file of ["opencode.json", "opencode.jsonc"]) {
679
+ const source = path.join(managedDir, file)
680
+ yield* merge(source, yield* loadFile(source), "global")
681
+ }
682
+ }
683
+
684
+ // macOS managed preferences (.mobileconfig deployed via MDM) override everything
685
+ const managed = yield* Effect.promise(() => ConfigManaged.readManagedPreferences())
686
+ if (managed) {
687
+ result = mergeConfigConcatArrays(
688
+ result,
689
+ yield* loadConfig(managed.text, {
690
+ dir: path.dirname(managed.source),
691
+ source: managed.source,
692
+ }),
693
+ )
694
+ }
695
+
696
+ for (const [name, mode] of Object.entries(result.mode ?? {})) {
697
+ result.agent = mergeDeep(result.agent ?? {}, {
698
+ [name]: {
699
+ ...mode,
700
+ mode: "primary" as const,
701
+ },
702
+ })
703
+ }
704
+
705
+ if (Flag.OPENCODE_PERMISSION) {
706
+ result.permission = mergeDeep(result.permission ?? {}, JSON.parse(Flag.OPENCODE_PERMISSION))
707
+ }
708
+
709
+ if (result.tools) {
710
+ const perms: Record<string, ConfigPermission.Action> = {}
711
+ for (const [tool, enabled] of Object.entries(result.tools)) {
712
+ const action: ConfigPermission.Action = enabled ? "allow" : "deny"
713
+ if (tool === "write" || tool === "edit" || tool === "patch") {
714
+ perms.edit = action
715
+ continue
716
+ }
717
+ perms[tool] = action
718
+ }
719
+ result.permission = mergeDeep(perms, result.permission ?? {})
720
+ }
721
+
722
+ if (!result.username) result.username = os.userInfo().username
723
+
724
+ if (result.autoshare === true && !result.share) {
725
+ result.share = "auto"
726
+ }
727
+
728
+ if (Flag.OPENCODE_DISABLE_AUTOCOMPACT) {
729
+ result.compaction = { ...result.compaction, auto: false }
730
+ }
731
+ if (Flag.OPENCODE_DISABLE_PRUNE) {
732
+ result.compaction = { ...result.compaction, prune: false }
733
+ }
734
+
735
+ return {
736
+ config: result,
737
+ directories,
738
+ deps,
739
+ consoleState: {
740
+ consoleManagedProviders: Array.from(consoleManagedProviders),
741
+ activeOrgName,
742
+ switchableOrgCount: 0,
743
+ },
744
+ }
745
+ },
746
+ Effect.provideService(AppFileSystem.Service, fs),
747
+ )
748
+
749
+ const state = yield* InstanceState.make<State>(
750
+ Effect.fn("Config.state")(function* (ctx) {
751
+ return yield* loadInstanceState(ctx).pipe(Effect.orDie)
752
+ }),
753
+ )
754
+
755
+ const get = Effect.fn("Config.get")(function* () {
756
+ return yield* InstanceState.use(state, (s) => s.config)
757
+ })
758
+
759
+ const directories = Effect.fn("Config.directories")(function* () {
760
+ return yield* InstanceState.use(state, (s) => s.directories)
761
+ })
762
+
763
+ const getConsoleState = Effect.fn("Config.getConsoleState")(function* () {
764
+ return yield* InstanceState.use(state, (s) => s.consoleState)
765
+ })
766
+
767
+ const waitForDependencies = Effect.fn("Config.waitForDependencies")(function* () {
768
+ yield* InstanceState.useEffect(state, (s) =>
769
+ Effect.forEach(s.deps, Fiber.join, { concurrency: "unbounded" }).pipe(Effect.asVoid),
770
+ )
771
+ })
772
+
773
+ const update = Effect.fn("Config.update")(function* (config: Info) {
774
+ const dir = yield* InstanceState.directory
775
+ const file = path.join(dir, "config.json")
776
+ const existing = yield* loadFile(file)
777
+ yield* fs
778
+ .writeFileString(file, JSON.stringify(mergeDeep(writable(existing), writable(config)), null, 2))
779
+ .pipe(Effect.orDie)
780
+ })
781
+
782
+ const invalidate = Effect.fn("Config.invalidate")(function* () {
783
+ yield* invalidateGlobal
784
+ })
785
+
786
+ const updateGlobal = Effect.fn("Config.updateGlobal")(function* (config: Info) {
787
+ const file = globalConfigFile()
788
+ const before = (yield* readConfigFile(file)) ?? "{}"
789
+ const patch = writableGlobal(config)
790
+
791
+ let next: Info
792
+ let changed: boolean
793
+ if (!file.endsWith(".jsonc")) {
794
+ const existing = ConfigParse.schema(Info, ConfigParse.jsonc(before, file), file)
795
+ const merged = mergeDeep(writable(existing), patch)
796
+ const serialized = JSON.stringify(merged, null, 2)
797
+ changed = serialized !== before
798
+ if (changed) yield* fs.writeFileString(file, serialized).pipe(Effect.orDie)
799
+ next = merged
800
+ } else {
801
+ const updated = patchJsonc(before, patch)
802
+ next = ConfigParse.schema(Info, ConfigParse.jsonc(updated, file), file)
803
+ changed = updated !== before
804
+ if (changed) yield* fs.writeFileString(file, updated).pipe(Effect.orDie)
805
+ }
806
+
807
+ if (changed) yield* invalidate()
808
+ return { info: next, changed }
809
+ })
810
+
811
+ return Service.of({
812
+ get,
813
+ getGlobal,
814
+ getConsoleState,
815
+ update,
816
+ updateGlobal,
817
+ invalidate,
818
+ directories,
819
+ waitForDependencies,
820
+ })
821
+ }),
822
+ )
823
+
824
+ export const defaultLayer = layer.pipe(
825
+ Layer.provide(EffectFlock.defaultLayer),
826
+ Layer.provide(AppFileSystem.defaultLayer),
827
+ Layer.provide(Env.defaultLayer),
828
+ Layer.provide(Auth.defaultLayer),
829
+ Layer.provide(Account.defaultLayer),
830
+ Layer.provide(Npm.defaultLayer),
831
+ )
832
+
833
+ export * as Config from "./config"