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.
npx skills add matiastripode/ios-agent-skills --skill ios-ci-cdgit clone --depth 1 https://github.com/matiastripode/ios-agent-skillsWrote 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.
[](https://agentmods.dev/skills/matiastripode/ios-agent-skills/ios-ci-cd)<a href="https://agentmods.dev/skills/matiastripode/ios-agent-skills/ios-ci-cd"><img src="https://agentmods.dev/badge/skills/matiastripode/ios-agent-skills/ios-ci-cd/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/matiastripode/ios-agent-skills/ios-ci-cd"><img src="https://agentmods.dev/badge/skills/matiastripode/ios-agent-skills/ios-ci-cd.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00030 | $0.00518 |
| Opus 5 | $0.00015 | $0.00259 |
| Sonnet 5 | $0.00006 | $0.00104 |
| Haiku 4.5 | $0.00003 | $0.00052 |
Grade A, and why
ios-ci-cd 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 10d 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.
What it actually says
iOS CI/CD
An agent skill for building, testing, archiving, and deploying iOS apps from the command line.
When to Activate
- User asks to build, test, or archive an iOS app
- User asks about CI/CD setup for iOS
- User asks about code signing, Fastlane, or TestFlight
- User runs
/ios-buildor/ios-archive
Decision Tree
What does the user need?
├── Build the app
│ ├── For development/testing → xcodebuild build
│ ├── For distribution → xcodebuild archive + exportArchive
│ └── Read references/xcodebuild-commands.md
├── Run tests
│ ├── Unit tests → xcodebuild test (specific test target)
│ ├── UI tests → xcodebuild test (UI test target with simulator)
│ └── Read references/xcodebuild-commands.md
├── Code signing issues
│ ├── Local development → Automatic signing in Xcode
│ ├── CI environment → Manual signing or Fastlane match
│ └── Read references/signing-guide.md
├── Automate with Fastlane
│ └── Read references/fastlane-patterns.md
└── Distribute via TestFlight
└── Read references/testflight-checklist.md
Common Workflow Sequences
Local development build + test:
xcodebuild build -workspace App.xcworkspace -scheme App -destination 'platform=iOS Simulator,name=iPhone 16' | xcpretty
xcodebuild test -workspace App.xcworkspace -scheme App -destination 'platform=iOS Simulator,name=iPhone 16' | xcpretty
CI: Build, test, archive, upload:
fastlane match appstore --readonly
fastlane scan
fastlane gym
fastlane pilot upload
Reference Documents
references/xcodebuild-commands.md- Build, test, archive commandsreferences/fastlane-patterns.md- Fastlane setup and lanesreferences/signing-guide.md- Certificates, profiles, entitlementsreferences/testflight-checklist.md- Pre-submission and distribution
What ships with it
4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 10d ago First seen · 61 lines · 30 tokens per session scan A 1e9885e68797
ios-ci-cd is a skill published in the GitHub repository matiastripode/ios-agent-skills (2 stars, last pushed 5mo ago), licensed MIT. It adds 30 tokens to every session and 518 once invoked, about $0.0002 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-08-31.
Other skills, from other repositories
eas-workflows
EAS service (paid). Helps understand and write EAS workflow YAML files for Expo projects. Use this skill when the user asks about CI/CD or workflows in an Expo or EAS context, mentions .eas/workflows/, or wants help with EAS build pipelines or deployment automation.
flutter-cicd
Set up CI/CD pipelines for Flutter apps. Use when configuring automated testing, build, or deployment workflows with GitHub Actions or Fastlane.
android-tooling
Configure Android static analysis with Detekt, Ktlint, and Android Lint for CI/CD quality gates. Use for Android-specific lint and quality tooling; defer generic Java Checkstyle, SonarQube, and standalone CI configuration.
github-actions
GitHub Actions workflow patterns for React Native iOS simulator and Android emulator cloud builds with downloadable artifacts. Use when setting up CI build pipelines or downloading GitHub Actions artifacts via gh CLI and GitHub API.
app-store-deployment
Publishes mobile applications to iOS App Store and Google Play with code signing, versioning, and CI/CD automation. Use when preparing app releases, configuring signing certificates, or setting up automated deployment pipelines.
swift-preflight
Audit a Swift / iOS / macOS repo for Xcode Cloud and TestFlight release blockers before upload - pbxproj drift, static build numbers, missing ciscripts, macOS App Store entitlements/Info.plist, headless-CI keychain tests, ad-hoc signing entitlement rejections, and flaky-UITest release gating. Reports PASS/WARN/FAIL…