clawt 3.9.5 → 3.9.6

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/dist/index.js CHANGED
@@ -804,7 +804,7 @@ var GIT_INDEX_LOCK_RETRY = {
804
804
  /** 重试次数(用户反馈"重试一下就可以了",单次重试足够) */
805
805
  MAX_RETRIES: 1,
806
806
  /** 重试延迟毫秒数(让锁文件有时间被释放) */
807
- DELAY_MS: 150
807
+ DELAY_MS: 1e3
808
808
  };
809
809
 
810
810
  // src/constants/logger.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawt",
3
- "version": "3.9.5",
3
+ "version": "3.9.6",
4
4
  "description": "本地并行执行多个Claude Code Agent任务,融合 Git Worktree 与 Claude Code CLI 的命令行工具",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -12,5 +12,5 @@ export const GIT_INDEX_LOCK_RETRY = {
12
12
  /** 重试次数(用户反馈"重试一下就可以了",单次重试足够) */
13
13
  MAX_RETRIES: 1,
14
14
  /** 重试延迟毫秒数(让锁文件有时间被释放) */
15
- DELAY_MS: 150,
15
+ DELAY_MS: 1000,
16
16
  } as const;