mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-28 05:16:23 -06:00
9b77c06bbd
* fix(channels): validate activation through trusted channel owners * refactor(channels): simplify credential contract detection * test(channels): require complete Slack activation credentials * test(channels): type trusted installed Slack owner fixture * test(channels): preserve literal types in owner state fixtures
103 lines
2.6 KiB
JSON
103 lines
2.6 KiB
JSON
{
|
|
"name": "@openclaw/synology-chat",
|
|
"version": "2026.8.1",
|
|
"description": "Synology Chat channel plugin for OpenClaw channels and direct messages.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/openclaw/openclaw"
|
|
},
|
|
"type": "module",
|
|
"devDependencies": {
|
|
"@openclaw/plugin-sdk": "workspace:*"
|
|
},
|
|
"openclaw": {
|
|
"extensions": [
|
|
"./index.ts"
|
|
],
|
|
"setupEntry": "./setup-entry.ts",
|
|
"channel": {
|
|
"id": "synology-chat",
|
|
"configuredState": {
|
|
"env": {
|
|
"allOf": [
|
|
"SYNOLOGY_CHAT_TOKEN",
|
|
"SYNOLOGY_CHAT_INCOMING_URL"
|
|
]
|
|
}
|
|
},
|
|
"label": "Synology Chat",
|
|
"selectionLabel": "Synology Chat (Webhook)",
|
|
"docsPath": "/channels/synology-chat",
|
|
"docsLabel": "synology-chat",
|
|
"blurb": "Connect your Synology NAS Chat to OpenClaw with full agent capabilities.",
|
|
"order": 90,
|
|
"setup": {
|
|
"fields": [
|
|
{
|
|
"key": "token",
|
|
"kind": "string",
|
|
"sensitive": true,
|
|
"cli": {
|
|
"flags": "--token <token>",
|
|
"description": "Synology Chat token"
|
|
}
|
|
},
|
|
{
|
|
"key": "url",
|
|
"kind": "string",
|
|
"sensitive": true,
|
|
"cli": {
|
|
"flags": "--url <url>",
|
|
"description": "Synology Chat webhook URL"
|
|
}
|
|
},
|
|
{
|
|
"key": "webhookUrl",
|
|
"kind": "string",
|
|
"sensitive": true,
|
|
"cli": {
|
|
"flags": "--webhook-url <url>",
|
|
"description": "Public HTTPS Synology Chat callback URL used for attachments"
|
|
}
|
|
},
|
|
{
|
|
"key": "webhookPath",
|
|
"kind": "string",
|
|
"cli": {
|
|
"flags": "--webhook-path <path>",
|
|
"description": "Synology Chat webhook path"
|
|
}
|
|
},
|
|
{
|
|
"key": "useEnv",
|
|
"kind": "boolean",
|
|
"cli": {
|
|
"flags": "--use-env",
|
|
"description": "Use Synology Chat environment credentials"
|
|
},
|
|
"envVars": ["SYNOLOGY_CHAT_TOKEN"]
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"install": {
|
|
"npmSpec": "@openclaw/synology-chat",
|
|
"defaultChoice": "npm",
|
|
"minHostVersion": ">=2026.4.10"
|
|
},
|
|
"compat": {
|
|
"pluginApi": ">=2026.8.1"
|
|
},
|
|
"build": {
|
|
"openclawVersion": "2026.8.1"
|
|
},
|
|
"release": {
|
|
"publishToClawHub": true,
|
|
"publishToNpm": true
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"zod": "4.4.3"
|
|
}
|
|
}
|