build(plugins): add bundled provider plugin manifests

This commit is contained in:
Peter Steinberger 2026-03-15 15:18:06 -07:00
parent 4a0f72866b
commit 392ddb56e2
No known key found for this signature in database
6 changed files with 63 additions and 0 deletions

View File

@ -0,0 +1,9 @@
{
"id": "github-copilot",
"providers": ["github-copilot"],
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {}
}
}

View File

@ -0,0 +1,12 @@
{
"name": "@openclaw/github-copilot-provider",
"version": "2026.3.14",
"private": true,
"description": "OpenClaw GitHub Copilot provider plugin",
"type": "module",
"openclaw": {
"extensions": [
"./index.ts"
]
}
}

View File

@ -0,0 +1,9 @@
{
"id": "openai-codex",
"providers": ["openai-codex"],
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {}
}
}

View File

@ -0,0 +1,12 @@
{
"name": "@openclaw/openai-codex-provider",
"version": "2026.3.14",
"private": true,
"description": "OpenClaw OpenAI Codex provider plugin",
"type": "module",
"openclaw": {
"extensions": [
"./index.ts"
]
}
}

View File

@ -0,0 +1,9 @@
{
"id": "openrouter",
"providers": ["openrouter"],
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {}
}
}

View File

@ -0,0 +1,12 @@
{
"name": "@openclaw/openrouter-provider",
"version": "2026.3.14",
"private": true,
"description": "OpenClaw OpenRouter provider plugin",
"type": "module",
"openclaw": {
"extensions": [
"./index.ts"
]
}
}