ipaship-audit

ipaship-audit is a skill for Claude Code, Codex from atharvnaik1/ipaship-audit. It costs 57 tokens per session (1,720 once invoked), scanned A, original, MIT.

A service for checking iOS and Android app packages against Apple App Store and Google Play rules. An IPA is an iOS app package, and an APK is an Android app package.

In plain words
What is it for?
Use it to audit IPA, APK, or ZIP files, review violations with guideline references and severity ratings, and check apps during development or CI/CD.
Why use it?
It can reveal policy and compliance problems before an app is submitted and potentially rejected.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/atharvnaik1/ipaship-audit/claude-code
Any agent
npx skills add atharvnaik1/ipaship-audit --skill claude-code
Clone the repo
git clone --depth 1 https://github.com/atharvnaik1/ipaship-audit

Made for: Claude Code, Codex.

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 ipaship-audit

README.md
[![agentmods](https://agentmods.dev/badge/skills/atharvnaik1/ipaship-audit/claude-code.svg)](https://agentmods.dev/skills/atharvnaik1/ipaship-audit/claude-code)
Your own site
<a href="https://agentmods.dev/skills/atharvnaik1/ipaship-audit/claude-code"><img src="https://agentmods.dev/badge/skills/atharvnaik1/ipaship-audit/claude-code.svg" alt="Measured on agentmods" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,720 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 2 findings. Scan, not verified.
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.00057 $0.01720
Opus 5 $0.00028 $0.00860
Sonnet 5 $0.00011 $0.00344
Haiku 4.5 $0.00006 $0.00172

Measured 5d ago against content hash 4da55d6cd9fb, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

ipaship-audit scanned grade A with 2 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 5d 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.

Asks for rootlowPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

1. **Forgetting `unzip`** — The server needs `unzip` installed to extract packages. If you see extraction errors, install it: `sudo apt-get install unzip`.

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -X POST https://ipaship.com/api/audit \
wrappers/claude-code/SKILL.md · 162 lines

How it starts

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

ipaShip — ipaship-audit

Audit your iOS/Android app packages against official store policies before submission. Upload .ipa or .apk files and get a structured compliance report with guideline references, severity ratings, and actionable fixes.

When to Use

  • Before submitting an iOS app to the Apple App Store — catch rejections early
  • Before submitting an Android app to Google Play — identify policy violations
  • During CI/CD to automate pre-submission compliance checks
  • When reviewing third-party apps for compliance risks
  • As part of a code review workflow for mobile apps

Setup

Prerequisites

Requirement Details
Account ipaship.com — free to use
API Key Get yours at ipaship.com
App Package .ipa (iOS), .apk (Android), or .zip file (max 150MB)
Dependencies The server needs unzip installed

Environment Variables

export IPASHIP_API_KEY="your-api-key-here"

Usage

1. Web Interface (No Code Required)

  1. Go to ipaship.com
  2. Upload your .ipa or .apk file
  3. Select your AI provider (Claude, GPT, Gemini, or OpenRouter)
  4. Click "Audit" and wait for the streaming report

2. CLI via cURL

# Basic audit with default provider (Anthropic Claude)
curl -X POST https://ipaship.com/api/audit \
  -H "Authorization: Bearer $IPASHIP_API_KEY" \
  -F "file=@/path/to/your-app.ipa" \
  -F "provider=anthropic" \
  -F "model=claude-3-5-sonnet-20241022"

# With context about your app
curl -X POST https://ipaship.com/api/audit \
  -H "Authorization: Bearer $IPASHIP_API_KEY" \
  -F "file=@/path/to/your-app.ipa" \
  -F "provider=anthropic" \
  -F "model=claude-3-5-sonnet-20241022" \
  -F "context=This is a social media app with user-generated content"

# Using OpenAI
curl -X POST https://ipaship.com/api/audit \
  -H "Authorization: Bearer $IPASHIP_API_KEY" \
  -F "file=@/path/to/your-app.apk" \
  -F "provider=openai" \
  -F "model=gpt-4o"

Read the full file on GitHub · 162 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. 5d ago First seen · 162 lines · 57 tokens per session scan A 4da55d6cd9fb

Subscribe to this mod's changes

ipaship-audit is a skill published in the GitHub repository atharvnaik1/ipaship-audit (43 stars, last pushed 3mo ago), licensed MIT. It adds 57 tokens to every session and 1,720 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 2 findings (asks for root, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

app-store-compliance

Run an enterprise pre submission compliance audit on a mobile app project before uploading to the Apple App Store or Google Play. Use when the user is about to submit, ship, or release an iOS or Android app, when an app was rejected and needs a fix plan, when reviewing App Store Review Guidelines or Google Play policy…

mjmirza/app-store-compliance · 108 tokens

app-store-preflight-compliance

Pre-submission compliance scanner workflow for Apple App Store apps. Use when reviewing iOS, macOS, tvOS, watchOS, or visionOS projects (Swift, Objective-C, React Native, Expo) for App Store rejection risks, submission readiness, privacy compliance, or guideline violations.

RevylAI/greenlight · 65 tokens

app-review-max

Pass Apple App Review the first time and recover fast when rejected. USE THIS SKILL whenever the user is submitting to the App Store, preparing a submission, asks 'will this get rejected', mentions App Review, a rejection, Resolution Center, an appeal, or any guideline number (2.1, 2.3, 3.1.1, 4.3, 5.1.x, etc.)…

Dev869/swift-tothemax · 218 tokens

apple-legal-max

Legal and privacy compliance for Apple-platform apps (iOS/iPadOS/macOS/watchOS/tvOS/visionOS). Use this skill WHENEVER a task touches - privacy policy, terms of service, ToS, EULA, license agreement, privacy manifest, PrivacyInfo.xcprivacy, required reason APIs, App Tracking Transparency, ATT, IDFA, tracking domains…

Dev869/swift-tothemax · 235 tokens

account-deletion

Generates an Apple-compliant account deletion flow with multi-step confirmation UI, optional data export, configurable grace period, Keychain cleanup, and server-side deletion request. Use when user needs account deletion, right-to-delete, or Apple App Review compliance for account removal.

rshankras/claude-code-apple-skills · 57 tokens

consent-flow

Generates GDPR/CCPA/DPDP privacy consent flows with granular category preferences, consent state persistence, audit logging, and ATT (App Tracking Transparency) integration. Use when user needs privacy consent UI, cookie/tracking consent, or compliance management.

rshankras/claude-code-apple-skills · 54 tokens