suede-play-release
정보
이 스킬은 Claude 인터페이스에서 직접 Android 앱의 Google Play 출시 과정을 자동화하며, AAB 업로드, 트랙 승격, 단계적 출시, 현지화된 릴리스 노트를 처리합니다. 초기 접근 권한 부여를 제외하고, 검증을 위해 Play Developer API와 연동되며 서비스 계정 자격 증명을 관리합니다. 앱 빌드, ASO, CI 검사 또는 iOS 출시가 아닌 배포 작업에 사용하세요.
빠른 설치
Claude Code
추천npx skills add JasonColapietro/suede-creator-skills -a claude-code/plugin add https://github.com/JasonColapietro/suede-creator-skillsgit clone https://github.com/JasonColapietro/suede-creator-skills.git ~/.claude/skills/suede-play-releaseClaude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요
문서
Suede Play Release
Iron Law: the Play API decides what shipped, not a green fastlane summary.
Every claim about a live release is a readback or it is a guess.
Gate policy — advisory, not blocking
Run every check and report results honestly. Verdicts are advice attached to the work, never a control that changes it. A failed check changes what you report, never what you do. The one exception is the production halt in Step 7: a public release is irreversible for the users who get it, so present the options and let the user pick.
Step 0 — Preflight the credential before anything else
Never assume publishing works. Prove it with a real API call that changes nothing: open an edit and delete it.
python3 scripts/play-preflight.py
Three outcomes, three different actions:
| Result | Meaning | Do |
|---|---|---|
| token fails | key is wrong or revoked | rotate, see Step 1 |
| HTTP 401/403 on the edit | Play Console has not granted the account | Step 1's grant |
| edit opens and deletes | publishing is wired | continue |
A 403 here is the normal state of a brand-new service account, not a bug.
Step 1 — Credentials
Use a dedicated publishing service account, separate from any billing or purchase-verification account. A credential that can push releases should not also be able to void purchases. Give it no cloud IAM roles: all of its authority comes from the Play Console grant, so before that grant the key is inert.
Store the JSON in the login Keychain base64-encoded:
security add-generic-password -U -s GOOGLE_PLAY_SERVICE_ACCOUNT_JSON -a <account> -w
Run it with -w last and no value so it prompts and the key never enters shell
history. Paste the base64, not the raw JSON.
Base64 is load-bearing. security hex-encodes any multi-line secret on read, so
raw JSON comes back in one of two shapes depending on content. Base64 gives one
shape and one decode path.
Granting access is a Play Console UI action and cannot be done from the API: invite the service-account email under Users and permissions with release permissions on the app. Report this to the user as a step only they can take, with the exact email and permissions, then re-run Step 0.
Step 2 — Pull before every command
fastlane reads the working tree, not the remote. A stale checkout produces a
run that succeeds and does nothing, because a missing changelog is a skip rather
than an error.
git -C <repo> pull --ff-only && git -C <repo> log --oneline -1
If fastlane offers to set itself up, the Fastfile is not on disk. Answer no and pull; accepting scaffolds an empty config over the real one.
Step 3 — Write the changelog first
Release notes live at
fastlane/metadata/android/<locale>/changelogs/<versionCode>.txt, one file per
locale per versionCode.
A missing file is not an error. Play silently serves the previous version's notes, so users read stale text against a new build and nothing tells you. Write one for every locale that has listing copy, before uploading.
for l in $(ls fastlane/metadata/android); do
[ -f "fastlane/metadata/android/$l/changelogs/$VC.txt" ] || echo "MISSING: $l"
done
Match each locale's existing register rather than translating the English word for word. Check the limit: 500 characters.
Step 4 — Verify the artifact, never the source tree
A source read is not evidence that a change reached the binary.
jarsigner -verify app/build/outputs/bundle/release/app-release.aab | head -1
grep -oE 'android:version(Code|Name)="[^"]*"' \
app/build/intermediates/merged_manifests/release/*/AndroidManifest.xml
When the release changes an asset, hash it on both sides and require a match:
unzip -p <aab> 'base/res/*xxxhdpi*ic_launcher.png' | shasum -a 256
shasum -a 256 app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
jarsigner reporting a self-signed certificate is correct under Play App
Signing, which re-signs with the real release key.
Step 5 — Upload to a testing track first
fastlane android internal
Build uploads carry the binary and its changelogs only. Listing text, icon, feature graphic and screenshots move through a separate lane, so a routine upload cannot rewrite what the store says about the app.
Step 6 — Promote, never re-upload
Play rejects a second bundle carrying a versionCode it already has. Re-uploading is not a slower path to the same place, it is an error.
Promote the versionCode already on the testing track, which is also the only thing that makes testing-first mean anything: the artifact reaching production is the one that was validated, bit for bit.
upload_to_play_store(
version_code: <code>, track: "internal", track_promote_to: "production",
skip_upload_aab: true, skip_upload_apk: true,
release_status: "inProgress", rollout: "0.1"
)
Step 7 — Production halt
A production rollout is irreversible for the users who receive it. Stop and present:
Ready to promote versionCode <n> (<name>) to production at <pct>% of users.
Currently live: versionCode <m>. <one line on what users will notice>.
1. Promote at <pct>%
2. Promote at a different fraction
3. Upload to a testing track only
4. Hold
Then wait. Proceed on an explicit answer, and treat a standing instruction to ship as that answer.
Step 8 — Read back what is actually live
The fastlane summary reports that the request succeeded, not what the release
became. Parameters like track_promote_release_status can differ from the
release_status you set, so read the track:
GET /androidpublisher/v3/applications/<pkg>/edits/<id>/tracks/production
Check three fields and say them plainly:
versionCodes— the build users get.status—inProgressis a staged rollout;completedis everyone.userFraction— absent whencompleted.
A 100% rollout should land as status: completed with no userFraction. A
release sitting at inProgress with userFraction: 1.0 is a different state
that reads the same in a success message. Confirm which one you got.
Also confirm every locale you wrote appears in that release's releaseNotes.
Done means
Every line proven by a command in this run:
- Preflight opened and deleted a real Play edit.
- The AAB verified: signature, versionCode in the merged manifest, and a hash match for any changed asset.
- The track readback shows the expected versionCode, status, and fraction.
- Every locale with listing copy appears in the live release's notes.
Boundaries
- Do not promote to production, raise a rollout, or halt one without an explicit instruction covering that action.
- Do not create the Play Console grant yourself; it is a UI action. Name the email and permissions and hand it to the user.
- Do not print, commit, or copy the service-account JSON, the upload keystore,
or
keystore.propertiesinto a repo. - Do not push listing text, images, or screenshots as part of a build upload. Store copy moves in its own deliberate step.
- Do not report a release state from a fastlane summary. Read the track.
- Do not reuse a billing or purchase-verification service account for publishing.
- Do not edit a changelog for a versionCode already serving users to fix a typo silently; that changes live store copy and belongs in the same confirmation as a rollout change.
Routing
- Need to plan, build, test, or policy-check the app itself -> use
android-app-factory, then return here for delivery. - Need a live Play listing or keyword audit on a shipped app -> use
suede-aso. - Need CI wiring, required checks, or merge gates around the release -> use
suede-ci-gate. - Need branch, worktree, or stale-mirror handling for the release branch -> a private Suede Labs companion, not in this pack: suede-git-hygiene.
- Need the iOS half of the same release -> a private Suede Labs companion, not in this pack: ios-app-store-release.
- Need constants to match across the Android, iOS and web surfaces -> use
suede-parity-contract. - From
android-app-factory: route Play credential setup, upload, track promotion, staged rollout, and live-state verification back here.
GitHub 저장소
자주 묻는 질문
suede-play-release Skill이란 무엇인가요?
suede-play-release은(는) JasonColapietro이(가) 만든 Claude Skill입니다. Skill은 Claude가 필요할 때 불러오는 지침과 리소스를 묶어 추가 프롬프트 없이 suede-play-release 관련 작업을 수행할 수 있게 합니다.
suede-play-release은(는) 어떻게 설치하나요?
이 페이지의 설치 명령을 사용하세요. suede-play-release을(를) Claude Code 플러그인으로 추가하거나 저장소를 skills 디렉터리에 복제한 다음 Claude를 다시 시작해 Skill을 불러옵니다.
suede-play-release은(는) 어떤 카테고리에 속하나요?
suede-play-release은(는) 메타 카테고리에 속합니다.
suede-play-release은(는) 무료로 사용할 수 있나요?
네. suede-play-release은(는) AIMCP에 등록되어 있으며 무료로 설치할 수 있습니다.
연관 스킬
이 스킬은 콘텐츠 콜렉션(Content Collections)을 위한 프로덕션 검증된 설정을 제공합니다. 콘텐츠 콜렉션은 Markdown/MDX 파일을 Zod 검증이 포함된 타입 안전한 데이터 콜렉션으로 변환해주는 TypeScript 최우선 도구입니다. 블로그, 문서 사이트 또는 콘텐츠 중심의 Vite + React 애플리케이션을 구축할 때 타입 안전성과 자동 콘텐츠 검증을 보장하기 위해 사용하세요. Vite 플러그인 구성과 MDX 컴파일부터 배포 최적화 및 스키마 검증에 이르기까지 모든 것을 다룹니다.
이 스킬은 개발자들이 Polymarket 예측 시장 플랫폼을 활용한 애플리케이션을 구축할 수 있도록 지원하며, 거래 및 시장 데이터를 위한 API 통합 기능을 포함합니다. 또한 WebSocket을 통한 실시간 데이터 스트리밍을 제공하여 실시간 거래와 시장 활동을 모니터링할 수 있습니다. 이를 통해 거래 전략을 구현하거나 실시간 시장 업데이트를 처리하는 도구를 생성하는 데 활용할 수 있습니다.
이 스킬은 개발자들이 명령어, 파일, LSP 작업 등 25개 이상의 이벤트 유형에 연결되는 OpenCode 플러그인을 만들 수 있도록 돕습니다. JavaScript/TypeScript 모듈을 위한 플러그인 구조, 이벤트 API 명세, 구현 패턴을 제공합니다. OpenCode AI 어시스턴트의 라이프사이클을 사용자 정의 이벤트 기반 로직으로 가로채거나, 모니터링하거나, 확장해야 할 때 사용하세요.
SGLang은 RadixAttention 프리픽스 캐싱을 활용하여 JSON, 정규식, 에이전트 워크플로우를 위한 고속 구조화 생성에 특화된 고성능 LLM 서빙 프레임워크입니다. 특히 반복되는 프리픽스가 있는 작업에서 상당히 빠른 추론 속도를 제공하여 복잡한 구조화 출력 및 다중 턴 대화에 이상적입니다. 제약 디코딩이 필요하거나 광범위한 프리픽스 공유가 있는 애플리케이션을 구축할 때는 vLLM과 같은 대안보다 SGLang을 선택하십시오.
