@jjlabsio/claude-crew 0.1.24 → 0.1.25

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.
@@ -11,7 +11,7 @@
11
11
  "name": "claude-crew",
12
12
  "source": "./",
13
13
  "description": "오케스트레이터 + PM, 플래너, 개발, QA, 마케팅 에이전트 팀으로 단일 제품의 개발과 마케팅을 통합 관리",
14
- "version": "0.1.24",
14
+ "version": "0.1.25",
15
15
  "author": {
16
16
  "name": "Jaejin Song",
17
17
  "email": "wowlxx28@gmail.com"
@@ -28,5 +28,5 @@
28
28
  "category": "workflow"
29
29
  }
30
30
  ],
31
- "version": "0.1.24"
31
+ "version": "0.1.25"
32
32
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-crew",
3
- "version": "0.1.24",
3
+ "version": "0.1.25",
4
4
  "description": "1인 SaaS 개발자를 위한 멀티 에이전트 오케스트레이션 — 개발, 마케팅, 일정을 한 대화에서 통합 관리",
5
5
  "author": {
6
6
  "name": "Jaejin Song",
package/hud/index.mjs CHANGED
@@ -664,18 +664,21 @@ async function main() {
664
664
 
665
665
  const transcript = parseTranscript(stdin.transcript_path);
666
666
 
667
- // In worktrees, merge todos from the original project transcript.
667
+ // In worktrees, merge data from the original project transcript.
668
668
  // The worktree transcript only has events after EnterWorktree, so todos
669
- // created before are missing. The original transcript has the full history.
670
- // If the worktree transcript also has todos (created after worktree entry),
671
- // use the worktree's todos since they are more up-to-date for that session.
672
- if (transcript.todos.length === 0) {
669
+ // and agents created before are missing. The original transcript has the
670
+ // full history. If the worktree transcript already has its own data
671
+ // (created after worktree entry), prefer the worktree's version.
672
+ if (transcript.todos.length === 0 || transcript.agents.length === 0) {
673
673
  const originalPath = resolveOriginalTranscriptPath(stdin.transcript_path, cwd);
674
674
  if (originalPath) {
675
675
  const originalTranscript = parseTranscript(originalPath);
676
- if (originalTranscript.todos.length > 0) {
676
+ if (transcript.todos.length === 0 && originalTranscript.todos.length > 0) {
677
677
  transcript.todos = originalTranscript.todos;
678
678
  }
679
+ if (transcript.agents.length === 0 && originalTranscript.agents.length > 0) {
680
+ transcript.agents = originalTranscript.agents;
681
+ }
679
682
  }
680
683
  }
681
684
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jjlabsio/claude-crew",
3
- "version": "0.1.24",
3
+ "version": "0.1.25",
4
4
  "description": "1인 SaaS 개발자를 위한 멀티 에이전트 오케스트레이션 — 개발, 마케팅, 일정을 한 대화에서 통합 관리",
5
5
  "author": "Jaejin Song <wowlxx28@gmail.com>",
6
6
  "license": "MIT",