fix: resolve PR 371 portability regressions

This commit is contained in:
Affaan Mustafa
2026-03-09 22:05:35 -07:00
committed by Affaan Mustafa
parent 1c5e07ff77
commit af51fcacb7
7 changed files with 141 additions and 21 deletions

View File

@@ -34,6 +34,25 @@
"agents": {
"type": "array",
"items": { "type": "string" }
},
"features": {
"type": "object",
"properties": {
"agents": { "type": "integer", "minimum": 0 },
"commands": { "type": "integer", "minimum": 0 },
"skills": { "type": "integer", "minimum": 0 },
"configAssets": { "type": "boolean" },
"hookEvents": {
"type": "array",
"items": { "type": "string" }
},
"customTools": {
"type": "array",
"items": { "type": "string" }
}
},
"additionalProperties": false
}
}
},
"additionalProperties": false
}