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