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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wtt-connect",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "private": false,
5
5
  "description": "WTT-native connector daemon for Codex, Claude Code, Cursor, Gemini, ACP, and other coding agent surfaces.",
6
6
  "type": "module",
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: 30000,
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: 45000,
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: 30000,
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