Merge pull request #776 from MotorwaySouth9/fix/config-migration-do-not-prune-agent-overrides

fix(migration): normalize Orchestrator-Sisyphus name
This commit is contained in:
Kenny 2026-01-14 10:02:26 -05:00 committed by GitHub
commit 0c21c72e05
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 0 deletions

View File

@ -55,6 +55,7 @@ describe("migrateAgentNames", () => {
const agents = {
SISYPHUS: { model: "test" },
"planner-sisyphus": { prompt: "test" },
"Orchestrator-Sisyphus": { model: "openai/gpt-5.2" },
}
// #when: Migrate agent names
@ -63,6 +64,7 @@ describe("migrateAgentNames", () => {
// #then: Case-insensitive lookup should migrate correctly
expect(migrated["Sisyphus"]).toEqual({ model: "test" })
expect(migrated["Prometheus (Planner)"]).toEqual({ prompt: "test" })
expect(migrated["orchestrator-sisyphus"]).toEqual({ model: "openai/gpt-5.2" })
})
test("passes through unknown agent names unchanged", () => {

View File

@ -20,6 +20,7 @@ export const AGENT_NAME_MAP: Record<string, string> = {
"frontend-ui-ux-engineer": "frontend-ui-ux-engineer",
"document-writer": "document-writer",
"multimodal-looker": "multimodal-looker",
"orchestrator-sisyphus": "orchestrator-sisyphus",
}
export const BUILTIN_AGENT_NAMES = new Set([