fix(schema): update schema to reflect Sisyphus agent (#119)

- Rename OmO → Sisyphus in disabled_agents enum
- Rename OmO, OmO-Plan → Sisyphus, Planner-Sisyphus in agents properties
- Replace omo_agent with sisyphus_agent config option
- Add experimental config options (aggressive_truncation, empty_message_recovery, auto_resume)

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
YeonGyu-Kim
2025-12-19 12:02:36 +09:00
committed by GitHub
parent 662bae2454
commit 5dba5992b4

View File

@@ -24,7 +24,7 @@
"items": {
"type": "string",
"enum": [
"OmO",
"Sisyphus",
"oracle",
"librarian",
"explore",
@@ -288,7 +288,7 @@
}
}
},
"OmO": {
"Sisyphus": {
"type": "object",
"properties": {
"model": {
@@ -399,7 +399,7 @@
}
}
},
"OmO-Plan": {
"Planner-Sisyphus": {
"type": "object",
"properties": {
"model": {
@@ -1201,13 +1201,27 @@
"google_auth": {
"type": "boolean"
},
"omo_agent": {
"sisyphus_agent": {
"type": "object",
"properties": {
"disabled": {
"type": "boolean"
}
}
},
"experimental": {
"type": "object",
"properties": {
"aggressive_truncation": {
"type": "boolean"
},
"empty_message_recovery": {
"type": "boolean"
},
"auto_resume": {
"type": "boolean"
}
}
}
}
}