fix: register sisyphus-junior as builtin agent across type system and model fallback

Sisyphus-Junior was missing from BuiltinAgentName type, agentSources map,
barrel exports, and AGENT_MODEL_REQUIREMENTS. This caused type inconsistencies
and prevented model-fallback hooks from working for sisyphus-junior sessions.

Closes code-yeongyu/oh-my-openagent#1697
This commit is contained in:
rluisr
2026-03-07 16:45:32 +09:00
parent b3ef86c574
commit 2594a1c5aa
6 changed files with 20 additions and 1 deletions
+2 -1
View File
@@ -113,7 +113,8 @@ export type BuiltinAgentName =
| "multimodal-looker"
| "metis"
| "momus"
| "atlas";
| "atlas"
| "sisyphus-junior";
export type OverridableAgentName = "build" | BuiltinAgentName;