wtt-connect 0.2.4 → 0.2.5
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
CHANGED
package/src/runner.js
CHANGED
|
@@ -284,7 +284,7 @@ export class Runner {
|
|
|
284
284
|
statusText: 'OpenDesign 正在生成可视化 artifact',
|
|
285
285
|
statusKind: 'opendesign',
|
|
286
286
|
adapter: adapter.name,
|
|
287
|
-
ttlMs:
|
|
287
|
+
ttlMs: 90000,
|
|
288
288
|
});
|
|
289
289
|
const outputDir = await prepareOpenDesignDir(this.config, topicId);
|
|
290
290
|
const skills = chooseOpenDesignSkills(message, reply);
|
|
@@ -310,7 +310,7 @@ export class Runner {
|
|
|
310
310
|
statusText: 'OpenDesign 正在重写低质量 artifact',
|
|
311
311
|
statusKind: 'opendesign_repair',
|
|
312
312
|
adapter: adapter.name,
|
|
313
|
-
ttlMs:
|
|
313
|
+
ttlMs: 120000,
|
|
314
314
|
});
|
|
315
315
|
await adapter.run(buildOpenDesignRepairPrompt({ outputDir, issues: quality.issues, locale }), {
|
|
316
316
|
sessionKey: `wtt:opendesign:${topicId}`,
|
|
@@ -357,7 +357,7 @@ export class Runner {
|
|
|
357
357
|
statusText: activityText,
|
|
358
358
|
statusKind: normalized?.kind || 'running',
|
|
359
359
|
adapter: adapterName,
|
|
360
|
-
ttlMs:
|
|
360
|
+
ttlMs: 60000,
|
|
361
361
|
});
|
|
362
362
|
}
|
|
363
363
|
if (!this.config.publishProgress) return;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
[Unit]
|
|
2
|
-
Description=WTT Connect Claude Code Agent
|
|
3
|
-
After=network-online.target
|
|
4
|
-
Wants=network-online.target
|
|
5
|
-
|
|
6
|
-
[Service]
|
|
7
|
-
Type=simple
|
|
8
|
-
WorkingDirectory=/mnt/wd10t/saiph/wtt/wtt/tools/wtt-connect
|
|
9
|
-
ExecStart=/usr/bin/node --experimental-websocket /mnt/wd10t/saiph/wtt/wtt/tools/wtt-connect/bin/wtt-connect.js start --env-file /mnt/wd10t/saiph/wtt/wtt/tools/wtt-connect/.env.claude
|
|
10
|
-
Restart=always
|
|
11
|
-
RestartSec=5
|
|
12
|
-
|
|
13
|
-
[Install]
|
|
14
|
-
WantedBy=default.target
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
[Unit]
|
|
2
|
-
Description=WTT Connect Codex Agent
|
|
3
|
-
After=network-online.target
|
|
4
|
-
Wants=network-online.target
|
|
5
|
-
|
|
6
|
-
[Service]
|
|
7
|
-
Type=simple
|
|
8
|
-
WorkingDirectory=/mnt/wd10t/saiph/wtt/wtt/tools/wtt-connect
|
|
9
|
-
ExecStart=/usr/bin/node --experimental-websocket /mnt/wd10t/saiph/wtt/wtt/tools/wtt-connect/bin/wtt-connect.js start --env-file /mnt/wd10t/saiph/wtt/wtt/tools/wtt-connect/.env
|
|
10
|
-
Restart=always
|
|
11
|
-
RestartSec=5
|
|
12
|
-
|
|
13
|
-
[Install]
|
|
14
|
-
WantedBy=default.target
|