Prometheus: keep planner primary-only

This commit is contained in:
YeonGyu-Kim
2026-04-13 10:57:01 +09:00
parent 84f980c95e
commit 680d05a28b
7 changed files with 35 additions and 22 deletions
@@ -185,7 +185,7 @@ describe("agent-priority-order", () => {
const agents: Record<string, unknown> = {
[sisyphus]: { name: "sisyphus", mode: "primary" },
[hephaestus]: { name: "hephaestus", mode: "primary" },
[prometheus]: { name: "prometheus", mode: "all" },
[prometheus]: { name: "prometheus", mode: "primary" },
[atlas]: { name: "atlas", mode: "primary" },
}
@@ -195,7 +195,7 @@ describe("agent-priority-order", () => {
// then
expect(result[sisyphus]).toEqual({ name: "sisyphus", mode: "primary", order: 1 })
expect(result[hephaestus]).toEqual({ name: "hephaestus", mode: "primary", order: 2 })
expect(result[prometheus]).toEqual({ name: "prometheus", mode: "all", order: 3 })
expect(result[prometheus]).toEqual({ name: "prometheus", mode: "primary", order: 3 })
expect(result[atlas]).toEqual({ name: "atlas", mode: "primary", order: 4 })
})