merge: builtin role profiles
This commit is contained in:
+1
-21
@@ -1,21 +1 @@
|
||||
default = "project:companion"
|
||||
|
||||
[profile.companion]
|
||||
description = "Companion role profile: GPT-5.5 with bundled default behavior"
|
||||
path = "profiles/companion.lua"
|
||||
|
||||
[profile.intake]
|
||||
description = "Intake role profile: GPT-5.5 with bundled default behavior"
|
||||
path = "profiles/intake.lua"
|
||||
|
||||
[profile.orchestrator]
|
||||
description = "Orchestrator role profile: GPT-5.5 with bundled default behavior"
|
||||
path = "profiles/orchestrator.lua"
|
||||
|
||||
[profile.coder]
|
||||
description = "Coder role profile: GPT-5.5 with bundled default behavior"
|
||||
path = "profiles/coder.lua"
|
||||
|
||||
[profile.reviewer]
|
||||
description = "Reviewer role profile: GPT-5.5 with bundled default behavior"
|
||||
path = "profiles/reviewer.lua"
|
||||
default = "builtin:companion"
|
||||
|
||||
@@ -1,55 +0,0 @@
|
||||
local profile = require("yoi.profile")
|
||||
local scope = require("yoi.scope")
|
||||
local compact = require("yoi.compact")
|
||||
|
||||
return function(opts)
|
||||
return profile {
|
||||
slug = opts.slug,
|
||||
description = opts.description,
|
||||
|
||||
scope = opts.scope or scope.workspace_read(),
|
||||
delegation_scope = opts.delegation_scope,
|
||||
|
||||
session = {
|
||||
record_event_trace = true,
|
||||
},
|
||||
|
||||
worker = {
|
||||
reasoning = "high",
|
||||
language = opts.language or "Japanese",
|
||||
},
|
||||
|
||||
model = {
|
||||
ref = opts.model_ref,
|
||||
},
|
||||
|
||||
compaction = compact.tokens {
|
||||
threshold = 240000,
|
||||
request_threshold = 270000,
|
||||
worker_context_max_tokens = 100000,
|
||||
},
|
||||
|
||||
feature = opts.feature or {
|
||||
task = { enabled = true },
|
||||
memory = { enabled = true },
|
||||
web = { enabled = true },
|
||||
pods = { enabled = false },
|
||||
ticket = { enabled = false, access = "lifecycle" },
|
||||
ticket_orchestration = { enabled = false },
|
||||
},
|
||||
|
||||
memory = {
|
||||
extract_threshold = 50000,
|
||||
consolidation_threshold_files = 5,
|
||||
consolidation_threshold_bytes = 50000,
|
||||
},
|
||||
|
||||
web = {
|
||||
enabled = true,
|
||||
search = {
|
||||
provider = "brave",
|
||||
api_key_secret = "web/brave/default",
|
||||
},
|
||||
},
|
||||
}
|
||||
end
|
||||
@@ -1,18 +0,0 @@
|
||||
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",
|
||||
feature = {
|
||||
task = { enabled = false },
|
||||
memory = { enabled = true },
|
||||
web = { enabled = true },
|
||||
pods = { enabled = false },
|
||||
ticket = { enabled = false, access = "lifecycle" },
|
||||
ticket_orchestration = { enabled = false },
|
||||
},
|
||||
language = "Japanese",
|
||||
scope = scope.workspace_write(),
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
local base = require("_base")
|
||||
|
||||
return base {
|
||||
slug = "companion",
|
||||
description = "Companion role profile: GPT-5.5 with bundled default behavior",
|
||||
model_ref = "codex-oauth/gpt-5.5",
|
||||
feature = {
|
||||
task = { enabled = false },
|
||||
memory = { enabled = true },
|
||||
web = { enabled = true },
|
||||
pods = { enabled = false },
|
||||
ticket = { enabled = false, access = "lifecycle" },
|
||||
ticket_orchestration = { enabled = false },
|
||||
},
|
||||
language = "Japanese",
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
local base = require("_base")
|
||||
|
||||
return base {
|
||||
slug = "intake",
|
||||
description = "Intake role profile: GPT-5.5 with bundled default behavior",
|
||||
model_ref = "codex-oauth/gpt-5.5",
|
||||
feature = {
|
||||
task = { enabled = false },
|
||||
memory = { enabled = true },
|
||||
web = { enabled = true },
|
||||
pods = { enabled = false },
|
||||
ticket = { enabled = true, access = "lifecycle" },
|
||||
ticket_orchestration = { enabled = false },
|
||||
},
|
||||
language = "Japanese",
|
||||
}
|
||||
@@ -1,18 +0,0 @@
|
||||
local base = require("_base")
|
||||
local scope = require("yoi.scope")
|
||||
|
||||
return base {
|
||||
slug = "orchestrator",
|
||||
description = "Orchestrator role profile: GPT-5.5 with bundled default behavior",
|
||||
delegation_scope = scope.workspace_write(),
|
||||
feature = {
|
||||
task = { enabled = false },
|
||||
memory = { enabled = true },
|
||||
web = { enabled = true },
|
||||
pods = { enabled = true },
|
||||
ticket = { enabled = true, access = "lifecycle" },
|
||||
ticket_orchestration = { enabled = true },
|
||||
},
|
||||
model_ref = "codex-oauth/gpt-5.5",
|
||||
language = "Japanese",
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
local base = require("_base")
|
||||
|
||||
return base {
|
||||
slug = "reviewer",
|
||||
description = "Reviewer role profile: GPT-5.5 with bundled default behavior",
|
||||
model_ref = "codex-oauth/gpt-5.5",
|
||||
feature = {
|
||||
task = { enabled = false },
|
||||
memory = { enabled = true },
|
||||
web = { enabled = true },
|
||||
pods = { enabled = false },
|
||||
ticket = { enabled = false, access = "lifecycle" },
|
||||
ticket_orchestration = { enabled = false },
|
||||
},
|
||||
language = "Japanese",
|
||||
}
|
||||
@@ -6,17 +6,17 @@ root = ".yoi/tickets"
|
||||
language = "Japanese"
|
||||
|
||||
[roles.intake]
|
||||
profile = "project:intake"
|
||||
profile = "builtin:intake"
|
||||
workflow = "ticket-intake-workflow"
|
||||
|
||||
[roles.orchestrator]
|
||||
profile = "project:orchestrator"
|
||||
profile = "builtin:orchestrator"
|
||||
workflow = "ticket-orchestrator-routing"
|
||||
|
||||
[roles.coder]
|
||||
profile = "project:coder"
|
||||
profile = "builtin:coder"
|
||||
workflow = "multi-agent-workflow"
|
||||
|
||||
[roles.reviewer]
|
||||
profile = "project:reviewer"
|
||||
profile = "builtin:reviewer"
|
||||
workflow = "multi-agent-workflow"
|
||||
|
||||
Reference in New Issue
Block a user