One AI-agent-friendly command surface for Google Play, App Store Connect, RevenueCat, and CI release automation.
shipkit guide
shipkit install
shipkit doctor
shipkit agent --jsonMobile release work is scattered across too many places.
You need one tool for Android releases, another for iOS releases, another for subscriptions, and then CI glue to make the whole thing repeatable. Every new app recreates the same setup.
Shipkit does not replace the specialist CLIs. It makes them feel like one product.
| You need | Shipkit uses | Binary |
|---|---|---|
| Android release automation | playconsole-cli | gpc |
| RevenueCat products, offerings, and paywalls | revenuecat-cli | rc |
| App Store Connect and TestFlight | App-Store-Connect-CLI | asc |
Shipkit owns the workflow. Provider CLIs own their APIs.
brew tap AndroidPoet/tap
brew install playconsole-cli
brew install revenuecat-cli
brew install asc
gpc setup --auto
rc login
asc auth login
# Remember which commands go with which provider.# Rebuild CI by hand.# Explain all of this again to every teammate and agent.shipkit guide
shipkit install
shipkit doctor
shipkit ci github
shipkit agent --jsonReadable for humans. Structured for agents. Small enough to trust.
After the first tagged release:
brew tap AndroidPoet/tap
brew install shipkitgo install github.com/AndroidPoet/shipkit/cmd/shipkit@latestcurl -fsSL https://raw.githubusercontent.com/AndroidPoet/shipkit/main/install.sh | shCustom directory:
INSTALL_DIR="$HOME/.local/bin" sh -c "$(curl -fsSL https://raw.githubusercontent.com/AndroidPoet/shipkit/main/install.sh)"Start with the guided flow:
shipkit guideExample:
Shipkit Guide
Answer a few questions and Shipkit will give you the shortest setup path.
App name [My App]: LaunchKit
Platforms (both/android/ios) [both]: both
Use RevenueCat (yes/no) [yes]: yes
CI provider (github/local) [github]: github
Recommended setup
shipkit init "LaunchKit"
shipkit install
shipkit doctor
shipkit ci github
Provider auth
gpc setup --auto
rc login
asc auth login
Release commands
shipkit release android
shipkit release ios
shipkit release all
Or run the commands directly:
shipkit init "LaunchKit"
shipkit install
shipkit doctor
shipkit ci github| Command | Purpose |
|---|---|
shipkit guide | Interactive setup guide |
shipkit agent --json | AI-agent-friendly project context |
shipkit install | Install gpc, rc, and asc under the hood |
shipkit init "My App" | Create .shipkit.yaml |
shipkit doctor [--json] | Check local tool readiness |
shipkit ci github | Generate a GitHub Actions workflow |
shipkit release android | Run Android release flow through gpc |
shipkit release ios | Run iOS release flow through asc |
shipkit release all | Run Android then iOS release flows |
shipkit release ... --dry-run | Print the provider commands without running them |
shipkit launch-check [--json] | Check launch readiness |
shipkit version | Print build metadata |
Shipkit does not call an AI API. It does not need an API key. It does not send your project data anywhere.
Instead, it exposes deterministic context that AI agents, scripts, and CI can parse:
shipkit agent --jsonExample:
{
"schema_version": "1",
"goal": "Make mobile release setup deterministic for humans and AI agents.",
"tools": [
{
"name": "Google Play Console CLI",
"command": "gpc",
"installed": true,
"path": "/opt/homebrew/bin/gpc",
"install_url": "https://github.com/AndroidPoet/playconsole-cli"
}
],
"config": {
"file": ".shipkit.yaml",
"present": false
},
"next_actions": [
"shipkit init \"My App\"",
"shipkit doctor",
"gpc setup --auto",
"rc login",
"asc auth login",
"shipkit ci github"
]
}This is the useful AI integration: predictable CLI responses that external agents can understand.
Shipkit checks for the executable names first:
gpc
rc
asc
If any are missing, it installs the underlying CLIs with Homebrew:
brew tap AndroidPoet/tap
brew install playconsole-cli
brew install revenuecat-cli
brew install ascThen authenticate each provider CLI directly:
gpc setup --auto
rc login
asc auth loginShipkit keeps the provider auth flows in the provider tools where they belong.
shipkit init "LaunchKit"Creates:
app:
name: "LaunchKit"ios_bundle_id: "com.company.launchkit"android_package: "com.company.launchkit"tools:
google_play: gpcrevenuecat: rcapp_store_connect: ascrelease:
android_track: internalios_testflight: truerevenuecat_enabled: trueThe config starts small on purpose. It will become the source of truth for release tracks, TestFlight behavior, RevenueCat checks, metadata paths, and CI secret validation.
Generate a starter workflow:
shipkit ci githubCreates:
.github/workflows/mobile-release.yml
The generated workflow:
- installs Shipkit
- installs the provider CLIs (
gpc,rc,asc) viashipkit install - checks local release tooling
- runs
shipkit releaseforandroid,ios, orall
Manual dispatch input:
platform:
type: choiceoptions:
- all
- android
- iosshipkit release android
shipkit release ios
shipkit release allCurrent mapping:
shipkit release android # gpc release --track internal
shipkit release ios # asc testflight uploadThese are deliberately thin wrappers. Advanced users can always drop down to gpc, rc, or asc directly.
Preview before you ship — --dry-run prints the exact provider commands without executing them:
shipkit release all --dry-run
# [dry-run] gpc release --track internal# [dry-run] asc testflight uploadshipkit launch-check
shipkit launch-check --jsonIt answers one question:
Can this app ship today?
Checks today (verifiable locally, text or JSON, non-zero exit when not ready):
- provider CLIs (
gpc,rc,asc) are installed .shipkit.yamlexists and is readable- app name is set
- iOS bundle ID is set and not the generated
com.company.*placeholder - Android package is set and not the generated
com.company.*placeholder
Planned checks (require store/network access):
- Android package name matches Play Console setup
- iOS bundle ID matches App Store Connect setup
- RevenueCat product IDs exist for both stores
- CI secrets are present
- release notes, store metadata, and screenshots exist
- internal track or TestFlight target is configured
Shipkit itself does not require secrets for local status checks.
Provider tools may require their own credentials:
| Tool | Typical auth command |
|---|---|
gpc | gpc setup --auto |
rc | rc login |
asc | asc auth login |
CI workflows should store provider credentials in GitHub Actions secrets. Shipkit will add explicit secret validation in a future release.
- No AI API calls
- No telemetry
- No provider credentials stored by Shipkit
- No hidden network calls in
shipkit agent --json - Provider auth remains inside the provider CLIs
- Generated CI workflows are visible files you can review
This repo ships with release automation:
.github/workflows/ci.yml
.github/workflows/release.yml
.goreleaser.yml
Makefile
install.sh
LICENSE
Local checks:
make test
make buildOptional GoReleaser checks:
make release-check
make snapshotProduction release:
git tag v0.1.0
git push origin v0.1.0The release workflow publishes GitHub release artifacts and updates the Homebrew tap.
Required GitHub secret:
HOMEBREW_TAP_GITHUB_TOKEN
That token must be able to push to:
AndroidPoet/homebrew-tap
cmd/shipkit
main.go binary entrypoint and version injection
internal/cli
cli.go command routing and user-facing behavior
internal/agent
agent.go deterministic context for AI agents and scripts
internal/guide
guide.go interactive setup wizard
internal/install
install.go Homebrew-backed install orchestration
internal/doctor
doctor.go local tool readiness checks (text and JSON)
internal/launch
launch.go launch-readiness evaluation (text and JSON)
internal/config
config.go .shipkit.yaml rendering
internal/workflow
github.go generated GitHub Actions workflow
internal/runner
runner.go command execution boundary
Small codebase. Clear boundaries. No duplicate provider API clients.
- provider auth validation, not only executable checks
- GitHub secret checklist generation
- release commands driven by
.shipkit.yaml(tracks, TestFlight target) - RevenueCat product consistency checks across iOS and Android
- store metadata and screenshot readiness checks
- CI summary comments for release readiness
Shipkit should feel like the missing control panel for mobile release work.
It should be:
- easy for humans
- predictable for scripts
- parseable for agents
- small enough to audit
- flexible enough to step aside when the provider CLI is the better tool
Contributions are welcome! If you've found a bug, have an idea for an improvement, or want to contribute new features, please open an issue or submit a pull request.
Support it by joining stargazers for this repository. ⭐
Also, follow me on GitHub for my next creations! 🤩
MIT