From 7e08de4a5f93428fca121d20f49b1f475d64c128 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 20 Jan 2026 11:37:46 +0000 Subject: [PATCH] fix: add nextcloud talk manifest (#1297) (thanks @ysqander) --- CHANGELOG.md | 1 + extensions/nextcloud-talk/clawdbot.plugin.json | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 extensions/nextcloud-talk/clawdbot.plugin.json diff --git a/CHANGELOG.md b/CHANGELOG.md index c121279ca..e094f9184 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ Docs: https://docs.clawd.bot - TUI: keep thinking blocks ordered before content during streaming and isolate per-run assembly. (#1202) — thanks @aaronveklabs. - CLI: avoid duplicating --profile/--dev flags when formatting commands. - Exec: prefer bash when fish is default shell, falling back to sh if bash is missing. (#1297) — thanks @ysqander. +- Plugins: add Nextcloud Talk manifest for plugin config validation. (#1297) — thanks @ysqander. ## 2026.1.19-3 diff --git a/extensions/nextcloud-talk/clawdbot.plugin.json b/extensions/nextcloud-talk/clawdbot.plugin.json new file mode 100644 index 000000000..0d67c5031 --- /dev/null +++ b/extensions/nextcloud-talk/clawdbot.plugin.json @@ -0,0 +1,11 @@ +{ + "id": "nextcloud-talk", + "channels": [ + "nextcloud-talk" + ], + "configSchema": { + "type": "object", + "additionalProperties": false, + "properties": {} + } +}