@jjlabsio/claude-crew 0.1.30 → 0.1.31

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.30",
14
+ "version": "0.1.31",
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.30"
31
+ "version": "0.1.31"
32
32
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-crew",
3
- "version": "0.1.30",
3
+ "version": "0.1.31",
4
4
  "description": "1인 SaaS 개발자를 위한 멀티 에이전트 오케스트레이션 — 개발, 마케팅, 일정을 한 대화에서 통합 관리",
5
5
  "author": {
6
6
  "name": "Jaejin Song",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jjlabsio/claude-crew",
3
- "version": "0.1.30",
3
+ "version": "0.1.31",
4
4
  "description": "1인 SaaS 개발자를 위한 멀티 에이전트 오케스트레이션 — 개발, 마케팅, 일정을 한 대화에서 통합 관리",
5
5
  "author": "Jaejin Song <wowlxx28@gmail.com>",
6
6
  "license": "MIT",
@@ -99,7 +99,7 @@ Bash("codex exec --model {model} -c model_reasoning_effort=\"{reasoning}\" --dan
99
99
  | 에이전트 | subagent_type | 볼 수 있는 것 | 차단 | 차단 근거 |
100
100
  |----------|--------------|-------------|------|----------|
101
101
  | **Dev** | dev | plan.md, contract.md | brief.md, spec.md, analysis.md | 의도 추측 방지, plan+contract에 필요 정보 포함 |
102
- | **CodeReviewer** | code-reviewer | git diff(직접 실행), 가드레일(인라인) | contract.md, plan.md, brief.md, spec.md, dev-log.md | 수용 기준 체리피킹 방지 (.crew/는 .gitignore 대상이므로 diff 노출되지 않음) |
102
+ | **CodeReviewer** | code-reviewer | git diff(직접 실행, `':!.crew/'` exclude), 가드레일(인라인) | contract.md, plan.md, brief.md, spec.md, dev-log.md | 수용 기준 체리피킹 방지 (.crew/는 git diff 호출 시 pathspec `':!.crew/'`로 명시적 exclude하여 메타 파일 노출 방지) |
103
103
  | **QA** | qa | plan.md | contract.md, brief.md, spec.md | 검증 편향 방지 |
104
104
 
105
105
  **중요**: 모든 에이전트 호출 시 반드시 `subagent_type` 파라미터를 지정해야 한다. `subagent_type`이 없으면 PreToolUse hook이 호출을 차단한다. `model` 파라미터는 생략 가능 — hook이 에이전트 정의에서 자동 주입한다.
@@ -415,7 +415,7 @@ CodeReviewer와 QA를 **동시에** 호출한다. US-k의 변경분만 검증한
415
415
  당신은 CodeReviewer 에이전트다. 코드 변경 사항의 품질을 판단한다.
416
416
 
417
417
  ## 입력
418
- `git diff HEAD`를 직접 실행하여 마지막 커밋 이후 변경 사항을 확인하라.
418
+ `git diff HEAD -- ':!.crew/'`를 직접 실행하여 마지막 커밋 이후의 **코드 산출물 변경 사항만** 확인하라. (`.crew/` 디렉토리는 crew-dev 파이프라인의 메타 파일로, 본 리뷰 범위가 아니다.)
419
419
  contract.md, plan.md, brief.md, spec.md, dev-log.md는 읽지 않는다.
420
420
  코드만 보고 판단한다.
421
421
 
@@ -591,7 +591,7 @@ CodeReviewer와 QA를 **동시에** 호출한다.
591
591
  당신은 CodeReviewer 에이전트다. 전체 코드 변경 사항의 품질을 판단한다.
592
592
 
593
593
  ## 입력
594
- `git diff main...HEAD`를 직접 실행하여 전체 변경 사항을 확인하라.
594
+ `git diff main...HEAD -- ':!.crew/'`를 직접 실행하여 전체 **코드 산출물 변경 사항만** 확인하라. (`.crew/` 디렉토리는 crew-dev 파이프라인의 메타 파일로, 본 리뷰 범위가 아니다.)
595
595
  contract.md, plan.md, brief.md, spec.md, dev-log.md는 읽지 않는다.
596
596
  코드만 보고 판단한다.
597
597