Skip to content

Commit 5dba599

Browse files
code-yeongyuclaude
andauthored
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 <[email protected]>
1 parent 662bae2 commit 5dba599

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

assets/oh-my-opencode.schema.json

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"items": {
2525
"type": "string",
2626
"enum": [
27-
"OmO",
27+
"Sisyphus",
2828
"oracle",
2929
"librarian",
3030
"explore",
@@ -288,7 +288,7 @@
288288
}
289289
}
290290
},
291-
"OmO": {
291+
"Sisyphus": {
292292
"type": "object",
293293
"properties": {
294294
"model": {
@@ -399,7 +399,7 @@
399399
}
400400
}
401401
},
402-
"OmO-Plan": {
402+
"Planner-Sisyphus": {
403403
"type": "object",
404404
"properties": {
405405
"model": {
@@ -1201,13 +1201,27 @@
12011201
"google_auth": {
12021202
"type": "boolean"
12031203
},
1204-
"omo_agent": {
1204+
"sisyphus_agent": {
12051205
"type": "object",
12061206
"properties": {
12071207
"disabled": {
12081208
"type": "boolean"
12091209
}
12101210
}
1211+
},
1212+
"experimental": {
1213+
"type": "object",
1214+
"properties": {
1215+
"aggressive_truncation": {
1216+
"type": "boolean"
1217+
},
1218+
"empty_message_recovery": {
1219+
"type": "boolean"
1220+
},
1221+
"auto_resume": {
1222+
"type": "boolean"
1223+
}
1224+
}
12111225
}
12121226
}
12131227
}

0 commit comments

Comments
 (0)