chore: bump version to 2026.1.26

This commit is contained in:
Peter Steinberger
2026-01-27 09:10:21 +00:00
parent d7a00dc823
commit 72fea5e305
40 changed files with 115 additions and 95 deletions

View File

@@ -2,10 +2,11 @@
Docs: https://docs.clawd.bot Docs: https://docs.clawd.bot
## 2026.1.25 ## 2026.1.26
Status: unreleased. Status: unreleased.
### Changes ### Changes
- Rebrand: rename the npm package/CLI to `moltbot`, add a `clawdbot` compatibility shim, and move extensions to the `@moltbot/*` scope.
- Commands: group /help and /commands output with Telegram paging. (#2504) Thanks @hougangdev. - Commands: group /help and /commands output with Telegram paging. (#2504) Thanks @hougangdev.
- macOS: limit project-local `node_modules/.bin` PATH preference to debug builds (reduce PATH hijacking risk). - macOS: limit project-local `node_modules/.bin` PATH preference to debug builds (reduce PATH hijacking risk).
- Tools: add per-sender group tool policies and fix precedence. (#1757) Thanks @adam91holt. - Tools: add per-sender group tool policies and fix precedence. (#1757) Thanks @adam91holt.

View File

@@ -21,8 +21,8 @@ android {
applicationId = "com.clawdbot.android" applicationId = "com.clawdbot.android"
minSdk = 31 minSdk = 31
targetSdk = 36 targetSdk = 36
versionCode = 202601250 versionCode = 202601260
versionName = "2026.1.25" versionName = "2026.1.26"
} }
buildTypes { buildTypes {

View File

@@ -19,9 +19,9 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>2026.1.25</string> <string>2026.1.26</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>20260125</string> <string>20260126</string>
<key>NSAppTransportSecurity</key> <key>NSAppTransportSecurity</key>
<dict> <dict>
<key>NSAllowsArbitraryLoadsInWebContent</key> <key>NSAllowsArbitraryLoadsInWebContent</key>

View File

@@ -17,8 +17,8 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>BNDL</string> <string>BNDL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>2026.1.25</string> <string>2026.1.26</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>20260125</string> <string>20260126</string>
</dict> </dict>
</plist> </plist>

View File

@@ -81,8 +81,8 @@ targets:
properties: properties:
CFBundleDisplayName: Clawdbot CFBundleDisplayName: Clawdbot
CFBundleIconName: AppIcon CFBundleIconName: AppIcon
CFBundleShortVersionString: "2026.1.25" CFBundleShortVersionString: "2026.1.26"
CFBundleVersion: "20260125" CFBundleVersion: "20260126"
UILaunchScreen: {} UILaunchScreen: {}
UIApplicationSceneManifest: UIApplicationSceneManifest:
UIApplicationSupportsMultipleScenes: false UIApplicationSupportsMultipleScenes: false
@@ -130,5 +130,5 @@ targets:
path: Tests/Info.plist path: Tests/Info.plist
properties: properties:
CFBundleDisplayName: ClawdbotTests CFBundleDisplayName: ClawdbotTests
CFBundleShortVersionString: "2026.1.25" CFBundleShortVersionString: "2026.1.26"
CFBundleVersion: "20260125" CFBundleVersion: "20260126"

View File

@@ -15,9 +15,9 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>2026.1.25</string> <string>2026.1.26</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>202601250</string> <string>202601260</string>
<key>CFBundleIconFile</key> <key>CFBundleIconFile</key>
<string>Clawdbot</string> <string>Clawdbot</string>
<key>CFBundleURLTypes</key> <key>CFBundleURLTypes</key>

View File

@@ -185,7 +185,7 @@ cat > /data/clawdbot.json << 'EOF'
"bind": "auto" "bind": "auto"
}, },
"meta": { "meta": {
"lastTouchedVersion": "2026.1.25" "lastTouchedVersion": "2026.1.26"
} }
} }
EOF EOF

View File

