moltbot-termux 2026.1.27-1 → 2026.1.27-2-pre
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist/agents/channel-tools.js +31 -2
- package/dist/agents/models-config.providers.js +4 -4
- package/dist/agents/transcript-policy.js +2 -1
- package/dist/build-info.json +3 -3
- package/dist/canvas-host/a2ui/.bundle.hash +1 -1
- package/dist/cli/banner.js +6 -6
- package/dist/commands/onboard-helpers.js +6 -6
- package/dist/config/paths.js +3 -0
- package/dist/discord/send.outbound.js +4 -4
- package/dist/discord/send.shared.js +30 -1
- package/dist/discord/targets.js +66 -0
- package/dist/telegram/bot/helpers.js +13 -2
- package/dist/telegram/bot-message-context.js +4 -2
- package/dist/telegram/bot-native-commands.js +13 -8
- package/dist/telegram/bot.js +7 -5
- package/dist/telegram/monitor.js +19 -1
- package/dist/telegram/network-errors.js +4 -0
- package/docs/concepts/model-providers.md +4 -3
- package/docs/gateway/configuration.md +5 -5
- package/docs/providers/moonshot.md +13 -2
- package/package.json +3 -3
- package/skills/bitwarden/SKILL.md +101 -0
- package/skills/bitwarden/references/templates.md +116 -0
- package/skills/bitwarden/scripts/bw-session.sh +33 -0
- package/extensions/googlechat/node_modules/.bin/clawdbot +0 -21
- package/extensions/googlechat/node_modules/.bin/moltbot +0 -21
- package/extensions/line/node_modules/.bin/clawdbot +0 -21
- package/extensions/line/node_modules/.bin/moltbot +0 -21
- package/extensions/memory-core/node_modules/.bin/clawdbot +0 -21
- package/extensions/memory-core/node_modules/.bin/moltbot +0 -21
- package/extensions/msteams/node_modules/.bin/clawdbot +0 -21
- package/extensions/msteams/node_modules/.bin/moltbot +0 -21
- package/extensions/nostr/node_modules/.bin/clawdbot +0 -21
- package/extensions/nostr/node_modules/.bin/moltbot +0 -21
- package/extensions/twitch/node_modules/.bin/clawdbot +0 -21
- package/extensions/twitch/node_modules/.bin/moltbot +0 -21
- package/extensions/zalo/node_modules/.bin/clawdbot +0 -21
- package/extensions/zalo/node_modules/.bin/moltbot +0 -21
- package/extensions/zalouser/node_modules/.bin/clawdbot +0 -21
- package/extensions/zalouser/node_modules/.bin/moltbot +0 -21
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
-
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
-
basedir=`cygpath -w "$basedir"`
|
|
8
|
-
fi
|
|
9
|
-
;;
|
|
10
|
-
esac
|
|
11
|
-
|
|
12
|
-
if [ -z "$NODE_PATH" ]; then
|
|
13
|
-
export NODE_PATH="/data/data/com.termux/files/home/c/moltbot/node_modules:/data/data/com.termux/files/home/c/node_modules:/data/data/com.termux/files/home/node_modules:/data/data/com.termux/files/node_modules:/data/data/com.termux/node_modules:/data/data/node_modules:/data/node_modules:/node_modules:/data/data/com.termux/files/home/c/moltbot/node_modules/.pnpm/node_modules"
|
|
14
|
-
else
|
|
15
|
-
export NODE_PATH="/data/data/com.termux/files/home/c/moltbot/node_modules:/data/data/com.termux/files/home/c/node_modules:/data/data/com.termux/files/home/node_modules:/data/data/com.termux/files/node_modules:/data/data/com.termux/node_modules:/data/data/node_modules:/data/node_modules:/node_modules:/data/data/com.termux/files/home/c/moltbot/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
16
|
-
fi
|
|
17
|
-
if [ -x "$basedir/node" ]; then
|
|
18
|
-
exec "$basedir/node" "$basedir/../moltbot/moltbot.mjs" "$@"
|
|
19
|
-
else
|
|
20
|
-
exec node "$basedir/../moltbot/moltbot.mjs" "$@"
|
|
21
|
-
fi
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
-
|
|
4
|
-
case `uname` in
|
|
5
|
-
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
-
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
-
basedir=`cygpath -w "$basedir"`
|
|
8
|
-
fi
|
|
9
|
-
;;
|
|
10
|
-
esac
|
|
11
|
-
|
|
12
|
-
if [ -z "$NODE_PATH" ]; then
|
|
13
|
-
export NODE_PATH="/data/data/com.termux/files/home/c/moltbot/node_modules:/data/data/com.termux/files/home/c/node_modules:/data/data/com.termux/files/home/node_modules:/data/data/com.termux/files/node_modules:/data/data/com.termux/node_modules:/data/data/node_modules:/data/node_modules:/node_modules:/data/data/com.termux/files/home/c/moltbot/node_modules/.pnpm/node_modules"
|
|
14
|
-
else
|
|
15
|
-
export NODE_PATH="/data/data/com.termux/files/home/c/moltbot/node_modules:/data/data/com.termux/files/home/c/node_modules:/data/data/com.termux/files/home/node_modules:/data/data/com.termux/files/node_modules:/data/data/com.termux/node_modules:/data/data/node_modules:/data/node_modules:/node_modules:/data/data/com.termux/files/home/c/moltbot/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
16
|
-
fi
|
|
17
|
-
if [ -x "$basedir/node" ]; then
|
|
18
|
-
exec "$basedir/node" "$basedir/../moltbot/moltbot.mjs" "$@"
|
|
19
|
-
else
|
|
20
|
-
exec node "$basedir/../moltbot/moltbot.mjs" "$@"
|
|
21
|
-
fi
|