repoprompt-ce: Skill for Codex

.agents/skills/rpce-swift-concurrency-fix/SKILL.md

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

A focused repair guide for Swift's rules about running code safely across tasks, actors, and threads. It covers a limited set of compiler errors and warnings in RepoPrompt CE projects.

In plain words
What is it for?
Use it to fix issues involving actor isolation, Sendable values, task captures, continuations, cancellation, shared global state, locks, queues, callbacks, or Objective-C interoperability.
Why use it?
It helps identify what crosses a concurrency boundary and choose a small code change that also reflects real runtime ownership, rather than only silencing the compiler.

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-concurrency-fix/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-concurrency-fix

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/repoprompt/repoprompt-ce/rpce-swift-concurrency-fix"><img src="https://agentmods.dev/badge/skills/repoprompt/repoprompt-ce/rpce-swift-concurrency-fix.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 93 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,015 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.00093 $0.01015
Opus 5 $0.00046 $0.00508
Sonnet 5 $0.00019 $0.00203
Haiku 4.5 $0.00009 $0.00102

Measured 12d ago against content hash 5c8b4c2d1278, 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-concurrency-fix 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 12d 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-concurrency-fix/SKILL.md · 92 lines

How it starts

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

RepoPrompt CE Concurrency Fix

Resolve the requested diagnostics with the smallest semantic change that makes the runtime ownership explicit. Do not treat an annotation-only compile as proof of safety.

Required context

  1. Read references/diagnostic-playbook.md, classify the boundary, then load the matching detailed reference below. Load another only if the traced boundary spans families:
    • references/isolation-sendability-samples.md for actor isolation, Sendable crossings, global state, isolated conformances, reentrancy, or escape-hatch repairs;
    • references/tasks-cancellation-continuations-samples.md for task ownership, detached work, continuation races, streams, or deterministic concurrency tests;
    • references/synchronization-interop-samples.md for locks, queues, @unchecked Sendable, Objective-C/C callbacks, runtime assertions, or @preconcurrency.
  2. Read references/repository-patterns.md before changing an existing RepoPrompt task, continuation, synchronization, UI-publication, or concurrency-utility pattern.
  3. For Swift 6.2 settings or execution semantics, read ../rpce-swift-6-concurrency-migration/references/official-swift-6-2.md and its linked local samples.
  4. Inspect the owning target's actual manifest settings before interpreting a diagnostic.
  5. Before running builds or tests, read root AGENTS.md and the applicable section of ../rpce-swift-6-concurrency-migration/references/validation-matrix.md.

Workflow

1. Capture the failure

Record:

  • exact diagnostic text;
  • package, target, file, and declaration;
  • compiler and Swift language mode;
  • strict checking, default isolation, and upcoming-feature settings;
  • whether the issue is first-party, imported, generated, or dependency code.

2. Trace the boundary

Follow the value, closure, or mutable state through its real execution path. Identify:

  • source and destination isolation domains;
  • owning actor, task, lock, queue, or immutable value;
  • suspension and reentrancy points;
  • task lifetime and cancellation owner;
  • callback/continuation completion paths;
  • public API or interoperability constraints.

Read the full file on GitHub · 92 lines

Files

What ships with it

6 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. 12d ago First seen · 92 lines · 93 tokens per session scan A 5c8b4c2d1278

Subscribe to this mod's changes

rpce-swift-concurrency-fix is a skill published in the GitHub repository repoprompt/repoprompt-ce (928 stars, last pushed today), licensed Apache-2.0. It adds 93 tokens to every session and 1,015 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

agent-swift-build-resolver

Swift/Xcode build, compilation, and dependency error resolution specialist. Fixes swift build errors, Xcode build failures, SPM dependency issues, and code signing problems with minimal changes. Use when Swift builds fail.

KunanonJ/ai-skills-hub · 50 tokens

ts-debug

TypeScript/Node debugging expert. Use when the user needs to debug, profile, or trace TypeScript or Node.js code — e.g. "how do I debug this", "find the memory leak", "why is this slow", "add a breakpoint", "profile this function", "why won't the process exit".

berekvolgyipeter/dotclaude · 68 tokens

py-debug

Python debugging expert. Use when the user needs to debug, profile, or trace Python code — e.g. "how do I debug this", "find the memory leak", "why is this slow", "add a breakpoint", "profile this function".

berekvolgyipeter/dotclaude · 54 tokens

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

optimize-python-parallelism

Analyze and, when the task authorizes source optimization, refactor a concrete long-running Python entrypoint containing repeated independent work. Use for explicit Python speedup or parallelization requests and evidence-backed long-running entrypoints; skip ordinary Python edits, test execution alone, short scripts…

cloudguo123/atomlane · 70 tokens

agent-kotlin-build-resolver

Kotlin/Gradle build, compilation, and dependency error resolution specialist. Fixes build errors, Kotlin compiler errors, and Gradle issues with minimal changes. Use when Kotlin builds fail.

KunanonJ/ai-skills-hub · 45 tokens