expo-eas-submit

expo-eas-submit is a skill for Claude Code from fatihkan/badi. It costs 75 tokens per session (1,572 once invoked), scanned A, original, MIT.

A guide to uploading iOS and Android app builds to Apple's App Store Connect and Google's Play Console, the services used to publish and test mobile apps. It covers metadata, review information, and staged releases.

In plain words
What is it for?
Use it to submit builds, configure Apple and Google credentials, upload screenshots and descriptions, add review notes, select testing tracks, and manage phased rollouts.
Why use it?
It removes guesswork from selecting the right build and supplying the credentials and store details required for submission. Staged releases can limit how quickly an update reaches users.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions Claude Code.

Part of the badi plugin — 81 skills, 86 commands, 30 agents, 7 hooks shipped together

Good fit Use it to submit builds, configure Apple and Google credentials, upload screenshots and descriptions, add review notes, select testing tracks, and manage phased rollouts.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/fatihkan/badi/expo-eas-submit
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add fatihkan/badi --skill expo-eas-submit
Clone the repo
git clone --depth 1 https://github.com/fatihkan/badi

Made for: Claude Code.

Or install badi, the plugin that ships this one along with the rest of its 81 skills, 86 commands, 30 agents, 7 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for expo-eas-submit

README.md
[![agentmods](https://agentmods.dev/badge/skills/fatihkan/badi/expo-eas-submit.svg)](https://agentmods.dev/skills/fatihkan/badi/expo-eas-submit)
Your own site
<a href="https://agentmods.dev/skills/fatihkan/badi/expo-eas-submit"><img src="https://agentmods.dev/badge/skills/fatihkan/badi/expo-eas-submit.svg" alt="Measured on agentmods" height="20"></a>
Per session 75 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,572 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
SkillSpector: 1 finding, up to low

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • low Privilege Escalation · line 102
    Skill requests more permissions than appear necessary for its stated functionality. Review if elevated access is justified.
    Fix: Request only the minimum permissions required. Document why each permission is needed. Remove broad permissions like '*' or 'all'.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00075 $0.01572
Opus 5 $0.00037 $0.00786
Sonnet 5 $0.00015 $0.00314
Haiku 4.5 $0.00007 $0.00157

Measured 2d ago against content hash 6e2cc97d42be, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

expo-eas-submit scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills-vault/expo-eas-submit/SKILL.md · 214 lines

How it starts

The opening of the file, as written. The whole thing — 214 lines — stays where its author put it; the contents beside it link to each section on GitHub.

expo-eas-submit

A guide to the App Store Connect (iOS) and Google Play Console (Android) submit process with EAS Submit. Metadata management, build-artifact selection, review notes, and phased-release discipline. Build-profile DETAIL lives in expo-eas-build.

What It Does

  • Uploading iOS/Android builds with eas submit
  • App Store Connect API Key (ASC) and Google Play Service Account setup
  • Build artifact selection (latest / specific URL / specific ID)
  • Review notes and demo-account management
  • Phased release / staged rollout
  • Screenshot and metadata upload discipline

Setup

eas submit:configure

eas.json Submit Section

{
  "submit": {
    "production": {
      "ios": {
        "ascAppId": "1234567890",
        "appleTeamId": "ABCDE12345",
        "ascApiKeyPath": "./credentials/AuthKey_XXX.p8",
        "ascApiKeyId": "XXX",
        "ascApiKeyIssuerId": "yyy-yyy-yyy"
      },
      "android": {
        "serviceAccountKeyPath": "./credentials/play-service-account.json",
        "track": "internal",
        "releaseStatus": "draft",
        "rollout": 0.1,
        "changesNotSentForReview": false
      }
    },
    "preview": {
      "android": { "track": "internal" }
    }
  }
}

iOS Submit Flow

# 1. Upload the latest build
eas submit --platform ios --profile production --latest

# 2. Specific build ID
eas submit -p ios --id <build-id>

# 3. Upload a local IPA
eas submit -p ios --path ./build.ipa

ASC API Key (recommended)

App Store Connect > Users and Access > Integrations > App Store Connect API:

  • Key ID, Issuer ID, .p8 file
  • Role: App Manager (enough for submit)

Store ascApiKeyPath in eas.json or on the EAS server.

TestFlight Flow

  1. Submit completes successfully → ASC > TestFlight > Processing
  2. Answer the compliance questions (encryption usage)
  3. Add an internal testing group
  4. Beta Review is required for external testing

Android Submit Flow

eas submit -p android --profile production --latest
eas submit -p android --path ./app.aab

Read the full file on GitHub · 214 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 214 lines · 75 tokens per session scan A 6e2cc97d42be

Subscribe to this mod's changes

expo-eas-submit is a skill published in the GitHub repository fatihkan/badi (7 stars, last pushed yesterday), licensed MIT. It adds 75 tokens to every session and 1,572 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-06.