dsh-telegram-multiagent 1.0.0 → 1.0.1
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/package.json +3 -3
- package/src/index.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-telegram-multiagent",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Telegram channel for DeepSeek Harness — one shared module serving several agents on a machine, each with its own bot, token file and allow-list.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"repository": {
|
|
22
22
|
"type": "git",
|
|
23
23
|
"url": "git+https://github.com/iia-arg/dsh-plugins.git",
|
|
24
|
-
"directory": "packages/telegram-
|
|
24
|
+
"directory": "packages/telegram-multiagent"
|
|
25
25
|
},
|
|
26
26
|
"engines": {
|
|
27
27
|
"node": ">=20"
|
|
@@ -31,4 +31,4 @@
|
|
|
31
31
|
"patch": "./cordis.patch.yml"
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
|
-
}
|
|
34
|
+
}
|
package/src/index.js
CHANGED
|
@@ -68,7 +68,7 @@ function platformOf(config, log) {
|
|
|
68
68
|
*/
|
|
69
69
|
const ACTIVE_POLLERS = new Map();
|
|
70
70
|
|
|
71
|
-
export const name = 'dsh-telegram-
|
|
71
|
+
export const name = 'dsh-telegram-multiagent';
|
|
72
72
|
export const inject = ['agents'];
|
|
73
73
|
|
|
74
74
|
/**
|
|
@@ -564,5 +564,5 @@ export function apply(ctx, config = {}) {
|
|
|
564
564
|
}
|
|
565
565
|
log('снят последний монтаж — опрос остановлен');
|
|
566
566
|
};
|
|
567
|
-
}, 'dsh-telegram-
|
|
567
|
+
}, 'dsh-telegram-multiagent.poll');
|
|
568
568
|
}
|