config: tune workspace profiles and codex models

This commit is contained in:
2026-06-08 07:05:28 +09:00
parent d406df3056
commit 696ef30d10
3 changed files with 15 additions and 7 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ return function(opts)
slug = opts.slug,
description = opts.description,
scope = scope.workspace_write(),
scope = opts.scope or scope.workspace_read(),
session = {
record_event_trace = true,
+2
View File
@@ -1,7 +1,9 @@
local base = require("_base")
local scope = require("yoi.scope")
return base {
slug = "coder",
description = "Coder role profile: GPT-5.5 with bundled default behavior",
model_ref = "codex-oauth/gpt-5.5",
scope = scope.workspace_write(),
}