submit-store-review
Submit Store Review guides you through submitting pre-built iOS and Android candidates to their respective app stores for review. It handles candidate selection, pre-submission verification, metadata synchronization, and rejection resubmission—keeping build creation separate from the submission workflow. The skill confirms metadata alignment, validates in-app purchases, and verifies final store status before and after submission.
Submit Store Review submits stable iOS or Android builds to App Store Connect or Google Play Console for review.
AI-generated summary based on this skill's SKILL.md
Install
K9i-0/ccpocket/submit-store-review · repository language: Dart
git clone https://github.com/K9i-0/ccpocket
cp -r ccpocket/.claude/skills/submit-store-review ~/.claude/skills/submit-store-reviewFrequently asked questions
AI-generated answers based on this skill's SKILL.md and metadata
How do I submit a build to Google Play Console?
Submit Store Review walks you through submitting pre-built Android candidates to Google Play Console. Select your candidate build, verify metadata and in-app purchases are aligned with store requirements, then initiate submission. The skill keeps build creation separate from the submission workflow, so you can validate your candidate before pushing it to review.
How do I submit an iOS app for review?
Submit Store Review guides you through submitting pre-built iOS candidates to App Store Connect. Choose your candidate build, confirm metadata synchronization and in-app purchase configuration, then submit for review. The skill handles pre-submission verification to ensure your app meets store requirements before entering the review queue.
What should I do to resubmit an app after store rejection?
Submit Store Review supports resubmission after rejection by letting you select a new or updated candidate build and verify all metadata and in-app purchases align with store feedback. The skill confirms your changes before resubmitting, helping you address rejection reasons and re-enter the review queue on both iOS and Android.
Can Submit Store Review help me select and validate builds?
Yes. Submit Store Review lets you select candidate builds before store submission and validate them against store requirements. It verifies metadata alignment, checks in-app purchase configuration, and confirms your candidate is ready for review—keeping the submission workflow separate from build creation.
How do I verify my app's submission status?
Submit Store Review confirms your app entered the review queue and lets you verify final store status after submission. It provides visibility into whether your submission was accepted and is awaiting review on App Store Connect or Google Play Console.
What license does Submit Store Review use?
Submit Store Review is released under the MIT license, allowing free use, modification, and distribution with minimal restrictions.
SKILL.md
rendered from the published skill — quoted content, verbatim
Submit Store Review
release-app で作成済みの候補から、安定したビルドをストア審査へ出す。新しいタグ、バージョン、ビルドは作成しない。
責務を分ける
- 新しいリリースを作る必要がある場合は
$release-appを使う。 - 説明文やスクリーンショット自体を作り直す場合は
$update-storeを使う。 - このスキルでは候補選定、審査前確認、既存ビルドの提出、却下後の再提出を行う。
- ストア画面の操作には
$computer-use:computer-useを使い、CLIやAPIで確認できる情報は先にそちらで確認する。
1. 審査候補を決める
対象プラットフォームとバージョンが明示されていなければ、候補を調査してユーザーへ推奨する。最新ビルドを自動的に選ばず、より新しいカジュアルリリースを飛ばしてもよい。
git status --short
git tag -l 'ios/v*' --sort=-v:refname | head -10
git tag -l 'android/v*' --sort=-v:refname | head -10
gh run list --workflow=ios-release.yml --limit 10 --json databaseId,headBranch,status,conclusion,url,createdAt
gh run list --workflow=android-release.yml --limit 10 --json databaseId,headBranch,status,conclusion,url,createdAt
候補は以下を満たすものにする。
- 対象タグのリリースworkflowが
success - ストア側でビルド処理が完了している
- TestFlightまたは内部テストで既知の重大な不具合がなく、後続hotfixを待っていない
- ユーザーが安定版として明示的に選べる状態になっている
- バージョン
X.Y.Zとビルド番号Nがタグ
(truncated - see the full file via the links below)
Read as markdown · JSON record · Browse the source repository
File tree — 4 files
.claude/skills/submit-store-review/SKILL.md
.claude/skills/submit-store-review/agents/openai.yaml
.claude/skills/submit-store-review/references/android.md
.claude/skills/submit-store-review/references/ios.md