Agent skill

swift

Language-specific super-code guidelines for swift.

Nick44,414★ · +328/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill swift --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 7 KB
Bundled scripts: none
Path: skills/super-code/swift/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Swift: Idiomatic Efficiency Reference ## When to Use - Use this skill when the task matches this description: Language-specific super-code guidelines for swift. ## Table of Contents 1. [Optionals](#optionals) 2. [Collections & Functional Transforms](#collections) 3. [Value vs Reference Types](#value-types) 4. [Error Handling](#errors) 5. [Concurrency](#concurrency) 6. [Protocol-Oriented Design](#protocols) 7. [Anti-patterns specific to Swift](#antipatterns) --- ## 1. Optionals {#optionals} ```swift // ❌ Force unwrap let name = user.name! // ✅ — guard or if-let guard let name = user.name else { return } ``` ```swift // ❌ Nested if-let pyramid if let user = fetchUser() { if let address = user.address { if let city = address.city { display(city) } } } // ✅ — chained optional binding if let city = fetchUser()?.address?.city { display(city) } // or guard-let for early exit guard let city = fetchUser()?.address?.city else { return } display(city) ``` ```swift // ❌ Ternary for default let name = user.name != nil ? user.name! : "Unknown" // ✅ let name = user.name ?? "Unknown" ``` ```swift // ❌ Optional map when if-let is clearer for side effects user.name.map { display($0) } // ✅ — map f

What's inside
Steps it walks through
  1. When to Use
  2. Table of Contents
  3. 1. Optionals {#optionals}
  4. 2. Collections & Functional Transforms {#collections}
  5. 3. Value vs Reference Types {#value-types}
  6. 4. Error Handling {#errors}
  7. 5. Concurrency {#concurrency}
  8. 6. Protocol-Oriented Design {#protocols}
  9. 7. Anti-patterns specific to Swift {#antipatterns}
  10. Limitations
More from agentic-awesome-skills
All skills →
About this skill
What does the swift skill do?

Language-specific super-code guidelines for swift.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill swift --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going