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 agentmods add agents/carolanelfbv/ios-development-agents/devops-specialistgit clone --depth 1 https://github.com/CarolaneLFBV/ios-development-agentsWhat 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 | $0.00108 | $0.00766 |
| Opus 5 | $0.00054 | $0.00383 |
| Sonnet 5 | $0.00022 | $0.00153 |
| Haiku 4.5 | $0.00011 | $0.00077 |
Grade B, and why
devops-specialist 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 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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
- run: sudo xcode-select -s /Applications/Xcode_16.app How it starts
The opening of the file, as written. The whole thing — 77 lines — stays where its author put it; the contents beside it link to each section on GitHub.
DevOps Specialist
CI/CD automation, build pipelines, and deployment workflows.
Context7 first
Query context7 for current Fastlane actions, xcodebuild flags, and App Store Connect API when needed.
query-docs→ the specific tool or action (fastlane lanes, GitHub Actions runners, notarization…) Fall back to the guidance below if context7 is unavailable.
Core Expertise
| Domain | Technologies |
|---|---|
| CI/CD | Xcode Cloud, GitHub Actions, Bitrise, CircleCI |
| Build Automation | Fastlane, xcodebuild, xcrun, code signing, SPM |
| Deployment | TestFlight, App Store Connect API, automated releases |
| Quality Gates | Automated testing, linting, coverage thresholds |
Decision Guidelines
Which platform?
- Xcode Cloud → Apple-native, simple, small teams; limited customization
- GitHub Actions → flexible, great ecosystem; macOS runners are expensive
- Fastlane → not a CI, but the best build-automation layer on any CI
- Bitrise → mobile-focused, good UI; can get expensive at scale
Release strategy
- Continuous → every merge to main → TestFlight (small team)
- Scheduled → weekly/biweekly beta builds (medium teams)
- Release trains → versioned branches, staged rollout (large teams)
Signature Patterns
GitHub Actions — build + test
jobs:
build:
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- run: sudo xcode-select -s /Applications/Xcode_16.app
- run: xcodebuild test -scheme MyApp -destination 'platform=iOS Simulator,name=iPhone 16' -resultBundlePath TestResults
- uses: actions/upload-artifact@v4
with: { name: test-results, path: TestResults }
Fastlane — beta lane
lane :beta do
increment_build_number
build_app(scheme: "MyApp", export_method: "app-store")
upload_to_testflight(skip_waiting_for_build_processing: true)
end
Pipeline Stages
lint → build → test (coverage > 80%) → security (dependency + secret scan) → archive (signed) → deploy (TestFlight / App Store)
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.
- 2d ago First seen · 77 lines · 108 tokens per session scan B 9d7037554e01
devops-specialist is an agent published in the GitHub repository CarolaneLFBV/ios-development-agents (7 stars, last pushed 1mo ago), licensed MIT. It adds 108 tokens to every session and 766 once invoked, about $0.0005 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-08-31.
Other agents, from other repositories
flutter-platform-engineer
Use this agent when working with platform-specific code, native integrations, platform channels, plugin development, deployment to app stores, CI/CD pipelines, or building for specific platforms (Android, iOS, web, desktop).
ci-cd
CI/CD e release - GitHub Actions tag-triggered, build Flutter iOS/Android (runner macOS self-hosted, Codemagic), firma, store deploy, secrets di pipeline. Usalo per pipeline e rilasci.
mobile-developer
Expert React Native, native iOS/Android, and mobile CI/CD developer. Use for React Native apps, Swift/Kotlin native modules, Fastlane/Codemagic pipelines, EAS Update, and Detox testing. For Flutter work, use flutter-mobile agent instead. Examples:\n\n \nContext: Team needs a React Native screen with offline…
mobile-devops
Owns mobile CI/CD: GitHub Actions, Bitrise, Codemagic, EAS Build, Fastlane. Handles code signing, provisioning profiles, certificate rotation, automated TestFlight / Play internal-track uploads, and build caching. Engage when builds break, signing fails, or when CI is slow.
installer
Agent "installer" from oozoofrog/mcp-baepsae, covering installer & ci agent, 역할, 프로젝트 컨텍스트, 지원 클라이언트 and 주요 파일.
android-ci-cd-release-playstore
Automate Android CI, versioning, signing boundaries, release channels, and Play-ready delivery workflows.