@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.
|
|
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.
|
|
31
|
+
"version": "0.1.25"
|
|
32
32
|
}
|
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
|
|
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
|
|
670
|
-
// If the worktree transcript
|
|
671
|
-
//
|
|
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
|
|