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 SteveGJones/ai-first-sdlc-practices --skill ios-cigit clone --depth 1 https://github.com/SteveGJones/ai-first-sdlc-practicesWrote 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/stevegjones/ai-first-sdlc-practices/ios-ci)<a href="https://agentmods.dev/skills/stevegjones/ai-first-sdlc-practices/ios-ci"><img src="https://agentmods.dev/badge/skills/stevegjones/ai-first-sdlc-practices/ios-ci/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/stevegjones/ai-first-sdlc-practices/ios-ci"><img src="https://agentmods.dev/badge/skills/stevegjones/ai-first-sdlc-practices/ios-ci.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.00063 | $0.00857 |
| Opus 5 | $0.00032 | $0.00428 |
| Sonnet 5 | $0.00013 | $0.00171 |
| Haiku 4.5 | $0.00006 | $0.00086 |
Grade B, and why
ios-ci scanned grade B with 1 finding 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 7d 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 rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
`xcodes select` / `sudo xcode-select -s` pinned to the project's Xcode version. How it starts
The opening of the file, as written. The whole thing — 67 lines — stays where its author put it; the contents beside it link to each section on GitHub.
iOS CI
Generate a GitHub Actions workflow for an iOS app. Complements (does not replace)
/sdlc-core:setup-ci — this adds the iOS-specific pieces (macOS runners, simulators, signing).
Belongs to the ios-release-engineer discipline.
Arguments
path-to-ios-project— the project directory (defaults to the current directory).
Steps
1. Establish the project shape
- Workspace vs project, the scheme name, the deployment target, and whether it uses SwiftPM, CocoaPods, or Carthage (affects caching and the resolve step). Confirm the Xcode version to pin.
2. Generate the workflow
Produce an iOS CI workflow file under the .github/workflows/ directory with:
- Runner:
runs-on: macos-14(or the current macOS runner); select Xcode withxcodes select/sudo xcode-select -spinned to the project's Xcode version. - Caching: cache SwiftPM (
~/Library/Caches/org.swift.swiftpm,.build) and/or CocoaPods (Pods,~/Library/Caches/CocoaPods); keyed on the lockfile. - Build & test:
xcodebuild build test -scheme <Scheme> -destination 'platform=iOS Simulator,name=iPhone 16,OS=latest'— use a simulator matrix across the OS versions you support; pass-resultBundlePathand surface failures. - Lint/format: SwiftLint / swift-format if the project uses them.
- iOS pre-flight: run
python -m ios_preflight.cli .so config regressions (missing purpose strings, export compliance, entitlements) fail CI before a release ever reaches App Store Connect.
3. (Optional) Signing + TestFlight upload job
Only if the project releases from CI:
- Secrets: base64-encoded
.p12, the.mobileprovision, keychain +.p12passwords, and the App Store Connect API key (.p8+ key ID + issuer ID) — all in GitHub Actions encrypted secrets, never in the repo. - Signing: create + unlock a temporary keychain, import the
.p12, runsecurity set-key-partition-list, install the profile; prefer manual signing orfastlane match --readonly. - Archive + upload:
xcodebuild archive/-exportArchive(Release + distribution profile) then upload viafastlane pilot,xcrun altool, or the App Store Connect API. - Build number: stamp
CFBundleVersionfromgit rev-list --count HEAD(+ short SHA) so every CI build is unique, monotonic, and traceable to a commit. - Sandboxing: if a build-phase script reads git/env, that target may need
ENABLE_USER_SCRIPT_SANDBOXING = NO.
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.
- 7d ago First seen · 67 lines · 63 tokens per session scan B eb1a1da2488b
ios-ci is a skill published in the GitHub repository SteveGJones/ai-first-sdlc-practices (41 stars, last pushed 1mo ago), licensed MIT. It adds 63 tokens to every session and 857 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
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…