feat(core): expose deferred tools through execute (#35361)

This commit is contained in:
Aiden Cline 2026-07-04 16:20:56 -05:00 committed by GitHub
commit d65ecd4a90
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 367 additions and 89 deletions

View file

@ -52,6 +52,9 @@ export const Flag = {
get OPENCODE_EXPERIMENTAL_REFERENCES() {
return enabledByExperimental("OPENCODE_EXPERIMENTAL_REFERENCES")
},
get CODEMODE_ENABLED() {
return process.env["CODEMODE_ENABLED"] === undefined || truthy("CODEMODE_ENABLED")
},
get OPENCODE_TUI_CONFIG() {
return process.env["OPENCODE_TUI_CONFIG"]
},