chore: update artistry category description for creative problem-solving

This commit is contained in:
justsisyphus
2026-01-30 14:26:18 +09:00
parent 5f243e2d3a
commit 10bdb6c694
5 changed files with 82 additions and 4 deletions
+19
View File
@@ -51,6 +51,16 @@ describe("sisyphus-task", () => {
expect(category.model).toBe("openai/gpt-5.2-codex")
expect(category.variant).toBe("xhigh")
})
test("deep category has model and variant config", () => {
// #given
const category = DEFAULT_CATEGORIES["deep"]
// #when / #then
expect(category).toBeDefined()
expect(category.model).toBe("openai/gpt-5.2-codex")
expect(category.variant).toBe("medium")
})
})
describe("CATEGORY_PROMPT_APPENDS", () => {
@@ -71,6 +81,15 @@ describe("sisyphus-task", () => {
expect(promptAppend).toContain("DEEP LOGICAL REASONING")
expect(promptAppend).toContain("Strategic advisor")
})
test("deep category has goal-oriented autonomous prompt", () => {
// #given
const promptAppend = CATEGORY_PROMPT_APPENDS["deep"]
// #when / #then
expect(promptAppend).toContain("GOAL-ORIENTED")
expect(promptAppend).toContain("autonomous")
})
})
describe("CATEGORY_DESCRIPTIONS", () => {