repoprompt-ce: Skill for Codex

.agents/skills/rpce-swift-6-concurrency-migration/SKILL.md

rpce-swift-6-concurrency-migration is a skill for Codex from repoprompt/repoprompt-ce. It costs 90 tokens per session (1,373 once invoked), scanned A, original, Apache-2.0.

A project-wide migration guide for enabling Swift 6.2 language mode and stricter concurrency checking in RepoPrompt CE.

In plain words
What is it for?
Use it to inspect Swift and Xcode settings, plan migration phases, diagnose concurrency warnings, and coordinate validation across packages.
Why use it?
It helps teams inventory affected packages and targets, stage the migration, identify blockers, and validate changes using current project evidence.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: installed under .agents/ (shared by several agents); mentions AGENTS.md; $skill-name invocation.

This is repoprompt/repoprompt-ce's own configuration. It tells Codex how to work on repoprompt-ce itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything repoprompt-ce configures →

Reuse

Borrowing it

Nothing to install: this file belongs to repoprompt/repoprompt-ce. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/repoprompt/repoprompt-ce/main/.agents/skills/rpce-swift-6-concurrency-migration/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/repoprompt/repoprompt-ce

Made for: 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 rpce-swift-6-concurrency-migration

README.md
[![agentmods](https://agentmods.dev/badge/skills/repoprompt/repoprompt-ce/rpce-swift-6-concurrency-migration/github.svg)](https://agentmods.dev/skills/repoprompt/repoprompt-ce/rpce-swift-6-concurrency-migration)
Your own site
<a href="https://agentmods.dev/skills/repoprompt/repoprompt-ce/rpce-swift-6-concurrency-migration"><img src="https://agentmods.dev/badge/skills/repoprompt/repoprompt-ce/rpce-swift-6-concurrency-migration/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.

agentmods 80×15 button for rpce-swift-6-concurrency-migration

Your own site · 80×15
<a href="https://agentmods.dev/skills/repoprompt/repoprompt-ce/rpce-swift-6-concurrency-migration"><img src="https://agentmods.dev/badge/skills/repoprompt/repoprompt-ce/rpce-swift-6-concurrency-migration.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 90 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,373 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00090 $0.01373
Opus 5 $0.00045 $0.00687
Sonnet 5 $0.00018 $0.00275
Haiku 4.5 $0.00009 $0.00137

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

Security

Grade A, and why

rpce-swift-6-concurrency-migration 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 11d 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.

.agents/skills/rpce-swift-6-concurrency-migration/SKILL.md · 121 lines

How it starts

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

RepoPrompt CE Swift 6.2 Concurrency Migration

Treat repository source, current compiler output, AGENTS.md, and official Swift documentation as authority. Do not infer language semantics from the toolchain version alone.

Required reading

Read references/repository-concurrency-profile.md first. Load the other references only when the workflow reaches them:

  • references/official-swift-6-2.md before interpreting or changing language/concurrency settings;
  • references/swiftpm-settings-samples.md before editing either package manifest or designing a settings rollout;
  • references/swift-6-2-semantics-samples.md before adopting or diagnosing caller-actor execution, @concurrent, default isolation, or isolated conformances;
  • references/migration-inventory.md when creating or updating the campaign inventory;
  • references/validation-matrix.md before starting coordinated validation.

Re-read an affected section before a settings change if the information is no longer fresh in context.

Workflow

1. Establish the current state

  1. Confirm the active Xcode and Swift compiler versions.
  2. Inspect both package manifests and the actual settings of every affected target.
  3. Distinguish the Swift tools version, language mode, strict-concurrency checking, default actor isolation, and upcoming concurrency features.
  4. Capture a clean coordinated baseline before changing semantics.
  5. Record pre-existing warnings or failures separately from migration diagnostics.

Never assume that using a Swift 6.2 compiler means the package is in Swift 6 language mode.

2. Build the inventory

Create or update a migration inventory using references/migration-inventory.md. Group findings by package, target, diagnostic family, isolation boundary, runtime risk, and dependency relationship.

Inventory at least:

  • global and static mutable state;
  • @unchecked Sendable, nonisolated(unsafe), @preconcurrency, and MainActor.assumeIsolated;
  • detached or escaping tasks and their owners;
  • continuations, streams, and cancellation handlers;
  • locks, queues, semaphores, and custom concurrency primitives;
  • actor reentrancy-sensitive state;
  • Objective-C/C and delegate/callback boundaries;
  • long-lived Agent Mode, MCP, indexing, persistence, and process tasks.

Read the full file on GitHub · 121 lines

Files

What ships with it

7 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.

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. 11d ago First seen · 121 lines · 90 tokens per session scan A f17d5949f868

Subscribe to this mod's changes

rpce-swift-6-concurrency-migration is a skill published in the GitHub repository repoprompt/repoprompt-ce (927 stars, last pushed today), licensed Apache-2.0. It adds 90 tokens to every session and 1,373 once invoked, about $0.0005 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-30.

Related

Other skills, from other repositories

Swift Patterns

Use this skill when working on Swift projects (SwiftPM packages, iOS/macOS apps) and you want consistent patterns for concurrency, structure, and safety.

AmariahAK/atlarix-skills · 2 tokens

kotlin-testing

Kotlin testing patterns with Kotest, MockK, coroutine testing, property-based testing, and Kover coverage. Follows TDD methodology with idiomatic Kotlin practices.

affaan-m/ECC · 38 tokens

swift-testing-pro

Writes, reviews, and improves Swift Testing code using modern APIs and best practices. Use when reading, writing, or reviewing projects that use Swift Testing.

jacklandrin/OnlySwitch · 34 tokens

null-safety

Use when annotating nullability in Spring Boot 3 / Spring Framework 6 code, integrating Kotlin, or adding static nullability checks without assuming Spring Framework 7 JSpecify defaults.

rrezartprebreza/spring-boot-skills · 41 tokens

boutique-best-practices

Best practices for using Boutique with Swift 6 concurrency, @Observable, @ObservationIgnored, Sendable conformance, testing with preview stores, and dependency injection. Use when troubleshooting Boutique issues, migrating to Swift 6, or setting up tests.

mergesort/Boutique · 56 tokens

swift-expert

Expert-level Swift development for iOS, macOS with SwiftUI, Combine, and modern Swift 5.9+. Use when the user mentions iOS, macOS, SwiftUI, Combine, async await, or Apple platforms, or when the task involves Modern Swift Features, Basics and Optionals, Functions and Closures, or Structs and Classes.

personamanagmentlayer/pcl · 76 tokens