@dmsdc-ai/aigentry-telepty 0.0.15 → 0.0.17
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/cli.js +4 -0
- package/package.json +2 -2
package/cli.js
CHANGED
|
@@ -178,6 +178,8 @@ async function manageInteractive() {
|
|
|
178
178
|
]);
|
|
179
179
|
if (!id || !command) continue;
|
|
180
180
|
|
|
181
|
+
await ensureDaemonRunning();
|
|
182
|
+
|
|
181
183
|
const cols = process.stdout.columns || 80;
|
|
182
184
|
const rows = process.stdout.rows || 30;
|
|
183
185
|
try {
|
|
@@ -287,6 +289,8 @@ async function main() {
|
|
|
287
289
|
}
|
|
288
290
|
return;
|
|
289
291
|
}
|
|
292
|
+
|
|
293
|
+
if (cmd === 'mcp') {
|
|
290
294
|
require('./mcp.js');
|
|
291
295
|
return;
|
|
292
296
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dmsdc-ai/aigentry-telepty",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.17",
|
|
4
4
|
"main": "daemon.js",
|
|
5
5
|
"bin": {
|
|
6
6
|
"telepty": "cli.js",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"express": "^5.2.1",
|
|
20
20
|
"node-pty": "^1.2.0-beta.11",
|
|
21
21
|
"prompts": "^2.4.2",
|
|
22
|
-
"update-notifier": "^
|
|
22
|
+
"update-notifier": "^5.1.0",
|
|
23
23
|
"uuid": "^13.0.0",
|
|
24
24
|
"ws": "^8.19.0",
|
|
25
25
|
"zod": "^4.3.6"
|