Update agent display names: add Hephaestus (Deep Agent), rename Atlas to (Plan Executor), rename Momus to (Plan Critic)

This commit is contained in:
YeonGyu-Kim 2026-02-16 18:51:42 +09:00
parent e97f8ce082
commit 91734ded77
3 changed files with 15 additions and 13 deletions

View File

@ -93,10 +93,10 @@ describe("Agent Config Integration", () => {
// then - display names are correct // then - display names are correct
expect(displayNames).toContain("Sisyphus (Ultraworker)") expect(displayNames).toContain("Sisyphus (Ultraworker)")
expect(displayNames).toContain("Atlas (Plan Execution Orchestrator)") expect(displayNames).toContain("Atlas (Plan Executor)")
expect(displayNames).toContain("Prometheus (Plan Builder)") expect(displayNames).toContain("Prometheus (Plan Builder)")
expect(displayNames).toContain("Metis (Plan Consultant)") expect(displayNames).toContain("Metis (Plan Consultant)")
expect(displayNames).toContain("Momus (Plan Reviewer)") expect(displayNames).toContain("Momus (Plan Critic)")
expect(displayNames).toContain("oracle") expect(displayNames).toContain("oracle")
expect(displayNames).toContain("librarian") expect(displayNames).toContain("librarian")
expect(displayNames).toContain("explore") expect(displayNames).toContain("explore")
@ -112,9 +112,9 @@ describe("Agent Config Integration", () => {
// then - correct display names are returned // then - correct display names are returned
expect(displayNames[0]).toBe("Sisyphus (Ultraworker)") expect(displayNames[0]).toBe("Sisyphus (Ultraworker)")
expect(displayNames[1]).toBe("Atlas (Plan Execution Orchestrator)") expect(displayNames[1]).toBe("Atlas (Plan Executor)")
expect(displayNames[2]).toBe("Sisyphus (Ultraworker)") expect(displayNames[2]).toBe("Sisyphus (Ultraworker)")
expect(displayNames[3]).toBe("Atlas (Plan Execution Orchestrator)") expect(displayNames[3]).toBe("Atlas (Plan Executor)")
expect(displayNames[4]).toBe("Prometheus (Plan Builder)") expect(displayNames[4]).toBe("Prometheus (Plan Builder)")
expect(displayNames[5]).toBe("Prometheus (Plan Builder)") expect(displayNames[5]).toBe("Prometheus (Plan Builder)")
}) })
@ -218,7 +218,7 @@ describe("Agent Config Integration", () => {
// then - display names are correct // then - display names are correct
expect(sisyphusDisplay).toBe("Sisyphus (Ultraworker)") expect(sisyphusDisplay).toBe("Sisyphus (Ultraworker)")
expect(atlasDisplay).toBe("Atlas (Plan Execution Orchestrator)") expect(atlasDisplay).toBe("Atlas (Plan Executor)")
}) })
}) })
}) })

View File

@ -42,8 +42,8 @@ describe("getAgentDisplayName", () => {
// when getAgentDisplayName called // when getAgentDisplayName called
const result = getAgentDisplayName(configKey) const result = getAgentDisplayName(configKey)
// then returns "Atlas (Plan Execution Orchestrator)" // then returns "Atlas (Plan Executor)"
expect(result).toBe("Atlas (Plan Execution Orchestrator)") expect(result).toBe("Atlas (Plan Executor)")
}) })
it("returns display name for prometheus", () => { it("returns display name for prometheus", () => {
@ -86,8 +86,8 @@ describe("getAgentDisplayName", () => {
// when getAgentDisplayName called // when getAgentDisplayName called
const result = getAgentDisplayName(configKey) const result = getAgentDisplayName(configKey)
// then returns "Momus (Plan Reviewer)" // then returns "Momus (Plan Critic)"
expect(result).toBe("Momus (Plan Reviewer)") expect(result).toBe("Momus (Plan Critic)")
}) })
it("returns display name for oracle", () => { it("returns display name for oracle", () => {
@ -140,11 +140,12 @@ describe("AGENT_DISPLAY_NAMES", () => {
// given expected mappings // given expected mappings
const expectedMappings = { const expectedMappings = {
sisyphus: "Sisyphus (Ultraworker)", sisyphus: "Sisyphus (Ultraworker)",
atlas: "Atlas (Plan Execution Orchestrator)", hephaestus: "Hephaestus (Deep Agent)",
prometheus: "Prometheus (Plan Builder)", prometheus: "Prometheus (Plan Builder)",
atlas: "Atlas (Plan Executor)",
"sisyphus-junior": "Sisyphus-Junior", "sisyphus-junior": "Sisyphus-Junior",
metis: "Metis (Plan Consultant)", metis: "Metis (Plan Consultant)",
momus: "Momus (Plan Reviewer)", momus: "Momus (Plan Critic)",
oracle: "oracle", oracle: "oracle",
librarian: "librarian", librarian: "librarian",
explore: "explore", explore: "explore",

View File

@ -5,11 +5,12 @@
*/ */
export const AGENT_DISPLAY_NAMES: Record<string, string> = { export const AGENT_DISPLAY_NAMES: Record<string, string> = {
sisyphus: "Sisyphus (Ultraworker)", sisyphus: "Sisyphus (Ultraworker)",
atlas: "Atlas (Plan Execution Orchestrator)", hephaestus: "Hephaestus (Deep Agent)",
prometheus: "Prometheus (Plan Builder)", prometheus: "Prometheus (Plan Builder)",
atlas: "Atlas (Plan Executor)",
"sisyphus-junior": "Sisyphus-Junior", "sisyphus-junior": "Sisyphus-Junior",
metis: "Metis (Plan Consultant)", metis: "Metis (Plan Consultant)",
momus: "Momus (Plan Reviewer)", momus: "Momus (Plan Critic)",
oracle: "oracle", oracle: "oracle",
librarian: "librarian", librarian: "librarian",
explore: "explore", explore: "explore",