mimi-seed 0.19.11 → 0.19.13
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 +37 -373
- package/dist/{chunk-UKNCSE4V.js → chunk-YIVIN2XR.js} +715 -213
- package/dist/index.js +232 -173
- package/dist/{setup-VO5WN32U.js → setup-Z34QP6PO.js} +1 -2
- package/package.json +3 -2
- package/dist/chunk-2FKWHED2.js +0 -56
- package/dist/chunk-TQHLWSFR.js +0 -260
- package/dist/mcp-client-L5BQ5VG4.js +0 -8
package/README.md
CHANGED
|
@@ -1,386 +1,50 @@
|
|
|
1
1
|
# mimi-seed
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
git log에서 릴리즈 노트를 생성하고, 출시 전 위험 요소를 자동 점검하며, Play Store / App Store에 바로 적용합니다.
|
|
6
|
-
|
|
7
|
-
## 빠른 시작
|
|
8
|
-
|
|
9
|
-
```bash
|
|
10
|
-
npx mimi-seed check --local
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
로그인 없이 현재 저장소의 앱 식별자, Android Target API, Google Play Billing 지원 상태를 먼저 검사합니다.
|
|
14
|
-
검사기는 CLI에 번들되어 전체 MCP 패키지를 추가 설치하지 않으며, 저장소 전용 모드에서는 네트워크도 호출하지
|
|
15
|
-
않습니다. 정책 결과에는 근거 파일과 공식 출처가 포함됩니다. 실제 스토어 상태까지 연결하려면 그다음 실행합니다.
|
|
16
|
-
|
|
17
|
-
```bash
|
|
18
|
-
npx mimi-seed init
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
현재 디렉토리에서 Android/iOS 앱을 자동 감지해 Mimi Seed 워크스페이스에 등록하고, PAT를 `~/.mimi-seed/config.json`에 저장합니다. 프로젝트 컨텍스트는 Claude Code용 `.claude/mimi-seed.md`와 Codex용 `AGENTS.md`에 함께 기록됩니다.
|
|
22
|
-
|
|
23
|
-
## 명령어
|
|
24
|
-
|
|
25
|
-
| 명령어 | 설명 |
|
|
26
|
-
|--------|------|
|
|
27
|
-
| `mimi-seed init` | 프로젝트를 Mimi Seed에 연결 (PAT 발급 + 앱 자동 등록 + `.claude/mimi-seed.md` / `AGENTS.md` 주입) |
|
|
28
|
-
| `mimi-seed setup` | **가진 계정을 한 번에 연결** (안내형 마법사) — 뭐가 빠졌는지 보여주고, 각 토큰을 어디서 발급받는지 알려줌 |
|
|
29
|
-
| `mimi-seed status` | 연결 상태 + 등록 앱 목록 |
|
|
30
|
-
| `mimi-seed auth` | 자격증명 개별 인증 — `login` / `appstore` / `playstore` / `bigquery` / `jenkins` / `ci` / `googleads` / `facebook` / `instagram` / `threads` |
|
|
31
|
-
| `mimi-seed doctor` | 환경 진단 (토큰·Git·앱·CI 한 번에 체크) |
|
|
32
|
-
| `mimi-seed check` | 계정이 없으면 로컬 Release Doctor, 연결 후에는 원격 Readiness 점검 |
|
|
33
|
-
| `mimi-seed notes` | AI 릴리즈 노트 생성 (git log → 3 톤 → 다국어 → 적용) |
|
|
34
|
-
| `mimi-seed review` | AI 리뷰 답변 초안 생성 및 Play Store 게시 |
|
|
35
|
-
| `mimi-seed deploy` | 앱 자동 배포 파이프라인 (CI 빌드 → 릴리즈 노트 → 스토어 적용) |
|
|
36
|
-
| `mimi-seed restart` | MCP 서버 프로세스 재시작 |
|
|
37
|
-
| `mimi-seed logout` | 로컬 설정 삭제 |
|
|
38
|
-
|
|
39
|
-
> `init`은 `.claude/mimi-seed.md`와 `AGENTS.md`를 함께 생성해 Claude Code와 Codex 세션마다 에이전트 컨텍스트(출시 워크플로우 + 슬래시 커맨드)를 자동 활성화합니다.
|
|
40
|
-
|
|
41
|
-
---
|
|
42
|
-
|
|
43
|
-
## mimi-seed notes
|
|
44
|
-
|
|
45
|
-
git 커밋 내역으로 앱 스토어 릴리즈 노트를 자동 생성합니다.
|
|
46
|
-
|
|
47
|
-
```bash
|
|
48
|
-
# 기본: 최신 태그 이후 커밋 → 간결/상세/마케팅 3 톤 생성
|
|
49
|
-
mimi-seed notes
|
|
50
|
-
|
|
51
|
-
# 태그 범위 지정
|
|
52
|
-
mimi-seed notes --from v1.2.0 --to HEAD
|
|
53
|
-
|
|
54
|
-
# 다국어 동시 생성 (AI 필요)
|
|
55
|
-
mimi-seed notes --locale ko,en-US,ja
|
|
56
|
-
|
|
57
|
-
# 생성 후 Play Store 바로 적용
|
|
58
|
-
mimi-seed notes --apply
|
|
59
|
-
|
|
60
|
-
# CI 모드 (프롬프트 없음)
|
|
61
|
-
mimi-seed notes --no-interactive --apply
|
|
62
|
-
```
|
|
63
|
-
|
|
64
|
-
**AI 생성 활성화** (`ANTHROPIC_API_KEY` 설정 시):
|
|
65
|
-
```bash
|
|
66
|
-
export ANTHROPIC_API_KEY=sk-ant-...
|
|
67
|
-
mimi-seed notes --locale ko,en-US,ja
|
|
68
|
-
```
|
|
69
|
-
|
|
70
|
-
설정하지 않으면 커밋 메시지 자동 포맷팅으로 동작합니다.
|
|
71
|
-
|
|
72
|
-
### 옵션
|
|
73
|
-
|
|
74
|
-
| 옵션 | 기본값 | 설명 |
|
|
75
|
-
|------|--------|------|
|
|
76
|
-
| `--from <ref>` | 최신 태그 | 시작 커밋 또는 태그 |
|
|
77
|
-
| `--to <ref>` | `HEAD` | 끝 커밋 |
|
|
78
|
-
| `--locale <list>` | `ko,en-US` | 다국어 로케일 (쉼표 구분) |
|
|
79
|
-
| `--apply` | false | 생성 후 스토어에 바로 적용 |
|
|
80
|
-
| `--no-interactive` | false | CI 모드 (프롬프트 없음) |
|
|
81
|
-
| `--limit <n>` | 30 | 최대 커밋 수 |
|
|
82
|
-
|
|
83
|
-
---
|
|
84
|
-
|
|
85
|
-
## mimi-seed check
|
|
86
|
-
|
|
87
|
-
계정 연결 전에는 현재 저장소를 읽기 전용으로 검사하고, 연결 후에는 원격 Readiness 점수와 블로커를
|
|
88
|
-
확인합니다. `--local`은 연결 상태와 관계없이 로컬 검사만 실행합니다.
|
|
89
|
-
|
|
90
|
-
```bash
|
|
91
|
-
mimi-seed check
|
|
92
|
-
|
|
93
|
-
# 로그인 없이 저장소만 검사
|
|
94
|
-
mimi-seed check --local
|
|
95
|
-
|
|
96
|
-
# 모노레포의 특정 앱 검사
|
|
97
|
-
mimi-seed check --local --path apps/mobile
|
|
98
|
-
|
|
99
|
-
# CI에서 블로커 있으면 exit 1
|
|
100
|
-
mimi-seed check --local --fail-on-blocker
|
|
101
|
-
|
|
102
|
-
# JSON 보고서
|
|
103
|
-
mimi-seed check --local --json
|
|
104
|
-
```
|
|
105
|
-
|
|
106
|
-
### 옵션
|
|
107
|
-
|
|
108
|
-
| 옵션 | 설명 |
|
|
109
|
-
|------|------|
|
|
110
|
-
| `--app <id>` | 앱 ID 지정 (기본: 첫 번째 등록 앱) |
|
|
111
|
-
| `--local` | 로그인 없이 현재 저장소만 검사 |
|
|
112
|
-
| `--path <dir>` | 로컬 검사 대상 경로 (기본: 현재 폴더) |
|
|
113
|
-
| `--json` | 로컬 검사 결과를 JSON으로 출력 |
|
|
114
|
-
| `--fail-on-blocker` | 블로커 존재 시 exit 1 (CI/CD용) |
|
|
115
|
-
|
|
116
|
-
---
|
|
117
|
-
|
|
118
|
-
## mimi-seed doctor
|
|
119
|
-
|
|
120
|
-
로컬 환경 전체를 진단합니다.
|
|
3
|
+
Find mobile release risks before connecting store accounts.
|
|
121
4
|
|
|
122
5
|
```bash
|
|
123
|
-
mimi-seed
|
|
124
|
-
# ✓ 토큰 저장됨 prs_abc1... (2026-04-25)
|
|
125
|
-
# ✓ 엔드포인트 https://mimi-seed.pryzm.gg/api/mcp
|
|
126
|
-
# ✓ Mimi Seed 서버 연결됨 앱 2개
|
|
127
|
-
#
|
|
128
|
-
# ── 로컬 환경 ──
|
|
129
|
-
# ✓ Node.js v22.17.0
|
|
130
|
-
# ✓ Git 저장소 최신 태그: v1.3.0
|
|
131
|
-
# ⚠ ANTHROPIC_API_KEY 없음 설정 시 AI 릴리즈 노트/리뷰 답변 생성 가능
|
|
132
|
-
#
|
|
133
|
-
# ── 앱 감지 ──
|
|
134
|
-
# ✓ MyApp android:com.example.myapp ios:com.example.myapp
|
|
6
|
+
npx -y mimi-seed@latest check --local
|
|
135
7
|
```
|
|
136
8
|
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
9
|
+
Run in an Expo, React Native, Android, iOS or Unity app repository. Requires Node 20+.
|
|
10
|
+
Release Doctor reports identifiers, Target API and detectable Play Billing evidence with suggested actions.
|
|
11
|
+
Unresolved evidence remains a warning. A local pass does not guarantee store approval.
|
|
140
12
|
|
|
141
|
-
|
|
13
|
+
The checker is bundled; it does not install the full MCP server. Optional usage measurement is off by
|
|
14
|
+
default. See `mimi-seed telemetry --help` and the [privacy notice](https://mimi-seed.pryzm.gg/privacy/sdk-usage).
|
|
142
15
|
|
|
143
|
-
|
|
144
|
-
# 대화형 — 리뷰 입력 후 답변 생성
|
|
145
|
-
mimi-seed review
|
|
16
|
+
## Next steps
|
|
146
17
|
|
|
147
|
-
|
|
148
|
-
|
|
18
|
+
- Connect store checks: `npx mimi-seed init`, then `npx mimi-seed setup`.
|
|
19
|
+
- Repeat in CI: `npx mimi-seed check --local --fail-on-blocker`.
|
|
20
|
+
- Switch output language: `mimi-seed lang en`.
|
|
21
|
+
- Full options: `mimi-seed <command> --help`.
|
|
149
22
|
|
|
150
|
-
|
|
151
|
-
|
|
23
|
+
[Claude Code / Codex installation](https://github.com/jeonghwanko/mimi-seed-sdk#30-second-setup)
|
|
24
|
+
· [CI workflow and badge](https://github.com/jeonghwanko/mimi-seed-sdk/blob/main/docs/user-guide/release-doctor-ci.md)
|
|
25
|
+
· [Validation examples](https://mimi-seed.pryzm.gg/guides/validation-examples)
|
|
152
26
|
|
|
153
|
-
|
|
154
|
-
mimi-seed review --text "버그 있어요" --rating 2 \
|
|
155
|
-
--apply --package-name com.example.app --review-id <reviewId>
|
|
156
|
-
```
|
|
157
|
-
|
|
158
|
-
### 옵션
|
|
159
|
-
|
|
160
|
-
| 옵션 | 기본값 | 설명 |
|
|
161
|
-
|------|--------|------|
|
|
162
|
-
| `--text <내용>` | (프롬프트) | 리뷰 원문 |
|
|
163
|
-
| `--rating <1-5>` | — | 별점 (맥락용) |
|
|
164
|
-
| `--tone <tone>` | `friendly` | `friendly` / `professional` / `empathetic` / `brief` |
|
|
165
|
-
| `--language <코드>` | `ko` | 답변 언어 (`ko`, `en`, `ja` 등) |
|
|
166
|
-
| `--app-name <이름>` | — | 앱 이름 (프롬프트 맥락용) |
|
|
167
|
-
| `--apply` | false | 답변을 Play Store에 바로 게시 |
|
|
168
|
-
| `--review-id <id>` | — | 게시 대상 리뷰 ID (`--apply` 시 필요) |
|
|
169
|
-
| `--package-name <p>` | — | Android 패키지명 (`--apply` 시 필요) |
|
|
170
|
-
| `--no-interactive` | false | CI 모드 (프롬프트 없음) |
|
|
171
|
-
|
|
172
|
-
> AI 생성 답변은 초안입니다. 게시 전 반드시 검토하세요.
|
|
173
|
-
|
|
174
|
-
---
|
|
175
|
-
|
|
176
|
-
## mimi-seed setup
|
|
177
|
-
|
|
178
|
-
가진 계정을 **한 번에** 연결하는 안내형 마법사입니다. 연결 상태를 먼저 보여주고, 아직 안 된 것만 순서대로
|
|
179
|
-
물어봅니다. 각 항목에서 `?` 를 누르면 그 토큰을 **어디서 어떻게 발급받는지** 알려줍니다.
|
|
180
|
-
|
|
181
|
-
```bash
|
|
182
|
-
mimi-seed setup # 안내를 따라가며 연결
|
|
183
|
-
mimi-seed setup --only jenkins # 특정 항목만
|
|
184
|
-
mimi-seed setup --reconnect appstore # 이미 연결된 것도 다시 설정
|
|
185
|
-
mimi-seed setup --fail-on-missing # 필수 자격증명 없으면 exit 1 (CI 게이트)
|
|
186
|
-
```
|
|
187
|
-
|
|
188
|
-
이미 연결된 항목은 건너뛰므로 중간에 그만두고 나중에 다시 실행해도 됩니다.
|
|
189
|
-
비TTY / CI 환경에서는 아무것도 묻지 않고 상태표만 출력합니다.
|
|
190
|
-
전체 레퍼런스: [`docs/credentials.md`](../../docs/credentials.md)
|
|
191
|
-
|
|
192
|
-
---
|
|
193
|
-
|
|
194
|
-
## mimi-seed auth
|
|
195
|
-
|
|
196
|
-
자격증명을 **개별로** 인증합니다. 실제 로직은 `@yoonion/mimi-seed-mcp` 의 `mimi-seed-*-auth` CLI 에 있고,
|
|
197
|
-
이 명령은 그걸 호출하는 통합 front door 입니다.
|
|
198
|
-
|
|
199
|
-
```bash
|
|
200
|
-
mimi-seed auth login # Google OAuth — 브라우저 로그인 (Firebase/AdMob/Play/Ads/GSC/GA4/IAM/BigQuery)
|
|
201
|
-
mimi-seed auth status # 현재 토큰 상태 (--all: 모든 자격증명 보유 여부)
|
|
202
|
-
mimi-seed auth refresh # refresh_token으로 갱신만 시도 (브라우저 X)
|
|
203
|
-
mimi-seed auth logout # 토큰 삭제
|
|
27
|
+
## Commands
|
|
204
28
|
|
|
205
|
-
|
|
206
|
-
mimi-seed auth playstore # Play 서비스 계정 (선택 — OAuth로도 대부분 동작)
|
|
207
|
-
mimi-seed auth bigquery # BigQuery 서비스 계정 (선택)
|
|
208
|
-
mimi-seed auth jenkins # Jenkins (저장 전 서버 프로브)
|
|
209
|
-
mimi-seed auth ci # GitHub Actions / GitLab CI
|
|
210
|
-
mimi-seed auth googleads # Google Ads
|
|
211
|
-
mimi-seed auth meta # Facebook · Instagram · Threads 통합 진입
|
|
212
|
-
mimi-seed auth facebook # Facebook 페이지
|
|
213
|
-
mimi-seed auth instagram # Instagram
|
|
214
|
-
mimi-seed auth threads # Threads
|
|
215
|
-
```
|
|
216
|
-
|
|
217
|
-
### App Store Connect 재인증과 Vendor Number
|
|
218
|
-
|
|
219
|
-
`mimi-seed auth appstore`는 새 API key를 Apple API로 검증한 뒤에만 저장합니다. 기존 연결이 있으면 첫
|
|
220
|
-
질문에서 다음 중 하나를 선택합니다.
|
|
221
|
-
|
|
222
|
-
| 입력 | 동작 |
|
|
29
|
+
| Command | Purpose |
|
|
223
30
|
|---|---|
|
|
224
|
-
|
|
|
225
|
-
|
|
|
226
|
-
|
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
---
|
|
246
|
-
|
|
247
|
-
## mimi-seed deploy
|
|
248
|
-
|
|
249
|
-
CI 빌드부터 스토어 적용까지 출시 파이프라인 전체를 자동화합니다. 단계: **init → verify(블로커 점검) → notes(릴리즈 노트) → apply(스토어 적용) → promote**.
|
|
250
|
-
|
|
251
|
-
```bash
|
|
252
|
-
# Android 기본 배포 (CI 빌드 자동 감지 → Play Store)
|
|
253
|
-
mimi-seed deploy
|
|
254
|
-
|
|
255
|
-
# iOS 배포
|
|
256
|
-
mimi-seed deploy --platform ios
|
|
257
|
-
|
|
258
|
-
# 이미 빌드된 버전으로 노트만 적용 (CI 빌드 건너뜀)
|
|
259
|
-
mimi-seed deploy --skip-build --version-code 142
|
|
260
|
-
|
|
261
|
-
# 실제 배포 없이 파이프라인만 테스트
|
|
262
|
-
mimi-seed deploy --dry-run
|
|
263
|
-
```
|
|
264
|
-
|
|
265
|
-
지원 CI: **Jenkins · GitHub Actions · GitLab CI** (`--ci`로 강제 선택, 기본은 자동 감지).
|
|
266
|
-
|
|
267
|
-
### CI 설정 등록 (최초 1회)
|
|
268
|
-
|
|
269
|
-
```bash
|
|
270
|
-
mimi-seed deploy setup-jenkins # Jenkins URL·토큰·잡 이름 대화형 등록
|
|
271
|
-
mimi-seed deploy setup-github # GitHub Actions repo·workflow 등록
|
|
272
|
-
mimi-seed deploy setup-gitlab # GitLab project·trigger 등록
|
|
273
|
-
```
|
|
274
|
-
|
|
275
|
-
### 옵션
|
|
276
|
-
|
|
277
|
-
| 옵션 | 기본값 | 설명 |
|
|
278
|
-
|------|--------|------|
|
|
279
|
-
| `--platform android\|ios` | `android` | 배포 플랫폼 |
|
|
280
|
-
| `--app <id>` | 첫 등록 앱 | 앱 ID 지정 |
|
|
281
|
-
| `--version-code <n>` | — | 빌드 번호 직접 지정 (`--skip-build`와 함께) |
|
|
282
|
-
| `--from <ref>` / `--to <ref>` | 최신 태그 / `HEAD` | 릴리즈 노트용 커밋 범위 |
|
|
283
|
-
| `--language <코드>` | `ko-KR` | 릴리즈 노트 언어 |
|
|
284
|
-
| `--dry-run` | false | 실제 배포 없이 파이프라인 테스트 |
|
|
285
|
-
| `--skip-build` | false | CI 빌드 건너뜀 (`--version-code` 필수) |
|
|
286
|
-
| `--ci jenkins\|github\|gitlab` | auto | CI 강제 선택 |
|
|
287
|
-
| `--workflow <file>` | — | GitHub workflow 파일 (예: `deploy.yml`) |
|
|
288
|
-
| `--ref <branch\|tag>` | `main` | GitHub/GitLab 브랜치/태그 |
|
|
289
|
-
|
|
290
|
-
---
|
|
291
|
-
|
|
292
|
-
## CI/CD 사용
|
|
293
|
-
|
|
294
|
-
### 방법 1 — 재사용 가능 워크플로우 (권장)
|
|
295
|
-
|
|
296
|
-
`.github/workflows/release.yml` 파일 하나만 추가하면 끝납니다.
|
|
297
|
-
|
|
298
|
-
```yaml
|
|
299
|
-
name: App Release
|
|
300
|
-
|
|
301
|
-
on:
|
|
302
|
-
push:
|
|
303
|
-
tags: ['v*'] # v1.2.3 태그 push 시 자동 실행
|
|
304
|
-
workflow_dispatch: # 수동 실행 버튼
|
|
305
|
-
|
|
306
|
-
jobs:
|
|
307
|
-
release:
|
|
308
|
-
uses: jeonghwanko/mimi-seed/.github/workflows/mimi-seed-release.yml@master
|
|
309
|
-
with:
|
|
310
|
-
locales: 'ko,en-US' # 다국어 릴리즈 노트
|
|
311
|
-
apply-notes: true # 스토어에 자동 적용
|
|
312
|
-
fail-on-blocker: true # 블로커 있으면 실패
|
|
313
|
-
secrets:
|
|
314
|
-
MIMI_SEED_TOKEN: ${{ secrets.MIMI_SEED_TOKEN }}
|
|
315
|
-
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} # 선택: AI 생성
|
|
316
|
-
```
|
|
317
|
-
|
|
318
|
-
### 방법 2 — 기존 워크플로우에 스텝 추가
|
|
319
|
-
|
|
320
|
-
```yaml
|
|
321
|
-
- name: 릴리즈 노트 생성 및 적용
|
|
322
|
-
env:
|
|
323
|
-
MIMI_SEED_TOKEN: ${{ secrets.MIMI_SEED_TOKEN }}
|
|
324
|
-
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
|
|
325
|
-
run: |
|
|
326
|
-
npx mimi-seed notes --apply --no-interactive --locale ko,en-US
|
|
327
|
-
npx mimi-seed check --fail-on-blocker
|
|
328
|
-
```
|
|
329
|
-
|
|
330
|
-
`MIMI_SEED_TOKEN`은 [대시보드 → API 토큰](https://mimi-seed.pryzm.gg/workspace/api-tokens)에서 발급하세요.
|
|
331
|
-
|
|
332
|
-
---
|
|
333
|
-
|
|
334
|
-
## Claude Code / Codex MCP 등록
|
|
335
|
-
|
|
336
|
-
`init` 후 1회 실행:
|
|
337
|
-
|
|
338
|
-
```bash
|
|
339
|
-
claude mcp add --transport http mimi-seed https://mimi-seed.pryzm.gg/api/mcp \
|
|
340
|
-
--header "Authorization: Bearer <PAT>"
|
|
341
|
-
```
|
|
342
|
-
|
|
343
|
-
Codex는 자동 쓰기 명령을 사용할 수 있습니다.
|
|
344
|
-
|
|
345
|
-
```bash
|
|
346
|
-
mimi-seed mcp codex --write
|
|
347
|
-
```
|
|
348
|
-
|
|
349
|
-
이 명령은 `mimi-seed-remote` HTTP 항목과 `bearer_token_env_var = "MIMI_SEED_TOKEN"`을 기록하며 PAT 자체는
|
|
350
|
-
`config.toml`에 쓰지 않습니다. Codex를 실행하는 환경에 `MIMI_SEED_TOKEN`을 설정하고 Codex를 다시 시작하세요.
|
|
351
|
-
|
|
352
|
-
등록 후 Claude Code 또는 Codex에서 대화로 제어:
|
|
353
|
-
|
|
354
|
-
```
|
|
355
|
-
"내 앱 출시 준비됐어?"
|
|
356
|
-
"릴리즈 노트 써줘"
|
|
357
|
-
"스크린샷 검수해줘"
|
|
358
|
-
```
|
|
359
|
-
|
|
360
|
-
---
|
|
361
|
-
|
|
362
|
-
## 앱 감지 대상
|
|
363
|
-
|
|
364
|
-
- `app.json` / `app.config.json` (Expo, React Native)
|
|
365
|
-
- `**/build.gradle(.kts)` — `applicationId`
|
|
366
|
-
- `**/Info.plist` — `CFBundleIdentifier`
|
|
367
|
-
- `**/project.pbxproj` — `PRODUCT_BUNDLE_IDENTIFIER`
|
|
368
|
-
- `package.json` — 앱 이름 보충
|
|
369
|
-
|
|
370
|
-
---
|
|
371
|
-
|
|
372
|
-
## 환경변수
|
|
373
|
-
|
|
374
|
-
| 변수 | 설명 |
|
|
375
|
-
|------|------|
|
|
376
|
-
| `MIMI_SEED_TOKEN` | PAT 토큰 — CI/CD 무인증 모드 |
|
|
377
|
-
| `MIMI_SEED_WEB_BASE` | 서버 주소 (기본: `https://mimi-seed.pryzm.gg`) |
|
|
378
|
-
| `ANTHROPIC_API_KEY` | AI 릴리즈 노트/리뷰 답변 생성 활성화 (선택) |
|
|
379
|
-
| `DEBUG` | `1` 설정 시 오류 스택 트레이스 출력 |
|
|
380
|
-
|
|
381
|
-
---
|
|
382
|
-
|
|
383
|
-
## 관련 패키지
|
|
384
|
-
|
|
385
|
-
- [`@yoonion/mimi-seed-mcp`](https://www.npmjs.com/package/@yoonion/mimi-seed-mcp) — Claude Code / Codex / Cursor용 로컬 MCP 서버 (Firebase · Play Store · App Store · AdMob)
|
|
386
|
-
- [mimi-seed.pryzm.gg/tool](https://mimi-seed.pryzm.gg/tool) — 웹 콘솔 (스크린샷 검수, Copy Studio, 팀 워크스페이스)
|
|
31
|
+
| check | Local or connected release readiness |
|
|
32
|
+
| init | Connect the app and create agent context |
|
|
33
|
+
| setup | Guided account setup |
|
|
34
|
+
| telemetry | Optional usage measurement consent |
|
|
35
|
+
| doctor | Diagnose the environment and connections |
|
|
36
|
+
| notes | Generate release notes from Git history |
|
|
37
|
+
| review | Draft review replies |
|
|
38
|
+
| deploy | Orchestrate CI and store operations |
|
|
39
|
+
| auth | Manage individual connections |
|
|
40
|
+
| lang | Select English or Korean |
|
|
41
|
+
|
|
42
|
+
## 한국어
|
|
43
|
+
|
|
44
|
+
앱 저장소에서 위 명령을 실행하면 로그인 없이 출시 위험을 점검합니다.
|
|
45
|
+
[한국어 사용 가이드](https://github.com/jeonghwanko/mimi-seed-sdk/blob/main/README.ko.md)를 참고하세요.
|
|
46
|
+
|
|
47
|
+
## License
|
|
48
|
+
|
|
49
|
+
Licensed under [PolyForm Noncommercial](https://github.com/jeonghwanko/mimi-seed-sdk/blob/main/LICENSE).
|
|
50
|
+
Commercial use requires a separate license.
|