fix(agents): use list display names for ordered agent config
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
import { getAgentDisplayName } from "../shared/agent-display-names";
|
||||
import { getAgentListDisplayName } from "../shared/agent-display-names";
|
||||
|
||||
const CORE_AGENT_ORDER: ReadonlyArray<{ displayName: string; order: number }> = [
|
||||
{ displayName: getAgentDisplayName("sisyphus"), order: 1 },
|
||||
{ displayName: getAgentDisplayName("hephaestus"), order: 2 },
|
||||
{ displayName: getAgentDisplayName("prometheus"), order: 3 },
|
||||
{ displayName: getAgentDisplayName("atlas"), order: 4 },
|
||||
{ displayName: getAgentListDisplayName("sisyphus"), order: 1 },
|
||||
{ displayName: getAgentListDisplayName("hephaestus"), order: 2 },
|
||||
{ displayName: getAgentListDisplayName("prometheus"), order: 3 },
|
||||
{ displayName: getAgentListDisplayName("atlas"), order: 4 },
|
||||
];
|
||||
|
||||
function injectOrderField(
|
||||
|
||||
Reference in New Issue
Block a user