77 lines
1.9 KiB
TypeScript
77 lines
1.9 KiB
TypeScript
export const AGENT_NAME_MAP: Record<string, string> = {
|
|
// Sisyphus variants → "sisyphus"
|
|
omo: "sisyphus",
|
|
OmO: "sisyphus",
|
|
Sisyphus: "sisyphus",
|
|
sisyphus: "sisyphus",
|
|
|
|
Athena: "athena",
|
|
athena: "athena",
|
|
|
|
// Prometheus variants → "prometheus"
|
|
"OmO-Plan": "prometheus",
|
|
"omo-plan": "prometheus",
|
|
"Planner-Sisyphus": "prometheus",
|
|
"planner-sisyphus": "prometheus",
|
|
"Prometheus (Planner)": "prometheus",
|
|
prometheus: "prometheus",
|
|
|
|
// Atlas variants → "atlas"
|
|
"orchestrator-sisyphus": "atlas",
|
|
Atlas: "atlas",
|
|
atlas: "atlas",
|
|
|
|
// Metis variants → "metis"
|
|
"plan-consultant": "metis",
|
|
"Metis (Plan Consultant)": "metis",
|
|
metis: "metis",
|
|
|
|
// Momus variants → "momus"
|
|
"Momus (Plan Reviewer)": "momus",
|
|
momus: "momus",
|
|
|
|
// Sisyphus-Junior → "sisyphus-junior"
|
|
"Sisyphus-Junior": "sisyphus-junior",
|
|
"sisyphus-junior": "sisyphus-junior",
|
|
|
|
// Already lowercase - passthrough
|
|
build: "build",
|
|
oracle: "oracle",
|
|
librarian: "librarian",
|
|
explore: "explore",
|
|
"multimodal-looker": "multimodal-looker",
|
|
"council-member": "council-member",
|
|
}
|
|
|
|
export const BUILTIN_AGENT_NAMES = new Set([
|
|
"sisyphus", // was "Sisyphus"
|
|
"athena",
|
|
"oracle",
|
|
"librarian",
|
|
"explore",
|
|
"multimodal-looker",
|
|
"metis", // was "Metis (Plan Consultant)"
|
|
"momus", // was "Momus (Plan Reviewer)"
|
|
"prometheus", // was "Prometheus (Planner)"
|
|
"atlas", // was "Atlas"
|
|
"council-member",
|
|
"build",
|
|
])
|
|
|
|
export function migrateAgentNames(
|
|
agents: Record<string, unknown>
|
|
): { migrated: Record<string, unknown>; changed: boolean } {
|
|
const migrated: Record<string, unknown> = {}
|
|
let changed = false
|
|
|
|
for (const [key, value] of Object.entries(agents)) {
|
|
const newKey = AGENT_NAME_MAP[key.toLowerCase()] ?? AGENT_NAME_MAP[key] ?? key
|
|
if (newKey !== key) {
|
|
changed = true
|
|
}
|
|
migrated[newKey] = value
|
|
}
|
|
|
|
return { migrated, changed }
|
|
}
|