npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

mimi-seed

v0.2.8

Published

Mimi Seed CLI — Claude Code에서 앱 출시 운영을 관리합니다.

Readme

mimi-seed

Mimi Seed CLI — Claude Code에서 앱 출시를 자동화하는 커맨드라인 도구.

git log에서 릴리즈 노트를 생성하고, 출시 전 위험 요소를 자동 점검하며, Play Store / App Store에 바로 적용합니다.

빠른 시작

npx mimi-seed init

현재 디렉토리에서 Android/iOS 앱을 자동 감지해 Mimi Seed 워크스페이스에 등록하고, PAT를 ~/.mimi-seed/config.json에 저장합니다.

명령어

| 명령어 | 설명 | |--------|------| | mimi-seed init | 프로젝트를 Mimi Seed에 연결 (PAT 발급 + 앱 자동 등록) | | mimi-seed status | 연결 상태 + 등록 앱 목록 | | mimi-seed doctor | 환경 진단 (토큰·Git·앱·CI 한 번에 체크) | | mimi-seed check | 출시 전 Readiness 점검 (점수 + 블로커) | | mimi-seed notes | AI 릴리즈 노트 생성 (git log → 3 톤 → 다국어 → 적용) | | mimi-seed review | AI 리뷰 답변 초안 생성 및 Play Store 게시 | | mimi-seed logout | 로컬 설정 삭제 |


mimi-seed notes

git 커밋 내역으로 앱 스토어 릴리즈 노트를 자동 생성합니다.

# 기본: 최신 태그 이후 커밋 → 간결/상세/마케팅 3 톤 생성
mimi-seed notes

# 태그 범위 지정
mimi-seed notes --from v1.2.0 --to HEAD

# 다국어 동시 생성 (AI 필요)
mimi-seed notes --locale ko,en-US,ja

# 생성 후 Play Store 바로 적용
mimi-seed notes --apply

# CI 모드 (프롬프트 없음)
mimi-seed notes --no-interactive --apply

AI 생성 활성화 (ANTHROPIC_API_KEY 설정 시):

export ANTHROPIC_API_KEY=sk-ant-...
mimi-seed notes --locale ko,en-US,ja

설정하지 않으면 커밋 메시지 자동 포맷팅으로 동작합니다.

옵션

| 옵션 | 기본값 | 설명 | |------|--------|------| | --from <ref> | 최신 태그 | 시작 커밋 또는 태그 | | --to <ref> | HEAD | 끝 커밋 | | --locale <list> | ko,en-US | 다국어 로케일 (쉼표 구분) | | --apply | false | 생성 후 스토어에 바로 적용 | | --no-interactive | false | CI 모드 (프롬프트 없음) | | --limit <n> | 30 | 최대 커밋 수 |


mimi-seed check

출시 전 Readiness 점수와 블로커를 확인합니다.

mimi-seed check

# CI에서 블로커 있으면 exit 1
mimi-seed check --fail-on-blocker

옵션

| 옵션 | 설명 | |------|------| | --app <id> | 앱 ID 지정 (기본: 첫 번째 등록 앱) | | --fail-on-blocker | 블로커 존재 시 exit 1 (CI/CD용) |


mimi-seed doctor

로컬 환경 전체를 진단합니다.

mimi-seed doctor
# ✓ 토큰 저장됨  prs_abc1...  (2026-04-25)
# ✓ 엔드포인트  https://mimi-seed.pryzm.gg/api/mcp
# ✓ Mimi Seed 서버 연결됨  앱 2개
#
# ── 로컬 환경 ──
# ✓ Node.js  v22.17.0
# ✓ Git 저장소  최신 태그: v1.3.0
# ⚠ ANTHROPIC_API_KEY 없음  설정 시 AI 릴리즈 노트/리뷰 답변 생성 가능
#
# ── 앱 감지 ──
# ✓ MyApp  android:com.example.myapp  ios:com.example.myapp

mimi-seed review

스토어 리뷰에 대한 AI 답변 초안을 생성합니다. ANTHROPIC_API_KEY 필요.

