@jjlabsio/claude-crew 0.1.17 → 0.1.19

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.17",
14
+ "version": "0.1.19",
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.17"
31
+ "version": "0.1.19"
32
32
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-crew",
3
- "version": "0.1.17",
3
+ "version": "0.1.19",
4
4
  "description": "1인 SaaS 개발자를 위한 멀티 에이전트 오케스트레이션 — 개발, 마케팅, 일정을 한 대화에서 통합 관리",
5
5
  "author": {
6
6
  "name": "Jaejin Song",
package/hud/index.mjs CHANGED
@@ -583,7 +583,13 @@ async function main() {
583
583
  const cwd = stdin.cwd || process.cwd();
584
584
 
585
585
  // Find git project root for reliable matching against installed_plugins.json
586
- const projectRoot = gitExec('git rev-parse --show-toplevel', cwd) || cwd;
586
+ // In worktrees, --show-toplevel returns the worktree path, not the main repo.
587
+ // Use --git-common-dir to resolve back to the main repo path.
588
+ const topLevel = gitExec('git rev-parse --show-toplevel', cwd) || cwd;
589
+ const commonDir = gitExec('git rev-parse --git-common-dir', cwd);
590
+ const projectRoot = (commonDir && commonDir !== '.git' && !commonDir.startsWith('.'))
591
+ ? dirname(commonDir) // worktree: commonDir is /path/to/main-repo/.git
592
+ : topLevel;
587
593
 
588
594
  // Only show HUD if claude-crew is installed in this project
589
595
  const installInfo = getProjectInstallInfo(projectRoot);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jjlabsio/claude-crew",
3
- "version": "0.1.17",
3
+ "version": "0.1.19",
4
4
  "description": "1인 SaaS 개발자를 위한 멀티 에이전트 오케스트레이션 — 개발, 마케팅, 일정을 한 대화에서 통합 관리",
5
5
  "author": "Jaejin Song <wowlxx28@gmail.com>",
6
6
  "license": "MIT",
@@ -9,7 +9,7 @@
9
9
 
10
10
  import { execSync } from 'node:child_process';
11
11
  import { existsSync, readFileSync, writeFileSync, mkdirSync } from 'node:fs';
12
- import { join } from 'node:path';
12
+ import { join, dirname } from 'node:path';
13
13
  import { homedir } from 'node:os';
14
14
 
15
15
  // ---------------------------------------------------------------------------
@@ -50,8 +50,13 @@ async function main() {
50
50
  try { cwd = JSON.parse(raw).cwd || cwd; } catch { /* ignore */ }
51
51
  }
52
52
 
53
- // Use git toplevel as the reliable project root
54
- const projectRoot = gitExec('git rev-parse --show-toplevel', cwd) || cwd;
53
+ // In worktrees, --show-toplevel returns the worktree path, not the main repo.
54
+ // Use --git-common-dir to resolve back to the main repo path.
55
+ const topLevel = gitExec('git rev-parse --show-toplevel', cwd) || cwd;
56
+ const commonDir = gitExec('git rev-parse --git-common-dir', cwd);
57
+ const projectRoot = (commonDir && commonDir !== '.git' && !commonDir.startsWith('.'))
58
+ ? dirname(commonDir) // worktree: commonDir is /path/to/main-repo/.git
59
+ : topLevel;
55
60
 
56
61
  const hudCommand = `node "${pluginRoot}/hud/index.mjs"`;
57
62
  const localSettingsPath = join(projectRoot, '.claude', 'settings.local.json');
@@ -325,6 +325,8 @@ PR을 생성한다 (머지하지 않는다).
325
325
 
326
326
  **5b. 상태 갱신**
327
327
 
328
+ contract.md의 `## 수용 기준` 섹션에서 모든 `- [ ]`를 `- [x]`로 변경한다.
329
+
328
330
  contract.md의 `## 상태` 섹션을 갱신한다:
329
331
 
330
332
  ```markdown