claude-notification-plugin 1.1.26 → 1.1.29
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/.claude-plugin/plugin.json +1 -1
- package/bin/install.js +7 -0
- package/claude_img/claude.png +0 -0
- package/commit-sha +1 -1
- package/package.json +2 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-notification-plugin",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.29",
|
|
4
4
|
"description": "Claude Code task-completion notifications: Telegram, desktop notifications (Windows/macOS/Linux), sound, and voice",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Viacheslav Makarov",
|
package/bin/install.js
CHANGED
|
@@ -641,6 +641,13 @@ Send any message to your bot in Telegram, then press Enter.\x1b[0m`);
|
|
|
641
641
|
}
|
|
642
642
|
}
|
|
643
643
|
|
|
644
|
+
// Ensure listener.claudeArgs has --model (default: opus)
|
|
645
|
+
const ca = config.listener.claudeArgs || [];
|
|
646
|
+
if (!ca.includes('--model')) {
|
|
647
|
+
ca.push('--model', 'opus');
|
|
648
|
+
config.listener.claudeArgs = ca;
|
|
649
|
+
}
|
|
650
|
+
|
|
644
651
|
if (token) {
|
|
645
652
|
config.telegram.token = token;
|
|
646
653
|
}
|
|
Binary file
|
package/commit-sha
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
f96269c4c26426738161143aed8e1efbf7c86bac
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-notification-plugin",
|
|
3
3
|
"productName": "claude-notification-plugin",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.29",
|
|
5
5
|
"description": "Claude Code task-completion notifications: Telegram, desktop notifications (Windows/macOS/Linux), sound, and voice",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"engines": {
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"files": [
|
|
11
11
|
".claude-plugin/",
|
|
12
12
|
"bin/",
|
|
13
|
+
"claude_img/claude.png",
|
|
13
14
|
"hooks/",
|
|
14
15
|
"listener/",
|
|
15
16
|
"notifier/",
|