@jjlabsio/claude-crew 0.1.42 → 0.1.43
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/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/README.ko.md +173 -0
- package/README.md +95 -79
- package/data/provider-catalog.json +4 -4
- package/package.json +1 -1
|
@@ -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.43",
|
|
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.43"
|
|
32
32
|
}
|
package/README.ko.md
ADDED
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
# Claude Crew
|
|
2
|
+
|
|
3
|
+
1인 SaaS 개발자를 위한 Claude Code 멀티 에이전트 오케스트레이션 플러그인.
|
|
4
|
+
|
|
5
|
+
[English](README.md)
|
|
6
|
+
|
|
7
|
+
## 파이프라인
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
crew-interview → crew-plan → crew-dev
|
|
11
|
+
WHAT HOW DO
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
| 단계 | 역할 | 산출물 |
|
|
15
|
+
|------|------|--------|
|
|
16
|
+
| **crew-interview** | 무엇을 만드는가 — 요구사항 인터뷰, 제품 설계 | spec.md |
|
|
17
|
+
| **crew-plan** | 어떻게 만드는가 — 기술 분석, 태스크 분해 | contract.md |
|
|
18
|
+
| **crew-dev** | 만든다 — 구현, 코드 리뷰, QA | 동작하는 코드 + PR |
|
|
19
|
+
|
|
20
|
+
## 설치
|
|
21
|
+
|
|
22
|
+
Claude Code에서:
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
/plugin marketplace add jjlabsio/claude-crew
|
|
26
|
+
/plugin install claude-crew
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
또는 로컬에서 직접:
|
|
30
|
+
|
|
31
|
+
```
|
|
32
|
+
/plugin install /path/to/claude-crew
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## 초기 설정
|
|
36
|
+
|
|
37
|
+
설치 후 반드시 한 번 실행:
|
|
38
|
+
|
|
39
|
+
```
|
|
40
|
+
/crew-setup
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
- `.gitignore` / `.gitattributes` 마이그레이션 (`.crew/` git tracked 전환)
|
|
44
|
+
- HUD statusline 설치
|
|
45
|
+
- 에이전트별 provider/model 설정
|
|
46
|
+
|
|
47
|
+
## 사용
|
|
48
|
+
|
|
49
|
+
### 개발 파이프라인
|
|
50
|
+
|
|
51
|
+
```
|
|
52
|
+
/crew
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
오케스트레이터가 시작되고 현황을 브리핑합니다.
|
|
56
|
+
|
|
57
|
+
### 간단 작업 즉시 위임
|
|
58
|
+
|
|
59
|
+
```
|
|
60
|
+
/crew-do "로그인 에러 메시지 정리"
|
|
61
|
+
/crew-do # active task가 있으면 해당 task를 실행
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
`/crew-do`는 기존 Dev 에이전트를 `direct` 모드로 호출해 작은 수정, 버그픽스, 테스트 실패 수정처럼 범위가 명확한 작업을 바로 위임합니다. Dev 기본 provider가 Codex이면 실제 코드 탐색, 수정, 검증은 Codex runtime에서 수행되고 Claude는 결과 요약과 후속 조율만 담당합니다.
|
|
65
|
+
|
|
66
|
+
`/task`는 계속 기억/queue 관리 전용입니다. 저장된 태스크를 실행하려면 `/task work {id}`로 active 상태로 만든 뒤 `/crew-do`를 실행합니다.
|
|
67
|
+
|
|
68
|
+
### 태스크 관리
|
|
69
|
+
|
|
70
|
+
```
|
|
71
|
+
/task add "설명" # 태스크 추가 (대화 컨텍스트 자동 캡처)
|
|
72
|
+
/task add "설명" --next # 긴급 — queue 맨 위 삽입
|
|
73
|
+
/task work 3 # 태스크 #3 작업 시작 (관련 파일 Read + 브리핑)
|
|
74
|
+
/task start # queue 최상단 태스크 작업 시작
|
|
75
|
+
/task done # active 태스크 완료 처리
|
|
76
|
+
/task bump 4 # 우선순위 한 칸 올리기
|
|
77
|
+
/task top 7 # queue 맨 위로 이동
|
|
78
|
+
/task note 3 "메모" # 태스크에 메모 추가
|
|
79
|
+
/task drop 3 # 태스크 삭제
|
|
80
|
+
|
|
81
|
+
/tasks # 프로젝트 태스크 보드
|
|
82
|
+
/tasks stale # 30일+ 방치 태스크 리뷰
|
|
83
|
+
/tasks clean # 완료 후 7일 경과 태스크 정리
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
태스크는 `.crew/tasks/` 디렉토리에 개별 파일로 관리된다. 각 파일이 상태, 우선순위, 컨텍스트를 포함하여 세션 간 작업 재개 시 컨텍스트 재입력이 불필요하다.
|
|
87
|
+
|
|
88
|
+
## 에이전트 팀
|
|
89
|
+
|
|
90
|
+
| 에이전트 | 역할 | 소속 스킬 |
|
|
91
|
+
|---------|------|----------|
|
|
92
|
+
| **오케스트레이터** | 유저와 대화, 위임 판단, 파이프라인 진행 | 전체 |
|
|
93
|
+
| **Explorer** | 코드베이스 탐색 (read-only) | interview, plan |
|
|
94
|
+
| **Researcher** | 외부 리서치 (WebSearch) | interview, plan |
|
|
95
|
+
| **TechLead** | 기술 분석, 아키텍처 방향 판단 | plan |
|
|
96
|
+
| **Planner** | 태스크 분해, 구현 계획 | plan |
|
|
97
|
+
| **PlanEvaluator** | 계획 검증 (하드 임계값) | plan |
|
|
98
|
+
| **Dev** | 코드 구현 | dev |
|
|
99
|
+
| **CodeReviewer** | 코드 리뷰 | dev |
|
|
100
|
+
| **QA** | 실행 검증 | dev |
|
|
101
|
+
|
|
102
|
+
## 두 가지 사용 모드
|
|
103
|
+
|
|
104
|
+
claude-crew는 **다른 프로젝트에 설치되어 사용되는 플러그인**이다. 두 가지 모드로 구분된다.
|
|
105
|
+
|
|
106
|
+
### 사용자 모드
|
|
107
|
+
|
|
108
|
+
이 plugin을 자기 프로젝트에 설치해서 SaaS 개발에 활용하는 일반 사용자.
|
|
109
|
+
|
|
110
|
+
- 직접 호출하는 슬래시 명령: `/crew`, `/crew-setup`, `/crew-do`, `/task`, `/tasks`, `/crew-interview`, `/crew-plan`, `/crew-dev`.
|
|
111
|
+
- 디버그용 직접 호출 가능 명령: `node scripts/crew-agent-runner.mjs resolve --role <role> --json` (provider/model/contract 통합 표 확인).
|
|
112
|
+
- plugin이 설치된 위치(`~/.claude/plugins/...` 등)에 무관하게 동작 — plugin script가 자기 위치를 자동으로 인식.
|
|
113
|
+
|
|
114
|
+
### 개발자 모드
|
|
115
|
+
|
|
116
|
+
claude-crew 자체를 개발하는 사람 (이 repo 안에서 작업).
|
|
117
|
+
|
|
118
|
+
- `node scripts/crew-agent-runner.mjs build`: contracts/instructions에서 `agents/{role}.md` + `plugin.json` agents 배열 derive.
|
|
119
|
+
- `node scripts/crew-agent-runner.mjs validate`: build 결과와 현재 파일 정합성 검사 + sandbox 정합성 검증.
|
|
120
|
+
- `node scripts/crew-agent-runner.mjs install-hooks`: pre-commit hook 설치 (drift 차단).
|
|
121
|
+
|
|
122
|
+
위 세 명령은 **plugin source repo 안에서만 동작**한다. 사용자 환경에서 호출하면 가드로 차단된다 (`.claude-plugin/plugin.json` + `package.json.name === "@jjlabsio/claude-crew"` 감지). 사용자에게는 의미 없는 명령이므로 정상이다.
|
|
123
|
+
|
|
124
|
+
## 모델 설정
|
|
125
|
+
|
|
126
|
+
`/crew-setup`에서 에이전트별 provider/model을 설정합니다. 설정하지 않은 에이전트는 `data/provider-catalog.json`의 `agent_defaults`를 따릅니다.
|
|
127
|
+
|
|
128
|
+
권장 기본값은 에이전트 역할의 성격에 따라 세 그룹으로 구분됩니다.
|
|
129
|
+
|
|
130
|
+
| 에이전트 | provider | model | reasoning | 역할 성격 |
|
|
131
|
+
|----------|----------|-------|-----------|---------|
|
|
132
|
+
| `techlead` | codex | gpt-5.5 | high | 판단/평가 — 아키텍처 방향 결정 |
|
|
133
|
+
| `code-reviewer` | codex | gpt-5.5 | high | 판단/평가 — 코드 품질 판정 |
|
|
134
|
+
| `pm` | codex | gpt-5.5 | medium | 계획/분석 — 요구사항 수집 |
|
|
135
|
+
| `planner` | codex | gpt-5.5 | medium | 계획/분석 — 구현 계획 작성 |
|
|
136
|
+
| `dev` | codex | gpt-5.5 | medium | 계획/분석 — 코드 구현 |
|
|
137
|
+
| `plan-evaluator` | codex | gpt-5.4-mini | high | 실행/검증 — 계획 기준 충족 판정 |
|
|
138
|
+
| `qa` | codex | gpt-5.4-mini | high | 실행/검증 — 빌드/테스트 실행 |
|
|
139
|
+
| `researcher` | codex | gpt-5.4-mini | high | 실행/검증 — 외부 정보 조사 |
|
|
140
|
+
| `explorer` | codex | gpt-5.3-codex-spark | low | 탐색 전용 — 코드베이스 검색 |
|
|
141
|
+
|
|
142
|
+
Claude 모델은 `opus`, `sonnet`, `haiku` latest alias와 `claude-opus-4-7` 같은 버전 고정 ID를 모두 선택할 수 있습니다.
|
|
143
|
+
|
|
144
|
+
Claude provider는 Claude Code `Agent`로 실행하고, Codex provider는 플러그인에 내장된 `scripts/crew-codex-companion.mjs` app-server runtime으로 실행합니다. 에이전트가 유저 질문이나 다른 에이전트 호출이 필요하면 직접 처리하지 않고 오케스트레이터가 이어받아 실행합니다.
|
|
145
|
+
|
|
146
|
+
Provider와 무관하게 에이전트 결과는 `complete`, `blocked_on_user`, `needs_agent`, `needs_tool`, `failed` 상태 중 하나로 해석합니다. Claude Code 전용 도구가 필요한 경우에도 Codex provider는 요청 상태를 반환하고, 실제 도구 실행은 오케스트레이터가 담당합니다.
|
|
147
|
+
|
|
148
|
+
## 상태 파일
|
|
149
|
+
|
|
150
|
+
프로젝트 로컬 `.crew/` 디렉토리에 마크다운 파일로 상태를 관리합니다 (git tracked). 플러그인 업데이트 시에도 학습 내용과 상태는 보존됩니다.
|
|
151
|
+
|
|
152
|
+
```
|
|
153
|
+
.crew/
|
|
154
|
+
config.json # provider 설정 (gitignored)
|
|
155
|
+
tasks/ # 태스크 파일 (1개 = 1파일)
|
|
156
|
+
plans/ # 파이프라인 산출물 (spec, contract, dev-log, review)
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
## 설계 철학
|
|
160
|
+
|
|
161
|
+
**역할별 관점은 유지하되, 정보는 제한하지 않는다.**
|
|
162
|
+
|
|
163
|
+
각 에이전트는 특정 관점(기획/기술/구현)에서 사고하지만, 활용할 수 있는 정보(코드 포함)는 제한하지 않는다. 실제 회사의 역할 분리를 모방하는 것이 아니라, 빠뜨리는 관점이 없도록 구조화된 사고를 강제하는 것이 목적이다.
|
|
164
|
+
|
|
165
|
+
### 기타 원칙
|
|
166
|
+
|
|
167
|
+
- [Anthropic 하네스 설계 아티클](https://www.anthropic.com/engineering/harness-design)을 최우선 레퍼런스로 따름
|
|
168
|
+
- 가능한 단순하게 시작하고 필요할 때만 복잡성을 높임
|
|
169
|
+
- 모델이 발전하면 불필요해진 구성 요소를 제거
|
|
170
|
+
|
|
171
|
+
## License
|
|
172
|
+
|
|
173
|
+
MIT. This project also includes Apache-2.0 third-party components under `scripts/crew-codex/`; see `THIRD_PARTY_NOTICES.md`.
|
package/README.md
CHANGED
|
@@ -1,156 +1,172 @@
|
|
|
1
1
|
# Claude Crew
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
A Claude Code multi-agent orchestration plugin for solo SaaS developers.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
[한국어](README.ko.md)
|
|
6
|
+
|
|
7
|
+
## Pipeline
|
|
6
8
|
|
|
7
9
|
```
|
|
8
10
|
crew-interview → crew-plan → crew-dev
|
|
9
11
|
WHAT HOW DO
|
|
10
12
|
```
|
|
11
13
|
|
|
12
|
-
|
|
|
13
|
-
|
|
14
|
-
| **crew-interview** |
|
|
15
|
-
| **crew-plan** |
|
|
16
|
-
| **crew-dev** |
|
|
14
|
+
| Stage | Role | Output |
|
|
15
|
+
|-------|------|--------|
|
|
16
|
+
| **crew-interview** | What to build — requirements interview, product design | spec.md |
|
|
17
|
+
| **crew-plan** | How to build it — technical analysis, task decomposition | contract.md |
|
|
18
|
+
| **crew-dev** | Build it — implementation, code review, QA | working code + PR |
|
|
17
19
|
|
|
18
|
-
##
|
|
20
|
+
## Installation
|
|
19
21
|
|
|
20
|
-
Claude Code
|
|
22
|
+
In Claude Code:
|
|
21
23
|
|
|
22
24
|
```
|
|
23
25
|
/plugin marketplace add jjlabsio/claude-crew
|
|
24
26
|
/plugin install claude-crew
|
|
25
27
|
```
|
|
26
28
|
|
|
27
|
-
|
|
29
|
+
Or install locally:
|
|
28
30
|
|
|
29
31
|
```
|
|
30
32
|
/plugin install /path/to/claude-crew
|
|
31
33
|
```
|
|
32
34
|
|
|
33
|
-
##
|
|
35
|
+
## Initial Setup
|
|
34
36
|
|
|
35
|
-
|
|
37
|
+
Run once after installation:
|
|
36
38
|
|
|
37
39
|
```
|
|
38
40
|
/crew-setup
|
|
39
41
|
```
|
|
40
42
|
|
|
41
|
-
- `.gitignore` / `.gitattributes`
|
|
42
|
-
- HUD statusline
|
|
43
|
-
-
|
|
43
|
+
- `.gitignore` / `.gitattributes` migration (`.crew/` git tracked)
|
|
44
|
+
- HUD statusline installation
|
|
45
|
+
- Per-agent provider/model configuration
|
|
44
46
|
|
|
45
|
-
##
|
|
47
|
+
## Usage
|
|
46
48
|
|
|
47
|
-
###
|
|
49
|
+
### Development Pipeline
|
|
48
50
|
|
|
49
51
|
```
|
|
50
52
|
/crew
|
|
51
53
|
```
|
|
52
54
|
|
|
53
|
-
|
|
55
|
+
The orchestrator starts and briefs the current status.
|
|
54
56
|
|
|
55
|
-
###
|
|
57
|
+
### Quick Task Delegation
|
|
56
58
|
|
|
57
59
|
```
|
|
58
|
-
/crew-do "
|
|
59
|
-
/crew-do # active task
|
|
60
|
+
/crew-do "clean up login error messages"
|
|
61
|
+
/crew-do # runs the active task if one exists
|
|
60
62
|
```
|
|
61
63
|
|
|
62
|
-
`/crew-do
|
|
64
|
+
`/crew-do` invokes the Dev agent in `direct` mode for small fixes, bug patches, and clearly scoped tasks. If Dev's default provider is Codex, code exploration, editing, and verification happen inside the Codex runtime; Claude handles only result summarization and follow-up coordination.
|
|
63
65
|
|
|
64
|
-
`/task
|
|
66
|
+
`/task` remains dedicated to memory/queue management. To execute a saved task, mark it active with `/task work {id}` then run `/crew-do`.
|
|
65
67
|
|
|
66
|
-
###
|
|
68
|
+
### Task Management
|
|
67
69
|
|
|
68
70
|
```
|
|
69
|
-
/task add "
|
|
70
|
-
/task add "
|
|
71
|
-
/task work 3
|
|
72
|
-
/task start
|
|
73
|
-
/task done
|
|
74
|
-
/task bump 4
|
|
75
|
-
/task top 7
|
|
76
|
-
/task note 3 "
|
|
77
|
-
/task drop 3
|
|
71
|
+
/task add "description" # add a task (captures conversation context)
|
|
72
|
+
/task add "description" --next # urgent — insert at top of queue
|
|
73
|
+
/task work 3 # start working on task #3 (reads related files + briefs)
|
|
74
|
+
/task start # start working on the top-priority task
|
|
75
|
+
/task done # mark active task complete
|
|
76
|
+
/task bump 4 # raise priority by one
|
|
77
|
+
/task top 7 # move to top of queue
|
|
78
|
+
/task note 3 "note" # add a note to a task
|
|
79
|
+
/task drop 3 # delete a task
|
|
78
80
|
|
|
79
|
-
/tasks
|
|
80
|
-
/tasks stale
|
|
81
|
-
/tasks clean
|
|
81
|
+
/tasks # project task board
|
|
82
|
+
/tasks stale # review tasks untouched for 30+ days
|
|
83
|
+
/tasks clean # clean up tasks completed 7+ days ago
|
|
82
84
|
```
|
|
83
85
|
|
|
84
|
-
|
|
86
|
+
Tasks are managed as individual files in `.crew/tasks/`. Each file carries state, priority, and context so work can resume across sessions without re-entering context.
|
|
87
|
+
|
|
88
|
+
## Agent Team
|
|
89
|
+
|
|
90
|
+
| Agent | Role | Used in |
|
|
91
|
+
|-------|------|---------|
|
|
92
|
+
| **Orchestrator** | Talks with the user, decides delegation, drives the pipeline | all |
|
|
93
|
+
| **Explorer** | Codebase exploration (read-only) | interview, plan |
|
|
94
|
+
| **Researcher** | External research (WebSearch) | interview, plan |
|
|
95
|
+
| **TechLead** | Technical analysis, architecture direction | plan |
|
|
96
|
+
| **Planner** | Task decomposition, implementation planning | plan |
|
|
97
|
+
| **PlanEvaluator** | Plan validation (hard thresholds) | plan |
|
|
98
|
+
| **Dev** | Code implementation | dev |
|
|
99
|
+
| **CodeReviewer** | Code review | dev |
|
|
100
|
+
| **QA** | Execution verification | dev |
|
|
85
101
|
|
|
86
|
-
##
|
|
102
|
+
## Two Modes
|
|
87
103
|
|
|
88
|
-
|
|
89
|
-
|---------|------|----------|
|
|
90
|
-
| **오케스트레이터** | 유저와 대화, 위임 판단, 파이프라인 진행 | 전체 |
|
|
91
|
-
| **Explorer** | 코드베이스 탐색 (read-only) | interview, plan |
|
|
92
|
-
| **Researcher** | 외부 리서치 (WebSearch) | interview, plan |
|
|
93
|
-
| **TechLead** | 기술 분석, 아키텍처 방향 판단 | plan |
|
|
94
|
-
| **Planner** | 태스크 분해, 구현 계획 | plan |
|
|
95
|
-
| **PlanEvaluator** | 계획 검증 (하드 임계값) | plan |
|
|
96
|
-
| **Dev** | 코드 구현 | dev |
|
|
97
|
-
| **CodeReviewer** | 코드 리뷰 | dev |
|
|
98
|
-
| **QA** | 실행 검증 | dev |
|
|
104
|
+
claude-crew is a **plugin installed into other projects**. It operates in two distinct modes.
|
|
99
105
|
|
|
100
|
-
|
|
106
|
+
### User Mode
|
|
101
107
|
|
|
102
|
-
|
|
108
|
+
General users who install this plugin into their own project for SaaS development.
|
|
103
109
|
|
|
104
|
-
|
|
110
|
+
- Slash commands to invoke directly: `/crew`, `/crew-setup`, `/crew-do`, `/task`, `/tasks`, `/crew-interview`, `/crew-plan`, `/crew-dev`.
|
|
111
|
+
- Debug command: `node scripts/crew-agent-runner.mjs resolve --role <role> --json` (shows combined provider/model/contract table).
|
|
112
|
+
- Works regardless of where the plugin is installed (`~/.claude/plugins/...` etc.) — the plugin script auto-detects its own location.
|
|
105
113
|
|
|
106
|
-
|
|
114
|
+
### Developer Mode
|
|
107
115
|
|
|
108
|
-
|
|
109
|
-
- 디버그용 직접 호출 가능 명령: `node scripts/crew-agent-runner.mjs resolve --role <role> --json` (provider/model/contract 통합 표 확인).
|
|
110
|
-
- plugin이 설치된 위치(`~/.claude/plugins/...` 등)에 무관하게 동작 — plugin script가 자기 위치를 자동으로 인식.
|
|
116
|
+
People developing claude-crew itself (working inside this repo).
|
|
111
117
|
|
|
112
|
-
|
|
118
|
+
- `node scripts/crew-agent-runner.mjs build`: derives `agents/{role}.md` + `plugin.json` agents array from contracts/instructions.
|
|
119
|
+
- `node scripts/crew-agent-runner.mjs validate`: checks build output against source files + sandbox consistency.
|
|
120
|
+
- `node scripts/crew-agent-runner.mjs install-hooks`: installs pre-commit hook (prevents drift).
|
|
113
121
|
|
|
114
|
-
|
|
122
|
+
These commands **only work inside the plugin source repo**. They are blocked when called from a user environment (detected via `.claude-plugin/plugin.json` + `package.json.name === "@jjlabsio/claude-crew"`).
|
|
115
123
|
|
|
116
|
-
|
|
117
|
-
- `node scripts/crew-agent-runner.mjs validate`: build 결과와 현재 파일 정합성 검사 + sandbox 정합성 검증.
|
|
118
|
-
- `node scripts/crew-agent-runner.mjs install-hooks`: pre-commit hook 설치 (drift 차단).
|
|
124
|
+
## Model Configuration
|
|
119
125
|
|
|
120
|
-
|
|
126
|
+
Configure per-agent provider/model via `/crew-setup`. Agents without explicit configuration fall back to `agent_defaults` in `data/provider-catalog.json`.
|
|
121
127
|
|
|
122
|
-
|
|
128
|
+
Default recommendations are grouped by the nature of each agent's role:
|
|
123
129
|
|
|
124
|
-
|
|
130
|
+
| Agent | Provider | Model | Reasoning | Role type |
|
|
131
|
+
|-------|----------|-------|-----------|-----------|
|
|
132
|
+
| `techlead` | codex | gpt-5.5 | high | Judgment — architecture direction |
|
|
133
|
+
| `code-reviewer` | codex | gpt-5.5 | high | Judgment — code quality assessment |
|
|
134
|
+
| `pm` | codex | gpt-5.5 | medium | Planning — requirements gathering |
|
|
135
|
+
| `planner` | codex | gpt-5.5 | medium | Planning — implementation planning |
|
|
136
|
+
| `dev` | codex | gpt-5.5 | medium | Planning — code implementation |
|
|
137
|
+
| `plan-evaluator` | codex | gpt-5.4-mini | high | Execution — plan threshold checks |
|
|
138
|
+
| `qa` | codex | gpt-5.4-mini | high | Execution — build/test verification |
|
|
139
|
+
| `researcher` | codex | gpt-5.4-mini | high | Execution — external research |
|
|
140
|
+
| `explorer` | codex | gpt-5.3-codex-spark | low | Exploration — codebase search |
|
|
125
141
|
|
|
126
|
-
|
|
142
|
+
For Claude models, both latest aliases (`opus`, `sonnet`, `haiku`) and pinned version IDs like `claude-opus-4-7` are supported.
|
|
127
143
|
|
|
128
|
-
Claude provider
|
|
144
|
+
The Claude provider runs agents via Claude Code's `Agent` tool. The Codex provider runs via the bundled `scripts/crew-codex-companion.mjs` app-server runtime. When an agent needs to ask the user a question or invoke another agent, it does not handle this directly — the orchestrator takes over.
|
|
129
145
|
|
|
130
|
-
|
|
146
|
+
Regardless of provider, agent results are interpreted as one of: `complete`, `blocked_on_user`, `needs_agent`, `needs_tool`, or `failed`. Even when a Claude Code-specific tool is required, the Codex provider returns a request status and the orchestrator handles the actual tool execution.
|
|
131
147
|
|
|
132
|
-
##
|
|
148
|
+
## State Files
|
|
133
149
|
|
|
134
|
-
|
|
150
|
+
State is managed as Markdown files in the project-local `.crew/` directory (git tracked). Learning and state are preserved across plugin updates.
|
|
135
151
|
|
|
136
152
|
```
|
|
137
153
|
.crew/
|
|
138
|
-
config.json # provider
|
|
139
|
-
tasks/ #
|
|
140
|
-
plans/ #
|
|
154
|
+
config.json # provider configuration (gitignored)
|
|
155
|
+
tasks/ # task files (one file per task)
|
|
156
|
+
plans/ # pipeline artifacts (spec, contract, dev-log, review)
|
|
141
157
|
```
|
|
142
158
|
|
|
143
|
-
##
|
|
159
|
+
## Design Philosophy
|
|
144
160
|
|
|
145
|
-
|
|
161
|
+
**Preserve per-role perspective; do not restrict information.**
|
|
146
162
|
|
|
147
|
-
|
|
163
|
+
Each agent thinks from a specific viewpoint (product / technical / implementation), but the information it can use (including code) is not restricted. The goal is not to mimic real-world org chart separation, but to enforce structured thinking so no perspective is missed.
|
|
148
164
|
|
|
149
|
-
###
|
|
165
|
+
### Other Principles
|
|
150
166
|
|
|
151
|
-
- [Anthropic
|
|
152
|
-
-
|
|
153
|
-
-
|
|
167
|
+
- [Anthropic harness design article](https://www.anthropic.com/engineering/harness-design) is the primary reference
|
|
168
|
+
- Start as simple as possible; add complexity only when needed
|
|
169
|
+
- Remove components that become unnecessary as models improve
|
|
154
170
|
|
|
155
171
|
## License
|
|
156
172
|
|
|
@@ -27,14 +27,14 @@
|
|
|
27
27
|
},
|
|
28
28
|
"agent_defaults": {
|
|
29
29
|
"pm": { "provider": "codex", "model": "gpt-5.5", "reasoning": "medium" },
|
|
30
|
-
"techlead": { "provider": "codex", "model": "gpt-5.5", "reasoning": "
|
|
30
|
+
"techlead": { "provider": "codex", "model": "gpt-5.5", "reasoning": "high" },
|
|
31
31
|
"planner": { "provider": "codex", "model": "gpt-5.5", "reasoning": "medium" },
|
|
32
|
-
"plan-evaluator": { "provider": "
|
|
32
|
+
"plan-evaluator": { "provider": "codex", "model": "gpt-5.4-mini", "reasoning": "high" },
|
|
33
33
|
"explorer": { "provider": "codex", "model": "gpt-5.3-codex-spark", "reasoning": "low" },
|
|
34
34
|
"researcher": { "provider": "codex", "model": "gpt-5.4-mini", "reasoning": "high" },
|
|
35
|
-
"qa": { "provider": "
|
|
35
|
+
"qa": { "provider": "codex", "model": "gpt-5.4-mini", "reasoning": "high" },
|
|
36
36
|
"dev": { "provider": "codex", "model": "gpt-5.5", "reasoning": "medium" },
|
|
37
|
-
"code-reviewer": { "provider": "codex", "model": "gpt-5.5", "reasoning": "
|
|
37
|
+
"code-reviewer": { "provider": "codex", "model": "gpt-5.5", "reasoning": "high" }
|
|
38
38
|
},
|
|
39
39
|
"agent_runtime": {
|
|
40
40
|
"pm": { "codex_sandbox": "read-only" },
|