plugin: support local-based marketplace.json + install endpoint.

This commit is contained in:
Xin Lin
2026-03-03 19:17:35 -08:00
parent 26f4b8e2f1
commit 310f21a7a6
17 changed files with 748 additions and 69 deletions

View File

@@ -0,0 +1,23 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"cwd": {
"type": [
"string",
"null"
]
},
"marketplaceName": {
"type": "string"
},
"pluginName": {
"type": "string"
}
},
"required": [
"marketplaceName",
"pluginName"
],
"title": "PluginInstallParams",
"type": "object"
}

View File

@@ -0,0 +1,5 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "PluginInstallResponse",
"type": "object"
}