clawt 2.3.4 → 2.3.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": "clawt",
3
- "version": "2.3.4",
3
+ "version": "2.3.5",
4
4
  "description": "本地并行执行多个Claude Code Agent任务,融合 Git Worktree 与 Claude Code CLI 的命令行工具",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -3,7 +3,7 @@ import type { ChildProcess } from 'node:child_process';
3
3
  import { logger } from '../logger/index.js';
4
4
  import { ClawtError } from '../errors/index.js';
5
5
  import { MESSAGES } from '../constants/index.js';
6
- import type { RunOptions, ClaudeCodeResult, TaskResult, TaskSummary } from '../types/index.js';
6
+ import type { RunOptions, ClaudeCodeResult, TaskResult, TaskSummary, WorktreeInfo } from '../types/index.js';
7
7
  import {
8
8
  validateMainWorktree,
9
9
  validateClaudeCodeInstalled,
@@ -21,7 +21,6 @@ import {
21
21
  confirmAction,
22
22
  launchInteractiveClaude,
23
23
  } from '../utils/index.js';
24
- import type { WorktreeInfo } from '../types/index.js';
25
24
 
26
25
  /**
27
26
  * 注册 run 命令:批量创建 worktree 并执行 Claude Code 任务