Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Ios Ci

ASecurity

Generate a GitHub Actions workflow for iOS — macOS runner, SPM/DerivedData caching, build, test on a simulator matrix, run the iOS pre-flight checks, and (optionally) sign + upload to TestFlight. Use when setting up CI for an iOS app.

41 stars
0 votes
0 copies
0 views
Added 9/19/2026
devopspythonswiftgitapisecurity

Works with

cliapi

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add SteveGJones/ai-first-sdlc-practices --skill ios-ci --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Ios Ci?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Ios Ci
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/stevegjones-ios-ci/badge)](https://www.skillsdirectory.com/skills/stevegjones-ios-ci)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: ios-ci
description: Generate a GitHub Actions workflow for iOS — macOS runner, SPM/DerivedData caching, build, test on a simulator matrix, run the iOS pre-flight checks, and (optionally) sign + upload to TestFlight. Use when setting up CI for an iOS app.
disable-model-invocation: false
argument-hint: "[path-to-ios-project]"
---

# 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 with
  `xcodes select` / `sudo xcode-select -s` pinned 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 `-resultBundlePath` and 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 + `.p12` passwords, 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`, run
  `security set-key-partition-list`, install the profile; prefer **manual signing** or
  `fastlane match --readonly`.
- **Archive + upload**: `xcodebuild archive`/`-exportArchive` (Release + distribution profile) then
  upload via `fastlane pilot`, `xcrun altool`, or the App Store Connect API.
- **Build number**: stamp `CFBundleVersion` from `git 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`.

### 4. Report

Summarise the workflow: what triggers it, the test matrix, whether it gates on pre-flight, and whether
it uploads to TestFlight. Note any secrets the user must add before it will run.

## Notes

- Xcode Cloud is the first-party alternative (managed signing, no `.p12` juggling) — mention it if the
  team is all-in on Apple tooling and doesn't need cross-platform CI steps.
- Keep the signing/upload job separate from build/test so PRs run fast without secrets.

Attribution

SteveGJonesSteveGJones
View sourceMore from SteveGJones →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Terraform Module Library

Build reusable Terraform modules for AWS, Azure, and GCP infrastructure following infrastructure-as-code best practices. Use when creating infrastructure modules, standardizing cloud provisioning, or implementing reusable IaC components.

393431 votes

sematext-otel

Wire a service's OpenTelemetry output to Sematext Cloud. Walks through region, App-type, instrumentation flow (managed OTLP endpoint vs Sematext Agent), and signal selection (traces/metrics/logs), then produces the exact env-var block and points at a runnable reference example in this repo. Invoke when instrumenting a new app for Sematext.

01 votes

Deployment Patterns

Deployment workflows, CI/CD pipeline patterns, Docker containerization, health checks, rollback strategies, and production readiness checklists for web applications. Use when setting up deployment infrastructure or planning releases.

2459130 votes

Babysit

Watch a pull request or review cycle until it is ready to merge. Use when asked to babysit, monitor, or keep checking PR comments, reviews, and CI until all actionable issues are resolved.

929660 votes

V7 Roster

Interact with the Paperclip control plane API for task coordination and governance. Use when checking assignments, updating issue status, posting comments, delegating work, managing routines, or calling Paperclip API endpoints.

798220 votes
View all in devops →