Support external agent config detect and import

This commit is contained in:
alexsong-oai
2026-02-24 00:46:07 -08:00
parent 68a7d98363
commit db43e64d0f
19 changed files with 1092 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"ExternalAgentConfigMigrationType": {
"enum": [
"AGENTS_MD",
"CONFIG",
"SKILLS"
],
"type": "string"
}
},
"properties": {
"migrationTypes": {
"items": {
"$ref": "#/definitions/ExternalAgentConfigMigrationType"
},
"type": "array"
}
},
"required": [
"migrationTypes"
],
"title": "ExternalAgentConfigImportParams",
"type": "object"
}