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
@@ -267,4 +267,19 @@ describe("buildPrometheusAgentConfig", () => {
expect(result.model).toBe("anthropic/claude-opus-4-6");
});
});
test("returns Prometheus as a primary agent", async () => {
// given
// when
const result = await buildPrometheusAgentConfig({
configAgentPlan: undefined,
pluginPrometheusOverride: undefined,
userCategories: undefined,
currentModel: undefined,
});
// then
expect(result.mode).toBe("primary");
});
});