# 대화형 — 리뷰 입력 후 답변 생성
mimi-seed review

# 리뷰 텍스트 직접 지정
mimi-seed review --text "앱이 자꾸 튕겨요" --rating 2

# 톤·언어 지정
mimi-seed review --text "Great app!" --rating 5 --tone professional --language en

# 생성 후 Play Store 바로 게시
mimi-seed review --text "버그 있어요" --rating 2 \
  --apply --package-name com.example.app --review-id <reviewId>

옵션

| 옵션 | 기본값 | 설명 | |------|--------|------| | --text <내용> | (프롬프트) | 리뷰 원문 | | --rating <1-5> | — | 별점 (맥락용) | | --tone <tone> | friendly | friendly / professional / empathetic / brief | | --language <코드> | ko | 답변 언어 (ko, en, ja 등) | | --app-name <이름> | — | 앱 이름 (프롬프트 맥락용) | | --apply | false | 답변을 Play Store에 바로 게시 | | --review-id <id> | — | 게시 대상 리뷰 ID (--apply 시 필요) | | --package-name <p> | — | Android 패키지명 (--apply 시 필요) | | --no-interactive | false | CI 모드 (프롬프트 없음) |

AI 생성 답변은 초안입니다. 게시 전 반드시 검토하세요.


CI/CD 사용

방법 1 — 재사용 가능 워크플로우 (권장)

.github/workflows/release.yml 파일 하나만 추가하면 끝납니다.

name: App Release

on:
  push:
    tags: ['v*']        # v1.2.3 태그 push 시 자동 실행
  workflow_dispatch:    # 수동 실행 버튼

jobs:
  release:
    uses: jeonghwanko/mimi-seed/.github/workflows/mimi-seed-release.yml@master
    with:
      locales: 'ko,en-US'      # 다국어 릴리즈 노트
      apply-notes: true         # 스토어에 자동 적용
      fail-on-blocker: true     # 블로커 있으면 실패
    secrets:
      MIMI_SEED_TOKEN: ${{ secrets.MIMI_SEED_TOKEN }}
      ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}   # 선택: AI 생성

방법 2 — 기존 워크플로우에 스텝 추가

- name: 릴리즈 노트 생성 및 적용
  env:
    MIMI_SEED_TOKEN: ${{ secrets.MIMI_SEED_TOKEN }}
    ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
  run: |
    npx mimi-seed notes --apply --no-interactive --locale ko,en-US
    npx mimi-seed check --fail-on-blocker

MIMI_SEED_TOKEN대시보드 → API 토큰에서 발급하세요.


Claude Code MCP 등록

init 후 1회 실행:

claude mcp add --transport http mimi-seed https://mimi-seed.pryzm.gg/api/mcp \
  --header "Authorization: Bearer <PAT>"

등록 후 Claude Code에서 대화로 제어:

"내 앱 출시 준비됐어?"
"릴리즈 노트 써줘"
"스크린샷 검수해줘"

앱 감지 대상

  • app.json / app.config.json (Expo, React Native)
  • **/build.gradle(.kts)applicationId
  • **/Info.plistCFBundleIdentifier
  • **/project.pbxprojPRODUCT_BUNDLE_IDENTIFIER
  • package.json — 앱 이름 보충

환경변수

| 변수 | 설명 | |------|------| | MIMI_SEED_TOKEN | PAT 토큰 — CI/CD 무인증 모드 | | MIMI_SEED_WEB_BASE | 서버 주소 (기본: https://mimi-seed.pryzm.gg) | | ANTHROPIC_API_KEY | AI 릴리즈 노트/리뷰 답변 생성 활성화 (선택) | | DEBUG | 1 설정 시 오류 스택 트레이스 출력 |


관련 패키지

  • @yoonion/mimi-seed-mcp — Claude Desktop / Cursor용 로컬 MCP 서버 (Firebase · Play Store · App Store · AdMob)
  • mimi-seed.pryzm.gg — 웹 콘솔 (스크린샷 검수, Copy Studio, 팀 워크스페이스)