feat(plugins): add package.json and openclaw.plugin.json for OpenClaw compatibility

- Add package.json with openclaw.extensions field for all three plugins
- Add openclaw.plugin.json manifest files
- Plugins: zclaw-chinese-models, zclaw-feishu, zclaw-ui

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
iven
2026-03-12 00:27:47 +08:00
parent ef849c62ab
commit c00bcb11b6
6 changed files with 167 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
{
"id": "zclaw-feishu",
"name": "ZCLAW Feishu Channel",
"version": "0.1.0",
"description": "Feishu (飞书/Lark) messaging channel plugin for OpenClaw",
"author": "ZCLAW",
"entry": "index.ts",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"appId": { "type": "string" },
"appSecret": { "type": "string" },
"verificationToken": { "type": "string" },
"encryptKey": { "type": "string" },
"webhookUrl": { "type": "string" }
},
"required": ["appId", "appSecret"]
},
"uiHints": {
"appId": { "label": "飞书 App ID", "placeholder": "cli_xxxxxxxxxxxx" },
"appSecret": { "label": "飞书 App Secret", "sensitive": true },
"verificationToken": { "label": "Verification Token", "sensitive": true },
"encryptKey": { "label": "Encrypt Key", "sensitive": true },
"webhookUrl": { "label": "Webhook URL (可选)", "placeholder": "https://your-server/feishu/webhook" }
}
}

View File

@@ -0,0 +1,35 @@
{
"name": "@zclaw/feishu",
"version": "0.1.0",
"description": "Feishu (Lark) channel plugin for ZCLAW",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"openclaw",
"plugin",
"zclaw",
"feishu",
"lark",
"channel",
"im"
],
"author": "ZCLAW Team",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0"
},
"openclaw": {
"type": "channel",
"entry": "index.ts",
"extensions": ["./index.ts"]
},
"files": [
"dist",
"index.ts",
"plugin.json"
]
}