mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-12 21:53:00 -06:00
145 lines
3.6 KiB
JSON
145 lines
3.6 KiB
JSON
{
|
|
"name": "@openclaw/nextcloud-talk",
|
|
"version": "2026.8.1",
|
|
"description": "OpenClaw Nextcloud Talk channel plugin for conversations.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/openclaw/openclaw"
|
|
},
|
|
"type": "module",
|
|
"devDependencies": {
|
|
"@openclaw/plugin-sdk": "workspace:*",
|
|
"openclaw": "workspace:*"
|
|
},
|
|
"peerDependencies": {
|
|
"openclaw": ">=2026.8.1"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"openclaw": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"openclaw": {
|
|
"extensions": [
|
|
"./index.ts"
|
|
],
|
|
"setupEntry": "./setup-entry.ts",
|
|
"setupFeatures": {
|
|
"configPromotion": true
|
|
},
|
|
"channel": {
|
|
"id": "nextcloud-talk",
|
|
"configuredState": {
|
|
"env": {
|
|
"anyOf": [
|
|
"NEXTCLOUD_TALK_BOT_SECRET",
|
|
"NEXTCLOUD_TALK_API_PASSWORD"
|
|
]
|
|
}
|
|
},
|
|
"label": "Nextcloud Talk",
|
|
"selectionLabel": "Nextcloud Talk (self-hosted)",
|
|
"docsPath": "/channels/nextcloud-talk",
|
|
"docsLabel": "nextcloud-talk",
|
|
"blurb": "Self-hosted chat via Nextcloud Talk webhook bots.",
|
|
"aliases": [
|
|
"nc-talk",
|
|
"nc"
|
|
],
|
|
"order": 65,
|
|
"quickstartAllowFrom": true,
|
|
"setup": {
|
|
"fields": [
|
|
{
|
|
"key": "baseUrl",
|
|
"kind": "string",
|
|
"cli": {
|
|
"flags": "--base-url <url>",
|
|
"description": "Nextcloud base URL"
|
|
}
|
|
},
|
|
{
|
|
"key": "url",
|
|
"kind": "string",
|
|
"cli": {
|
|
"flags": "--url <url>",
|
|
"description": "Legacy Nextcloud base URL alias"
|
|
}
|
|
},
|
|
{
|
|
"key": "secret",
|
|
"kind": "string",
|
|
"sensitive": true,
|
|
"cli": {
|
|
"flags": "--secret <secret>",
|
|
"description": "Nextcloud Talk bot secret"
|
|
}
|
|
},
|
|
{
|
|
"key": "token",
|
|
"kind": "string",
|
|
"sensitive": true,
|
|
"cli": {
|
|
"flags": "--token <secret>",
|
|
"description": "Legacy Nextcloud bot secret alias"
|
|
}
|
|
},
|
|
{
|
|
"key": "password",
|
|
"kind": "string",
|
|
"sensitive": true,
|
|
"cli": {
|
|
"flags": "--password <secret>",
|
|
"description": "Legacy Nextcloud bot secret alias"
|
|
}
|
|
},
|
|
{
|
|
"key": "secretFile",
|
|
"kind": "string",
|
|
"sensitive": true,
|
|
"cli": {
|
|
"flags": "--secret-file <path>",
|
|
"description": "Nextcloud Talk bot secret file"
|
|
}
|
|
},
|
|
{
|
|
"key": "tokenFile",
|
|
"kind": "string",
|
|
"sensitive": true,
|
|
"cli": {
|
|
"flags": "--token-file <path>",
|
|
"description": "Legacy Nextcloud bot secret file alias"
|
|
}
|
|
},
|
|
{
|
|
"key": "useEnv",
|
|
"kind": "boolean",
|
|
"cli": {
|
|
"flags": "--use-env",
|
|
"description": "Use Nextcloud Talk environment credentials"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"install": {
|
|
"npmSpec": "@openclaw/nextcloud-talk",
|
|
"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"
|
|
}
|
|
}
|