feat(agents): add gpt-5.5 native deep category prompt

Hephaestus 5.5 was rewritten as an outcome-first delegation contract in c3fabaaf. The deep category (spawned as sisyphus-junior under gpt-5.5) now receives a matching prose-driven category context lifted from drafts/gpt-5-5/deep.md instead of the legacy gpt-5.4-era threat-frame version.

Selection happens via a new model-aware resolvePromptAppend hook on BuiltinCategoryDefinition. When the resolved category model is gpt-5.5 the new DEEP_CATEGORY_PROMPT_APPEND_GPT_5_5 is used; older models keep the legacy DEEP_CATEGORY_PROMPT_APPEND. User prompt_append remains preserved on top of either base.
This commit is contained in:
YeonGyu-Kim
2026-04-29 14:32:17 +09:00
parent 766eedd66b
commit d65bc8730c
7 changed files with 337 additions and 2 deletions
+1
View File
@@ -7,6 +7,7 @@ import { truncateDescription } from "../../shared/truncate-description"
export {
CATEGORY_DESCRIPTIONS,
CATEGORY_PROMPT_APPENDS,
CATEGORY_PROMPT_APPEND_RESOLVERS,
DEFAULT_CATEGORIES,
} from "./builtin-categories"