claude-notification-plugin 1.1.29 → 1.1.30
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/commit-sha +1 -1
- package/listener/task-runner.js +4 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-notification-plugin",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.30",
|
|
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/commit-sha
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
55f1d5cd247416e7ce91685af8964496d97e655b
|
package/listener/task-runner.js
CHANGED
|
@@ -59,7 +59,6 @@ export class TaskRunner extends EventEmitter {
|
|
|
59
59
|
throw new Error(`Already running a task in ${workDir}`);
|
|
60
60
|
}
|
|
61
61
|
|
|
62
|
-
this.logger.info(`Running task "${task.text}" in ${workDir}${continueSession ? ' (continue session)' : ' (new session)'}`);
|
|
63
62
|
if (this.taskLogger) {
|
|
64
63
|
this.taskLogger.logQuestion(task.project || 'unknown', task.branch || 'main', workDir, task.text);
|
|
65
64
|
}
|
|
@@ -68,6 +67,10 @@ export class TaskRunner extends EventEmitter {
|
|
|
68
67
|
if (continueSession) {
|
|
69
68
|
args.push('--continue');
|
|
70
69
|
}
|
|
70
|
+
|
|
71
|
+
const cmdLine = ['claude', ...args].map(a => (/\s/.test(a) ? `"${a}"` : a)).join(' ');
|
|
72
|
+
this.logger.info(`cwd: ${workDir}\n cmd: ${cmdLine}`);
|
|
73
|
+
|
|
71
74
|
const child = spawn('claude', args, {
|
|
72
75
|
cwd: workDir,
|
|
73
76
|
stdio: ['ignore', 'pipe', 'pipe'],
|
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.30",
|
|
5
5
|
"description": "Claude Code task-completion notifications: Telegram, desktop notifications (Windows/macOS/Linux), sound, and voice",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"engines": {
|