mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-26 12:26:38 -06:00
d5e89de906
* fix(synology-chat): host outbound attachments * fix(synology-chat): isolate hosted media routes * fix(synology-chat): harden hosted media limits * fix(synology-chat): inspect hosted media content * fix(synology-chat): reject ambiguous media routes * fix(synology-chat): retain indeterminate media capabilities * fix(synology-chat): mask public callback URLs * fix(synology-chat): align callback sensitivity metadata * fix(synology-chat): reserve media capability query keys * fix(synology-chat): release rejected staged media * fix(synology-chat): preserve ambiguous media handoffs * fix(synology-chat): scan complete active media preamble * fix(synology-chat): report validated attachment readiness * fix(synology-chat): bound public media capability probes * fix(synology-chat): bound hosted media responses * test(synology-chat): model response headers read-only * fix(synology-chat): bound hosted media reads * fix(synology-chat): bound hosted media delivery * fix(synology-chat): retain media through active serves * fix(plugin-sdk): lease hosted media readers atomically * fix(synology-chat): close hosted media review gaps * test(synology-chat): clean up hosted media state * fix(system-agent): canonicalize sensitive config paths * fix(system-agent): honor runtime config sensitivity hints * fix(config): inherit sensitive metadata * fix(synology-chat): close latest review findings * test(system-agent): keep config recovery checks lint-clean * fix(system-agent): redact structured config secrets * fix(synology-chat): harden active-content sniffing * fix(security): close hosted media review gaps * fix(security): close remaining hosted media review findings * fix(system-agent): narrow dynamic owner ids safely * fix(system-agent): narrow dynamic channel ids safely * test(channels): isolate hosted media proofs * fix(security): close config and hosted media review gaps * test(plugin-sdk): split outbound media retention coverage * test(plugin-sdk): isolate capacity store fixtures * test(system-agent): assert config secrecy invariant
107 lines
2.7 KiB
JSON
107 lines
2.7 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": {
|
|
"anyOf": [
|
|
"SYNOLOGY_CHAT_TOKEN",
|
|
"SYNOLOGY_CHAT_INCOMING_URL",
|
|
"SYNOLOGY_NAS_HOST",
|
|
"SYNOLOGY_ALLOWED_USER_IDS",
|
|
"SYNOLOGY_RATE_LIMIT",
|
|
"OPENCLAW_BOT_NAME"
|
|
]
|
|
}
|
|
},
|
|
"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"
|
|
}
|
|
}
|