@@ -30,17 +30,17 @@ Notes:
# From repo root; set release IDs so Sparkle feed is enabled. # From repo root; set release IDs so Sparkle feed is enabled.
# APP_BUILD must be numeric + monotonic for Sparkle compare. # APP_BUILD must be numeric + monotonic for Sparkle compare.
BUNDLE_ID=com.clawdbot.mac \ BUNDLE_ID=com.clawdbot.mac \
APP_VERSION=2026.1.25 \ APP_VERSION=2026.1.26 \
APP_BUILD="$(git rev-list --count HEAD)" \ APP_BUILD="$(git rev-list --count HEAD)" \
BUILD_CONFIG=release \ BUILD_CONFIG=release \
SIGN_IDENTITY="Developer ID Application: <Developer Name> (<TEAMID>)" \ SIGN_IDENTITY="Developer ID Application: <Developer Name> (<TEAMID>)" \
scripts/package-mac-app.sh scripts/package-mac-app.sh
# Zip for distribution (includes resource forks for Sparkle delta support) # Zip for distribution (includes resource forks for Sparkle delta support)
ditto -c -k --sequesterRsrc --keepParent dist/Clawdbot.app dist/Clawdbot-2026.1.25.zip ditto -c -k --sequesterRsrc --keepParent dist/Clawdbot.app dist/Clawdbot-2026.1.26.zip
# Optional: also build a styled DMG for humans (drag to /Applications) # Optional: also build a styled DMG for humans (drag to /Applications)
scripts/create-dmg.sh dist/Clawdbot.app dist/Clawdbot-2026.1.25.dmg scripts/create-dmg.sh dist/Clawdbot.app dist/Clawdbot-2026.1.26.dmg
# Recommended: build + notarize/staple zip + DMG # Recommended: build + notarize/staple zip + DMG
# First, create a keychain profile once: # First, create a keychain profile once:
@@ -48,26 +48,26 @@ scripts/create-dmg.sh dist/Clawdbot.app dist/Clawdbot-2026.1.25.dmg
# --apple-id "<apple-id>" --team-id "<team-id>" --password "<app-specific-password>" # --apple-id "<apple-id>" --team-id "<team-id>" --password "<app-specific-password>"
NOTARIZE=1 NOTARYTOOL_PROFILE=clawdbot-notary \ NOTARIZE=1 NOTARYTOOL_PROFILE=clawdbot-notary \
BUNDLE_ID=com.clawdbot.mac \ BUNDLE_ID=com.clawdbot.mac \
APP_VERSION=2026.1.25 \ APP_VERSION=2026.1.26 \
APP_BUILD="$(git rev-list --count HEAD)" \ APP_BUILD="$(git rev-list --count HEAD)" \
BUILD_CONFIG=release \ BUILD_CONFIG=release \
SIGN_IDENTITY="Developer ID Application: <Developer Name> (<TEAMID>)" \ SIGN_IDENTITY="Developer ID Application: <Developer Name> (<TEAMID>)" \
scripts/package-mac-dist.sh scripts/package-mac-dist.sh
# Optional: ship dSYM alongside the release # Optional: ship dSYM alongside the release
ditto -c -k --keepParent apps/macos/.build/release/Clawdbot.app.dSYM dist/Clawdbot-2026.1.25.dSYM.zip ditto -c -k --keepParent apps/macos/.build/release/Clawdbot.app.dSYM dist/Clawdbot-2026.1.26.dSYM.zip
``` ```
## Appcast entry ## Appcast entry
Use the release note generator so Sparkle renders formatted HTML notes: Use the release note generator so Sparkle renders formatted HTML notes:
```bash ```bash
SPARKLE_PRIVATE_KEY_FILE=/path/to/ed25519-private-key scripts/make_appcast.sh dist/Clawdbot-2026.1.25.zip https://raw.githubusercontent.com/clawdbot/clawdbot/main/appcast.xml SPARKLE_PRIVATE_KEY_FILE=/path/to/ed25519-private-key scripts/make_appcast.sh dist/Clawdbot-2026.1.26.zip https://raw.githubusercontent.com/clawdbot/clawdbot/main/appcast.xml
``` ```
Generates HTML release notes from `CHANGELOG.md` (via [`scripts/changelog-to-html.sh`](https://github.com/clawdbot/clawdbot/blob/main/scripts/changelog-to-html.sh)) and embeds them in the appcast entry. Generates HTML release notes from `CHANGELOG.md` (via [`scripts/changelog-to-html.sh`](https://github.com/clawdbot/clawdbot/blob/main/scripts/changelog-to-html.sh)) and embeds them in the appcast entry.
Commit the updated `appcast.xml` alongside the release assets (zip + dSYM) when publishing. Commit the updated `appcast.xml` alongside the release assets (zip + dSYM) when publishing.
## Publish & verify ## Publish & verify
- Upload `Clawdbot-2026.1.25.zip` (and `Clawdbot-2026.1.25.dSYM.zip`) to the GitHub release for tag `v2026.1.25`. - Upload `Clawdbot-2026.1.26.zip` (and `Clawdbot-2026.1.26.dSYM.zip`) to the GitHub release for tag `v2026.1.26`.
- Ensure the raw appcast URL matches the baked feed: `https://raw.githubusercontent.com/clawdbot/clawdbot/main/appcast.xml`. - Ensure the raw appcast URL matches the baked feed: `https://raw.githubusercontent.com/clawdbot/clawdbot/main/appcast.xml`.
- Sanity checks: - Sanity checks:
- `curl -I https://raw.githubusercontent.com/clawdbot/clawdbot/main/appcast.xml` returns 200. - `curl -I https://raw.githubusercontent.com/clawdbot/clawdbot/main/appcast.xml` returns 200.

View File

@@ -17,7 +17,7 @@ When the operator says “release”, immediately do this preflight (no extra qu
- Use Sparkle keys from `~/Library/CloudStorage/Dropbox/Backup/Sparkle` if needed. - Use Sparkle keys from `~/Library/CloudStorage/Dropbox/Backup/Sparkle` if needed.
1) **Version & metadata** 1) **Version & metadata**
- [ ] Bump `package.json` version (e.g., `2026.1.25`). - [ ] Bump `package.json` version (e.g., `2026.1.26`).
- [ ] Run `pnpm plugins:sync` to align extension package versions + changelogs. - [ ] Run `pnpm plugins:sync` to align extension package versions + changelogs.
- [ ] Update CLI/version strings: [`src/cli/program.ts`](https://github.com/clawdbot/clawdbot/blob/main/src/cli/program.ts) and the Baileys user agent in [`src/provider-web.ts`](https://github.com/clawdbot/clawdbot/blob/main/src/provider-web.ts). - [ ] Update CLI/version strings: [`src/cli/program.ts`](https://github.com/clawdbot/clawdbot/blob/main/src/cli/program.ts) and the Baileys user agent in [`src/provider-web.ts`](https://github.com/clawdbot/clawdbot/blob/main/src/provider-web.ts).
- [ ] Confirm package metadata (name, description, repository, keywords, license) and `bin` map points to [`dist/entry.js`](https://github.com/clawdbot/clawdbot/blob/main/dist/entry.js) for `clawdbot`. - [ ] Confirm package metadata (name, description, repository, keywords, license) and `bin` map points to [`dist/entry.js`](https://github.com/clawdbot/clawdbot/blob/main/dist/entry.js) for `clawdbot`.

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/bluebubbles", "name": "@moltbot/bluebubbles",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "Clawdbot BlueBubbles channel plugin", "description": "Clawdbot BlueBubbles channel plugin",
"clawdbot": { "clawdbot": {
@@ -25,7 +25,7 @@
"order": 75 "order": 75
}, },
"install": { "install": {
"npmSpec": "@clawdbot/bluebubbles", "npmSpec": "@moltbot/bluebubbles",
"localPath": "extensions/bluebubbles", "localPath": "extensions/bluebubbles",
"defaultChoice": "npm" "defaultChoice": "npm"
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/copilot-proxy", "name": "@moltbot/copilot-proxy",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "Clawdbot Copilot Proxy provider plugin", "description": "Clawdbot Copilot Proxy provider plugin",
"clawdbot": { "clawdbot": {

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/diagnostics-otel", "name": "@moltbot/diagnostics-otel",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "Clawdbot diagnostics OpenTelemetry exporter", "description": "Clawdbot diagnostics OpenTelemetry exporter",
"clawdbot": { "clawdbot": {

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/discord", "name": "@moltbot/discord",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "Clawdbot Discord channel plugin", "description": "Clawdbot Discord channel plugin",
"clawdbot": { "clawdbot": {

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/google-antigravity-auth", "name": "@moltbot/google-antigravity-auth",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "Clawdbot Google Antigravity OAuth provider plugin", "description": "Clawdbot Google Antigravity OAuth provider plugin",
"clawdbot": { "clawdbot": {

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/google-gemini-cli-auth", "name": "@moltbot/google-gemini-cli-auth",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "Clawdbot Gemini CLI OAuth provider plugin", "description": "Clawdbot Gemini CLI OAuth provider plugin",
"clawdbot": { "clawdbot": {

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/googlechat", "name": "@moltbot/googlechat",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "Clawdbot Google Chat channel plugin", "description": "Clawdbot Google Chat channel plugin",
"clawdbot": { "clawdbot": {
@@ -22,7 +22,7 @@
"order": 55 "order": 55
}, },
"install": { "install": {
"npmSpec": "@clawdbot/googlechat", "npmSpec": "@moltbot/googlechat",
"localPath": "extensions/googlechat", "localPath": "extensions/googlechat",
"defaultChoice": "npm" "defaultChoice": "npm"
} }
@@ -34,6 +34,6 @@
"clawdbot": "workspace:*" "clawdbot": "workspace:*"
}, },
"peerDependencies": { "peerDependencies": {
"clawdbot": ">=2026.1.25" "clawdbot": ">=2026.1.26"
} }
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/imessage", "name": "@moltbot/imessage",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "Clawdbot iMessage channel plugin", "description": "Clawdbot iMessage channel plugin",
"clawdbot": { "clawdbot": {

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/line", "name": "@moltbot/line",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "Clawdbot LINE channel plugin", "description": "Clawdbot LINE channel plugin",
"clawdbot": { "clawdbot": {
@@ -18,7 +18,7 @@
"quickstartAllowFrom": true "quickstartAllowFrom": true
}, },
"install": { "install": {
"npmSpec": "@clawdbot/line", "npmSpec": "@moltbot/line",
"localPath": "extensions/line", "localPath": "extensions/line",
"defaultChoice": "npm" "defaultChoice": "npm"
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/llm-task", "name": "@moltbot/llm-task",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "Clawdbot JSON-only LLM task plugin", "description": "Clawdbot JSON-only LLM task plugin",
"clawdbot": { "clawdbot": {

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/lobster", "name": "@moltbot/lobster",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "Lobster workflow tool plugin (typed pipelines + resumable approvals)", "description": "Lobster workflow tool plugin (typed pipelines + resumable approvals)",
"clawdbot": { "clawdbot": {

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/matrix", "name": "@moltbot/matrix",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "Clawdbot Matrix channel plugin", "description": "Clawdbot Matrix channel plugin",
"clawdbot": { "clawdbot": {
@@ -18,7 +18,7 @@
"quickstartAllowFrom": true "quickstartAllowFrom": true
}, },
"install": { "install": {
"npmSpec": "@clawdbot/matrix", "npmSpec": "@moltbot/matrix",
"localPath": "extensions/matrix", "localPath": "extensions/matrix",
"defaultChoice": "npm" "defaultChoice": "npm"
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/mattermost", "name": "@moltbot/mattermost",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "Clawdbot Mattermost channel plugin", "description": "Clawdbot Mattermost channel plugin",
"clawdbot": { "clawdbot": {
@@ -17,7 +17,7 @@
"order": 65 "order": 65
}, },
"install": { "install": {
"npmSpec": "@clawdbot/mattermost", "npmSpec": "@moltbot/mattermost",
"localPath": "extensions/mattermost", "localPath": "extensions/mattermost",
"defaultChoice": "npm" "defaultChoice": "npm"
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/memory-core", "name": "@moltbot/memory-core",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "Clawdbot core memory search plugin", "description": "Clawdbot core memory search plugin",
"clawdbot": { "clawdbot": {
@@ -9,6 +9,6 @@
] ]
}, },
"peerDependencies": { "peerDependencies": {
"clawdbot": ">=2026.1.24-3" "clawdbot": ">=2026.1.26"
} }
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/memory-lancedb", "name": "@moltbot/memory-lancedb",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "Clawdbot LanceDB-backed long-term memory plugin with auto-recall/capture", "description": "Clawdbot LanceDB-backed long-term memory plugin with auto-recall/capture",
"dependencies": { "dependencies": {

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/msteams", "name": "@moltbot/msteams",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "Clawdbot Microsoft Teams channel plugin", "description": "Clawdbot Microsoft Teams channel plugin",
"clawdbot": { "clawdbot": {
@@ -20,7 +20,7 @@
"order": 60 "order": 60
}, },
"install": { "install": {
"npmSpec": "@clawdbot/msteams", "npmSpec": "@moltbot/msteams",
"localPath": "extensions/msteams", "localPath": "extensions/msteams",
"defaultChoice": "npm" "defaultChoice": "npm"
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/nextcloud-talk", "name": "@moltbot/nextcloud-talk",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "Clawdbot Nextcloud Talk channel plugin", "description": "Clawdbot Nextcloud Talk channel plugin",
"clawdbot": { "clawdbot": {
@@ -22,7 +22,7 @@
"quickstartAllowFrom": true "quickstartAllowFrom": true
}, },
"install": { "install": {
"npmSpec": "@clawdbot/nextcloud-talk", "npmSpec": "@moltbot/nextcloud-talk",
"localPath": "extensions/nextcloud-talk", "localPath": "extensions/nextcloud-talk",
"defaultChoice": "npm" "defaultChoice": "npm"
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/nostr", "name": "@moltbot/nostr",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "Clawdbot Nostr channel plugin for NIP-04 encrypted DMs", "description": "Clawdbot Nostr channel plugin for NIP-04 encrypted DMs",
"clawdbot": { "clawdbot": {
@@ -18,7 +18,7 @@
"quickstartAllowFrom": true "quickstartAllowFrom": true
}, },
"install": { "install": {
"npmSpec": "@clawdbot/nostr", "npmSpec": "@moltbot/nostr",
"localPath": "extensions/nostr", "localPath": "extensions/nostr",
"defaultChoice": "npm" "defaultChoice": "npm"
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/open-prose", "name": "@moltbot/open-prose",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "OpenProse VM skill pack plugin (slash command + telemetry).", "description": "OpenProse VM skill pack plugin (slash command + telemetry).",
"clawdbot": { "clawdbot": {

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/signal", "name": "@moltbot/signal",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "Clawdbot Signal channel plugin", "description": "Clawdbot Signal channel plugin",
"clawdbot": { "clawdbot": {

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/slack", "name": "@moltbot/slack",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "Clawdbot Slack channel plugin", "description": "Clawdbot Slack channel plugin",
"clawdbot": { "clawdbot": {

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/telegram", "name": "@moltbot/telegram",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "Clawdbot Telegram channel plugin", "description": "Clawdbot Telegram channel plugin",
"clawdbot": { "clawdbot": {

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/tlon", "name": "@moltbot/tlon",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "Clawdbot Tlon/Urbit channel plugin", "description": "Clawdbot Tlon/Urbit channel plugin",
"clawdbot": { "clawdbot": {
@@ -18,7 +18,7 @@
"quickstartAllowFrom": true "quickstartAllowFrom": true
}, },
"install": { "install": {
"npmSpec": "@clawdbot/tlon", "npmSpec": "@moltbot/tlon",
"localPath": "extensions/tlon", "localPath": "extensions/tlon",
"defaultChoice": "npm" "defaultChoice": "npm"
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/twitch", "name": "@moltbot/twitch",
"version": "2026.1.23", "version": "2026.1.26",
"description": "Clawdbot Twitch channel plugin", "description": "Clawdbot Twitch channel plugin",
"type": "module", "type": "module",
"dependencies": { "dependencies": {

View File

@@ -1,6 +1,6 @@
# Changelog # Changelog
## 2026.1.25 ## 2026.1.26
### Changes ### Changes
- Breaking: voice-call TTS now uses core `messages.tts` (plugin TTS config deepmerges with core). - Breaking: voice-call TTS now uses core `messages.tts` (plugin TTS config deepmerges with core).

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/voice-call", "name": "@moltbot/voice-call",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "Clawdbot voice-call plugin", "description": "Clawdbot voice-call plugin",
"dependencies": { "dependencies": {

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/whatsapp", "name": "@moltbot/whatsapp",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "Clawdbot WhatsApp channel plugin", "description": "Clawdbot WhatsApp channel plugin",
"clawdbot": { "clawdbot": {

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/zalo", "name": "@moltbot/zalo",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "Clawdbot Zalo channel plugin", "description": "Clawdbot Zalo channel plugin",
"clawdbot": { "clawdbot": {
@@ -21,7 +21,7 @@
"quickstartAllowFrom": true "quickstartAllowFrom": true
}, },
"install": { "install": {
"npmSpec": "@clawdbot/zalo", "npmSpec": "@moltbot/zalo",
"localPath": "extensions/zalo", "localPath": "extensions/zalo",
"defaultChoice": "npm" "defaultChoice": "npm"
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "@clawdbot/zalouser", "name": "@moltbot/zalouser",
"version": "2026.1.25", "version": "2026.1.26",
"type": "module", "type": "module",
"description": "Clawdbot Zalo Personal Account plugin via zca-cli", "description": "Clawdbot Zalo Personal Account plugin via zca-cli",
"dependencies": { "dependencies": {
@@ -25,7 +25,7 @@
"quickstartAllowFrom": true "quickstartAllowFrom": true
}, },
"install": { "install": {
"npmSpec": "@clawdbot/zalouser", "npmSpec": "@moltbot/zalouser",
"localPath": "extensions/zalouser", "localPath": "extensions/zalouser",
"defaultChoice": "npm" "defaultChoice": "npm"
} }

View File

@@ -1,15 +1,17 @@
{ {
"name": "clawdbot", "name": "moltbot",
"version": "2026.1.25", "version": "2026.1.26",
"description": "WhatsApp gateway CLI (Baileys web) with Pi RPC agent", "description": "WhatsApp gateway CLI (Baileys web) with Pi RPC agent",
"type": "module", "type": "module",
"main": "dist/index.js", "main": "dist/index.js",
"exports": { "exports": {
".": "./dist/index.js", ".": "./dist/index.js",
"./plugin-sdk": "./dist/plugin-sdk/index.js", "./plugin-sdk": "./dist/plugin-sdk/index.js",
"./plugin-sdk/*": "./dist/plugin-sdk/*" "./plugin-sdk/*": "./dist/plugin-sdk/*",
"./cli-entry": "./dist/entry.js"
}, },
"bin": { "bin": {
"moltbot": "dist/entry.js",
"clawdbot": "dist/entry.js" "clawdbot": "dist/entry.js"
}, },
"files": [ "files": [
@@ -90,6 +92,7 @@
"ui:build": "node scripts/ui.js build", "ui:build": "node scripts/ui.js build",
"start": "node scripts/run-node.mjs", "start": "node scripts/run-node.mjs",
"clawdbot": "node scripts/run-node.mjs", "clawdbot": "node scripts/run-node.mjs",
"moltbot": "node scripts/run-node.mjs",
"gateway:watch": "node scripts/watch-node.mjs gateway --force", "gateway:watch": "node scripts/watch-node.mjs gateway --force",
"gateway:dev": "CLAWDBOT_SKIP_CHANNELS=1 node scripts/run-node.mjs --dev gateway", "gateway:dev": "CLAWDBOT_SKIP_CHANNELS=1 node scripts/run-node.mjs --dev gateway",
"gateway:dev:reset": "CLAWDBOT_SKIP_CHANNELS=1 node scripts/run-node.mjs --dev gateway --reset", "gateway:dev:reset": "CLAWDBOT_SKIP_CHANNELS=1 node scripts/run-node.mjs --dev gateway --reset",

View File

@@ -0,0 +1,16 @@
{
"name": "clawdbot",
"version": "2026.1.26",
"type": "module",
"description": "Compatibility shim that forwards to moltbot",
"exports": {
".": "./index.js",
"./plugin-sdk": "./plugin-sdk/index.js"
},
"bin": {
"clawdbot": "./bin/clawdbot.js"
},
"dependencies": {
"moltbot": "workspace:*"
}
}