@team-semicolon/semo-cli 3.0.28 → 3.0.29
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/README.md +231 -231
- package/dist/index.js +461 -346
- package/package.json +48 -48
package/README.md
CHANGED
|
@@ -1,231 +1,231 @@
|
|
|
1
|
-
# @team-semicolon/semo-cli
|
|
2
|
-
|
|
3
|
-
> SEMO CLI v3.0 - AI Agent Orchestration Framework Installer
|
|
4
|
-
|
|
5
|
-
## 설치
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
npm install -g @team-semicolon/semo-cli
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
## 빠른 시작
|
|
12
|
-
|
|
13
|
-
```bash
|
|
14
|
-
# 프로젝트에 SEMO 설치
|
|
15
|
-
semo init
|
|
16
|
-
|
|
17
|
-
# Extension 패키지 추가
|
|
18
|
-
semo add eng/nextjs
|
|
19
|
-
|
|
20
|
-
# 버전 확인 및 업데이트 체크
|
|
21
|
-
semo -v
|
|
22
|
-
```
|
|
23
|
-
|
|
24
|
-
## 명령어
|
|
25
|
-
|
|
26
|
-
### `semo init`
|
|
27
|
-
|
|
28
|
-
현재 프로젝트에 SEMO를 설치합니다.
|
|
29
|
-
|
|
30
|
-
```bash
|
|
31
|
-
semo init # 기본 설치 (프로젝트 유형 자동 감지)
|
|
32
|
-
semo init --force # 기존 설정 덮어쓰기
|
|
33
|
-
semo init --skip-mcp # MCP 설정 생략
|
|
34
|
-
semo init --with next,infra # 특정 패키지와 함께 설치
|
|
35
|
-
```
|
|
36
|
-
|
|
37
|
-
### `semo add <packages>`
|
|
38
|
-
|
|
39
|
-
Extension 패키지를 추가로 설치합니다.
|
|
40
|
-
|
|
41
|
-
```bash
|
|
42
|
-
# 개별 패키지 설치
|
|
43
|
-
semo add eng/nextjs
|
|
44
|
-
semo add biz/discovery
|
|
45
|
-
|
|
46
|
-
# 그룹 일괄 설치
|
|
47
|
-
semo add biz # Business 전체 (discovery, design, management, poc)
|
|
48
|
-
semo add eng # Engineering 전체 (nextjs, spring, ms, infra)
|
|
49
|
-
semo add ops # Operations 전체 (qa, monitor, improve)
|
|
50
|
-
|
|
51
|
-
# 여러 패키지 동시 설치
|
|
52
|
-
semo add eng/nextjs,eng/infra
|
|
53
|
-
|
|
54
|
-
# 레거시 별칭 지원
|
|
55
|
-
semo add next # → eng/nextjs
|
|
56
|
-
semo add backend # → eng/spring
|
|
57
|
-
semo add mvp # → biz/poc
|
|
58
|
-
```
|
|
59
|
-
|
|
60
|
-
### `semo list`
|
|
61
|
-
|
|
62
|
-
사용 가능한 모든 패키지를 표시합니다.
|
|
63
|
-
|
|
64
|
-
```bash
|
|
65
|
-
semo list
|
|
66
|
-
```
|
|
67
|
-
|
|
68
|
-
### `semo status`
|
|
69
|
-
|
|
70
|
-
SEMO 설치 상태를 확인합니다.
|
|
71
|
-
|
|
72
|
-
```bash
|
|
73
|
-
semo status
|
|
74
|
-
```
|
|
75
|
-
|
|
76
|
-
### `semo version` / `semo -v`
|
|
77
|
-
|
|
78
|
-
버전 정보 및 업데이트 확인을 표시합니다.
|
|
79
|
-
|
|
80
|
-
```bash
|
|
81
|
-
semo version
|
|
82
|
-
semo -v
|
|
83
|
-
```
|
|
84
|
-
|
|
85
|
-
출력 예시:
|
|
86
|
-
```
|
|
87
|
-
📦 SEMO CLI 버전 정보
|
|
88
|
-
|
|
89
|
-
현재 버전: 3.0.7
|
|
90
|
-
최신 버전: 3.0.7
|
|
91
|
-
|
|
92
|
-
✓ 최신 버전을 사용 중입니다.
|
|
93
|
-
```
|
|
94
|
-
|
|
95
|
-
### `semo update`
|
|
96
|
-
|
|
97
|
-
SEMO를 최신 버전으로 업데이트합니다.
|
|
98
|
-
|
|
99
|
-
```bash
|
|
100
|
-
semo update # CLI + semo-system 전체 업데이트
|
|
101
|
-
semo update --self # CLI만 업데이트
|
|
102
|
-
semo update --system # semo-system만 업데이트
|
|
103
|
-
semo update --skip-cli # CLI 업데이트 건너뛰기
|
|
104
|
-
```
|
|
105
|
-
|
|
106
|
-
## 패키지 구조
|
|
107
|
-
|
|
108
|
-
### Standard (필수)
|
|
109
|
-
|
|
110
|
-
모든 프로젝트에 기본 설치됩니다.
|
|
111
|
-
|
|
112
|
-
| 패키지 | 설명 |
|
|
113
|
-
|--------|------|
|
|
114
|
-
| `semo-core` | 원칙, 오케스트레이터, 공통 커맨드 |
|
|
115
|
-
| `semo-skills` | 13개 통합 스킬 (coder, tester, planner, deployer 등) |
|
|
116
|
-
|
|
117
|
-
### Extensions (선택)
|
|
118
|
-
|
|
119
|
-
프로젝트 유형에 맞게 선택적으로 설치합니다.
|
|
120
|
-
|
|
121
|
-
#### Business Layer (`biz`)
|
|
122
|
-
|
|
123
|
-
| 패키지 | 설명 | 설치 |
|
|
124
|
-
|--------|------|------|
|
|
125
|
-
| `biz/discovery` | 아이템 발굴, 시장 조사, Epic/Task | `semo add biz/discovery` |
|
|
126
|
-
| `biz/design` | 컨셉 설계, 목업, UX | `semo add biz/design` |
|
|
127
|
-
| `biz/management` | 일정/인력/스프린트 관리 | `semo add biz/management` |
|
|
128
|
-
| `biz/poc` | 빠른 PoC, 패스트트랙 | `semo add biz/poc` |
|
|
129
|
-
|
|
130
|
-
#### Engineering Layer (`eng`)
|
|
131
|
-
|
|
132
|
-
| 패키지 | 설명 | 자동 감지 | 설치 |
|
|
133
|
-
|--------|------|----------|------|
|
|
134
|
-
| `eng/nextjs` | Next.js 프론트엔드 개발 | `next.config.*` | `semo add eng/nextjs` |
|
|
135
|
-
| `eng/spring` | Spring Boot 백엔드 개발 | `pom.xml`, `build.gradle` | `semo add eng/spring` |
|
|
136
|
-
| `eng/ms` | 마이크로서비스 아키텍처 | - | `semo add eng/ms` |
|
|
137
|
-
| `eng/infra` | 인프라/배포 관리 | `Dockerfile`, `docker-compose.yml` | `semo add eng/infra` |
|
|
138
|
-
|
|
139
|
-
#### Operations Layer (`ops`)
|
|
140
|
-
|
|
141
|
-
| 패키지 | 설명 | 설치 |
|
|
142
|
-
|--------|------|------|
|
|
143
|
-
| `ops/qa` | 테스트/품질 관리 | `semo add ops/qa` |
|
|
144
|
-
| `ops/monitor` | 서비스 현황 모니터링 | `semo add ops/monitor` |
|
|
145
|
-
| `ops/improve` | 개선 제안 | `semo add ops/improve` |
|
|
146
|
-
|
|
147
|
-
#### Meta
|
|
148
|
-
|
|
149
|
-
| 패키지 | 설명 | 설치 |
|
|
150
|
-
|--------|------|------|
|
|
151
|
-
| `meta` | SEMO 프레임워크 자체 개발/관리 | `semo add meta` |
|
|
152
|
-
|
|
153
|
-
## 설치 후 구조
|
|
154
|
-
|
|
155
|
-
```
|
|
156
|
-
your-project/
|
|
157
|
-
├── .claude/
|
|
158
|
-
│ ├── CLAUDE.md # 프로젝트 설정 (Extension CLAUDE.md 병합)
|
|
159
|
-
│ ├── settings.json # MCP 서버 설정
|
|
160
|
-
│ ├── memory/ # Context Mesh (세션 간 컨텍스트)
|
|
161
|
-
│ │ ├── context.md # 프로젝트 상태
|
|
162
|
-
│ │ ├── decisions.md # 아키텍처 결정
|
|
163
|
-
│ │ └── rules/ # 프로젝트별 규칙
|
|
164
|
-
│ ├── agents/ # 에이전트 심볼릭 링크
|
|
165
|
-
│ ├── skills/ # 스킬 심볼릭 링크
|
|
166
|
-
│ └── commands/SEMO/ # SEMO 커맨드
|
|
167
|
-
│
|
|
168
|
-
└── semo-system/ # White Box (읽기 전용)
|
|
169
|
-
├── semo-core/ # Layer 0: 원칙, 오케스트레이션
|
|
170
|
-
├── semo-skills/ # Layer 1: 통합 스킬
|
|
171
|
-
├── biz/ # Business Layer (선택)
|
|
172
|
-
├── eng/ # Engineering Layer (선택)
|
|
173
|
-
└── ops/ # Operations Layer (선택)
|
|
174
|
-
```
|
|
175
|
-
|
|
176
|
-
## MCP 서버
|
|
177
|
-
|
|
178
|
-
SEMO CLI는 다음 MCP 서버를 자동으로 등록합니다:
|
|
179
|
-
|
|
180
|
-
| 서버 | 설명 |
|
|
181
|
-
|------|------|
|
|
182
|
-
| `semo-integrations` | GitHub, Slack, Supabase 연동 |
|
|
183
|
-
| `context7` | 라이브러리 문서 조회 |
|
|
184
|
-
| `sequential-thinking` | 순차적 사고 지원 |
|
|
185
|
-
|
|
186
|
-
### 환경변수
|
|
187
|
-
|
|
188
|
-
MCP 연동을 위해 다음 환경변수를 설정하세요:
|
|
189
|
-
|
|
190
|
-
| 변수 | 설명 |
|
|
191
|
-
|------|------|
|
|
192
|
-
| `GITHUB_TOKEN` | GitHub API 토큰 |
|
|
193
|
-
| `SLACK_BOT_TOKEN` | Slack Bot 토큰 |
|
|
194
|
-
| `SUPABASE_URL` | Supabase 프로젝트 URL |
|
|
195
|
-
| `SUPABASE_KEY` | Supabase 서비스 키 |
|
|
196
|
-
|
|
197
|
-
## 프로젝트 유형 자동 감지
|
|
198
|
-
|
|
199
|
-
`semo init` 실행 시 프로젝트 파일을 분석하여 적절한 패키지를 추천합니다:
|
|
200
|
-
|
|
201
|
-
| 감지 파일 | 추천 패키지 |
|
|
202
|
-
|----------|-------------|
|
|
203
|
-
| `next.config.js`, `next.config.mjs`, `next.config.ts` | `eng/nextjs` |
|
|
204
|
-
| `pom.xml`, `build.gradle` | `eng/spring` |
|
|
205
|
-
| `Dockerfile`, `docker-compose.yml` | `eng/infra` |
|
|
206
|
-
| `semo-core`, `semo-skills` | `meta` |
|
|
207
|
-
|
|
208
|
-
## 레거시 명령어 호환
|
|
209
|
-
|
|
210
|
-
이전 버전 사용자를 위해 레거시 패키지명도 지원합니다:
|
|
211
|
-
|
|
212
|
-
| 레거시 | 현재 |
|
|
213
|
-
|--------|------|
|
|
214
|
-
| `semo add next` | `semo add eng/nextjs` |
|
|
215
|
-
| `semo add backend` | `semo add eng/spring` |
|
|
216
|
-
| `semo add ms` | `semo add eng/ms` |
|
|
217
|
-
| `semo add infra` | `semo add eng/infra` |
|
|
218
|
-
| `semo add qa` | `semo add ops/qa` |
|
|
219
|
-
| `semo add po` | `semo add biz/discovery` |
|
|
220
|
-
| `semo add pm` | `semo add biz/management` |
|
|
221
|
-
| `semo add design` | `semo add biz/design` |
|
|
222
|
-
| `semo add mvp` | `semo add biz/poc` |
|
|
223
|
-
|
|
224
|
-
## 참조
|
|
225
|
-
|
|
226
|
-
- [SEMO 레포지토리](https://github.com/semicolon-devteam/semo)
|
|
227
|
-
- [SEMO MCP Server](https://www.npmjs.com/package/@team-semicolon/semo-mcp)
|
|
228
|
-
|
|
229
|
-
## 라이선스
|
|
230
|
-
|
|
231
|
-
MIT
|
|
1
|
+
# @team-semicolon/semo-cli
|
|
2
|
+
|
|
3
|
+
> SEMO CLI v3.0 - AI Agent Orchestration Framework Installer
|
|
4
|
+
|
|
5
|
+
## 설치
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @team-semicolon/semo-cli
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## 빠른 시작
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
# 프로젝트에 SEMO 설치
|
|
15
|
+
semo init
|
|
16
|
+
|
|
17
|
+
# Extension 패키지 추가
|
|
18
|
+
semo add eng/nextjs
|
|
19
|
+
|
|
20
|
+
# 버전 확인 및 업데이트 체크
|
|
21
|
+
semo -v
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## 명령어
|
|
25
|
+
|
|
26
|
+
### `semo init`
|
|
27
|
+
|
|
28
|
+
현재 프로젝트에 SEMO를 설치합니다.
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
semo init # 기본 설치 (프로젝트 유형 자동 감지)
|
|
32
|
+
semo init --force # 기존 설정 덮어쓰기
|
|
33
|
+
semo init --skip-mcp # MCP 설정 생략
|
|
34
|
+
semo init --with next,infra # 특정 패키지와 함께 설치
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
### `semo add <packages>`
|
|
38
|
+
|
|
39
|
+
Extension 패키지를 추가로 설치합니다.
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
# 개별 패키지 설치
|
|
43
|
+
semo add eng/nextjs
|
|
44
|
+
semo add biz/discovery
|
|
45
|
+
|
|
46
|
+
# 그룹 일괄 설치
|
|
47
|
+
semo add biz # Business 전체 (discovery, design, management, poc)
|
|
48
|
+
semo add eng # Engineering 전체 (nextjs, spring, ms, infra)
|
|
49
|
+
semo add ops # Operations 전체 (qa, monitor, improve)
|
|
50
|
+
|
|
51
|
+
# 여러 패키지 동시 설치
|
|
52
|
+
semo add eng/nextjs,eng/infra
|
|
53
|
+
|
|
54
|
+
# 레거시 별칭 지원
|
|
55
|
+
semo add next # → eng/nextjs
|
|
56
|
+
semo add backend # → eng/spring
|
|
57
|
+
semo add mvp # → biz/poc
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
### `semo list`
|
|
61
|
+
|
|
62
|
+
사용 가능한 모든 패키지를 표시합니다.
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
semo list
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
### `semo status`
|
|
69
|
+
|
|
70
|
+
SEMO 설치 상태를 확인합니다.
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
semo status
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
### `semo version` / `semo -v`
|
|
77
|
+
|
|
78
|
+
버전 정보 및 업데이트 확인을 표시합니다.
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
semo version
|
|
82
|
+
semo -v
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
출력 예시:
|
|
86
|
+
```
|
|
87
|
+
📦 SEMO CLI 버전 정보
|
|
88
|
+
|
|
89
|
+
현재 버전: 3.0.7
|
|
90
|
+
최신 버전: 3.0.7
|
|
91
|
+
|
|
92
|
+
✓ 최신 버전을 사용 중입니다.
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
### `semo update`
|
|
96
|
+
|
|
97
|
+
SEMO를 최신 버전으로 업데이트합니다.
|
|
98
|
+
|
|
99
|
+
```bash
|
|
100
|
+
semo update # CLI + semo-system 전체 업데이트
|
|
101
|
+
semo update --self # CLI만 업데이트
|
|
102
|
+
semo update --system # semo-system만 업데이트
|
|
103
|
+
semo update --skip-cli # CLI 업데이트 건너뛰기
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
## 패키지 구조
|
|
107
|
+
|
|
108
|
+
### Standard (필수)
|
|
109
|
+
|
|
110
|
+
모든 프로젝트에 기본 설치됩니다.
|
|
111
|
+
|
|
112
|
+
| 패키지 | 설명 |
|
|
113
|
+
|--------|------|
|
|
114
|
+
| `semo-core` | 원칙, 오케스트레이터, 공통 커맨드 |
|
|
115
|
+
| `semo-skills` | 13개 통합 스킬 (coder, tester, planner, deployer 등) |
|
|
116
|
+
|
|
117
|
+
### Extensions (선택)
|
|
118
|
+
|
|
119
|
+
프로젝트 유형에 맞게 선택적으로 설치합니다.
|
|
120
|
+
|
|
121
|
+
#### Business Layer (`biz`)
|
|
122
|
+
|
|
123
|
+
| 패키지 | 설명 | 설치 |
|
|
124
|
+
|--------|------|------|
|
|
125
|
+
| `biz/discovery` | 아이템 발굴, 시장 조사, Epic/Task | `semo add biz/discovery` |
|
|
126
|
+
| `biz/design` | 컨셉 설계, 목업, UX | `semo add biz/design` |
|
|
127
|
+
| `biz/management` | 일정/인력/스프린트 관리 | `semo add biz/management` |
|
|
128
|
+
| `biz/poc` | 빠른 PoC, 패스트트랙 | `semo add biz/poc` |
|
|
129
|
+
|
|
130
|
+
#### Engineering Layer (`eng`)
|
|
131
|
+
|
|
132
|
+
| 패키지 | 설명 | 자동 감지 | 설치 |
|
|
133
|
+
|--------|------|----------|------|
|
|
134
|
+
| `eng/nextjs` | Next.js 프론트엔드 개발 | `next.config.*` | `semo add eng/nextjs` |
|
|
135
|
+
| `eng/spring` | Spring Boot 백엔드 개발 | `pom.xml`, `build.gradle` | `semo add eng/spring` |
|
|
136
|
+
| `eng/ms` | 마이크로서비스 아키텍처 | - | `semo add eng/ms` |
|
|
137
|
+
| `eng/infra` | 인프라/배포 관리 | `Dockerfile`, `docker-compose.yml` | `semo add eng/infra` |
|
|
138
|
+
|
|
139
|
+
#### Operations Layer (`ops`)
|
|
140
|
+
|
|
141
|
+
| 패키지 | 설명 | 설치 |
|
|
142
|
+
|--------|------|------|
|
|
143
|
+
| `ops/qa` | 테스트/품질 관리 | `semo add ops/qa` |
|
|
144
|
+
| `ops/monitor` | 서비스 현황 모니터링 | `semo add ops/monitor` |
|
|
145
|
+
| `ops/improve` | 개선 제안 | `semo add ops/improve` |
|
|
146
|
+
|
|
147
|
+
#### Meta
|
|
148
|
+
|
|
149
|
+
| 패키지 | 설명 | 설치 |
|
|
150
|
+
|--------|------|------|
|
|
151
|
+
| `meta` | SEMO 프레임워크 자체 개발/관리 | `semo add meta` |
|
|
152
|
+
|
|
153
|
+
## 설치 후 구조
|
|
154
|
+
|
|
155
|
+
```
|
|
156
|
+
your-project/
|
|
157
|
+
├── .claude/
|
|
158
|
+
│ ├── CLAUDE.md # 프로젝트 설정 (Extension CLAUDE.md 병합)
|
|
159
|
+
│ ├── settings.json # MCP 서버 설정
|
|
160
|
+
│ ├── memory/ # Context Mesh (세션 간 컨텍스트)
|
|
161
|
+
│ │ ├── context.md # 프로젝트 상태
|
|
162
|
+
│ │ ├── decisions.md # 아키텍처 결정
|
|
163
|
+
│ │ └── rules/ # 프로젝트별 규칙
|
|
164
|
+
│ ├── agents/ # 에이전트 심볼릭 링크
|
|
165
|
+
│ ├── skills/ # 스킬 심볼릭 링크
|
|
166
|
+
│ └── commands/SEMO/ # SEMO 커맨드
|
|
167
|
+
│
|
|
168
|
+
└── semo-system/ # White Box (읽기 전용)
|
|
169
|
+
├── semo-core/ # Layer 0: 원칙, 오케스트레이션
|
|
170
|
+
├── semo-skills/ # Layer 1: 통합 스킬
|
|
171
|
+
├── biz/ # Business Layer (선택)
|
|
172
|
+
├── eng/ # Engineering Layer (선택)
|
|
173
|
+
└── ops/ # Operations Layer (선택)
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
## MCP 서버
|
|
177
|
+
|
|
178
|
+
SEMO CLI는 다음 MCP 서버를 자동으로 등록합니다:
|
|
179
|
+
|
|
180
|
+
| 서버 | 설명 |
|
|
181
|
+
|------|------|
|
|
182
|
+
| `semo-integrations` | GitHub, Slack, Supabase 연동 |
|
|
183
|
+
| `context7` | 라이브러리 문서 조회 |
|
|
184
|
+
| `sequential-thinking` | 순차적 사고 지원 |
|
|
185
|
+
|
|
186
|
+
### 환경변수
|
|
187
|
+
|
|
188
|
+
MCP 연동을 위해 다음 환경변수를 설정하세요:
|
|
189
|
+
|
|
190
|
+
| 변수 | 설명 |
|
|
191
|
+
|------|------|
|
|
192
|
+
| `GITHUB_TOKEN` | GitHub API 토큰 |
|
|
193
|
+
| `SLACK_BOT_TOKEN` | Slack Bot 토큰 |
|
|
194
|
+
| `SUPABASE_URL` | Supabase 프로젝트 URL |
|
|
195
|
+
| `SUPABASE_KEY` | Supabase 서비스 키 |
|
|
196
|
+
|
|
197
|
+
## 프로젝트 유형 자동 감지
|
|
198
|
+
|
|
199
|
+
`semo init` 실행 시 프로젝트 파일을 분석하여 적절한 패키지를 추천합니다:
|
|
200
|
+
|
|
201
|
+
| 감지 파일 | 추천 패키지 |
|
|
202
|
+
|----------|-------------|
|
|
203
|
+
| `next.config.js`, `next.config.mjs`, `next.config.ts` | `eng/nextjs` |
|
|
204
|
+
| `pom.xml`, `build.gradle` | `eng/spring` |
|
|
205
|
+
| `Dockerfile`, `docker-compose.yml` | `eng/infra` |
|
|
206
|
+
| `semo-core`, `semo-skills` | `meta` |
|
|
207
|
+
|
|
208
|
+
## 레거시 명령어 호환
|
|
209
|
+
|
|
210
|
+
이전 버전 사용자를 위해 레거시 패키지명도 지원합니다:
|
|
211
|
+
|
|
212
|
+
| 레거시 | 현재 |
|
|
213
|
+
|--------|------|
|
|
214
|
+
| `semo add next` | `semo add eng/nextjs` |
|
|
215
|
+
| `semo add backend` | `semo add eng/spring` |
|
|
216
|
+
| `semo add ms` | `semo add eng/ms` |
|
|
217
|
+
| `semo add infra` | `semo add eng/infra` |
|
|
218
|
+
| `semo add qa` | `semo add ops/qa` |
|
|
219
|
+
| `semo add po` | `semo add biz/discovery` |
|
|
220
|
+
| `semo add pm` | `semo add biz/management` |
|
|
221
|
+
| `semo add design` | `semo add biz/design` |
|
|
222
|
+
| `semo add mvp` | `semo add biz/poc` |
|
|
223
|
+
|
|
224
|
+
## 참조
|
|
225
|
+
|
|
226
|
+
- [SEMO 레포지토리](https://github.com/semicolon-devteam/semo)
|
|
227
|
+
- [SEMO MCP Server](https://www.npmjs.com/package/@team-semicolon/semo-mcp)
|
|
228
|
+
|
|
229
|
+
## 라이선스
|
|
230
|
+
|
|
231
|
+
MIT
|