Add display names to core agents: Sisyphus (Ultraworker), Hephaestus (Deep Agent), Prometheus (Plan Builder), Atlas (Plan Executor)
This commit is contained in:
parent
4fa234e5e1
commit
655899a264
@ -99,6 +99,7 @@ export function createAtlasAgent(ctx: OrchestratorContext): AgentConfig {
|
|||||||
])
|
])
|
||||||
|
|
||||||
const baseConfig = {
|
const baseConfig = {
|
||||||
|
name: "Atlas (Plan Executor)",
|
||||||
description:
|
description:
|
||||||
"Orchestrates work via task() to complete ALL tasks in a todo list until fully done. (Atlas - OhMyOpenCode)",
|
"Orchestrates work via task() to complete ALL tasks in a todo list until fully done. (Atlas - OhMyOpenCode)",
|
||||||
mode: MODE,
|
mode: MODE,
|
||||||
|
|||||||
@ -633,6 +633,7 @@ export function createHephaestusAgent(
|
|||||||
: buildHephaestusPrompt([], tools, skills, categories, useTaskSystem);
|
: buildHephaestusPrompt([], tools, skills, categories, useTaskSystem);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
name: "Hephaestus (Deep Agent)",
|
||||||
description:
|
description:
|
||||||
"Autonomous Deep Worker - goal-oriented execution with GPT 5.2 Codex. Explores thoroughly before acting, uses explore/librarian agents for comprehensive context, completes tasks end-to-end. Inspired by AmpCode deep mode. (Hephaestus - OhMyOpenCode)",
|
"Autonomous Deep Worker - goal-oriented execution with GPT 5.2 Codex. Explores thoroughly before acting, uses explore/librarian agents for comprehensive context, completes tasks end-to-end. Inspired by AmpCode deep mode. (Hephaestus - OhMyOpenCode)",
|
||||||
mode: MODE,
|
mode: MODE,
|
||||||
|
|||||||
@ -539,6 +539,7 @@ export function createSisyphusAgent(
|
|||||||
call_omo_agent: "deny",
|
call_omo_agent: "deny",
|
||||||
} as AgentConfig["permission"];
|
} as AgentConfig["permission"];
|
||||||
const base = {
|
const base = {
|
||||||
|
name: "Sisyphus (Ultraworker)",
|
||||||
description:
|
description:
|
||||||
"Powerful AI orchestrator. Plans obsessively with todos, assesses search complexity before exploration, delegates strategically via category+skills combinations. Uses explore for internal code (parallel-friendly), librarian for external docs. (Sisyphus - OhMyOpenCode)",
|
"Powerful AI orchestrator. Plans obsessively with todos, assesses search complexity before exploration, delegates strategically via category+skills combinations. Uses explore for internal code (parallel-friendly), librarian for external docs. (Sisyphus - OhMyOpenCode)",
|
||||||
mode: MODE,
|
mode: MODE,
|
||||||
|
|||||||
@ -66,7 +66,7 @@ export async function buildPrometheusAgentConfig(params: {
|
|||||||
params.pluginPrometheusOverride?.maxTokens ?? categoryConfig?.maxTokens;
|
params.pluginPrometheusOverride?.maxTokens ?? categoryConfig?.maxTokens;
|
||||||
|
|
||||||
const base: Record<string, unknown> = {
|
const base: Record<string, unknown> = {
|
||||||
name: "prometheus",
|
name: "Prometheus (Plan Builder)",
|
||||||
...(resolvedModel ? { model: resolvedModel } : {}),
|
...(resolvedModel ? { model: resolvedModel } : {}),
|
||||||
...(variantToUse ? { variant: variantToUse } : {}),
|
...(variantToUse ? { variant: variantToUse } : {}),
|
||||||
mode: "all",
|
mode: "all",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user