Source profileQuality 85/100

Benknightdark/neo-skills/skills/neo-swift/SKILL.md

neo-swift

Use this skill when writing, reviewing, debugging, or modernizing Swift code for iOS, macOS, server-side Swift, or shared packages. Trigger for Swift 5+ language features, structured concurrency, memory safety, protocols/generics, SwiftUI integration, and performance-sensitive code.

Source repository stars
7
Declared platforms
0
Static risk flags
0
Last source update
2026-08-05
Source checked
2026-08-05

Decision brief

What it does—and where it fits

Trigger for Swift 5+ language features, structured concurrency, memory safety, protocols/generics, SwiftUI integration, and performance-sensitive code.

Best for

  • Use this skill when writing, reviewing, debugging, or modernizing Swift code for iOS, macOS, server-side Swift, or shared packages.

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/Benknightdark/neo-skills --skill "skills/neo-swift"
Safe inspection promptEditorial

Inspect the Agent Skill "neo-swift" from https://github.com/Benknightdark/neo-skills/blob/c3e3d1bcf6aae00a729ceab257e6a68dd40d89ec/skills/neo-swift/SKILL.md at commit c3e3d1bcf6aae00a729ceab257e6a68dd40d89ec. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Workflow

    1. Perceive (Version Awareness): - Identify the Swift version (e.g., check Package.swift or build settings). - Determine the platform (SwiftUI vs UIKit, Server vs App). - Assess dependency management (Swift Package Manager, CocoaPods). 2. Reason (Planning Phase): - Evaluate the…

    Perceive (Version Awareness):Identify the Swift version (e.g., check Package.swift or build settings).Determine the platform (SwiftUI vs UIKit, Server vs App).
  2. 02

    Trigger On

    The user asks to write, debug, refactor, or review Swift code.

    The user asks to write, debug, refactor, or review Swift code.The project directory contains .swift, Package.swift, or .xcodeproj.Development involves iOS (SwiftUI/UIKit), macOS, or Server-side Swift (Vapor).
  3. 03

    Feature Roadmap (Swift 5.0 - 6+)

    Result Type: Standardized error handling.

    Result Type: Standardized error handling.Property Wrappers: Encapsulating property logic (e.g., @Published).Opaque Types: Hiding implementation details (some View).
  4. 04

    Swift 5.0 - 5.4 (Foundation)

    Result Type: Standardized error handling.

    Result Type: Standardized error handling.Property Wrappers: Encapsulating property logic (e.g., @Published).Opaque Types: Hiding implementation details (some View).

Permission review

Static risk signals and limitations

No configured static risk pattern was detected

This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score85/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars7SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
Benknightdark/neo-skills
Skill path
skills/neo-swift/SKILL.md
Commit
c3e3d1bcf6aae00a729ceab257e6a68dd40d89ec
License
MIT
Collected
2026-08-05
Default branch
main
View the original SKILL.md

Modern Swift (5.0+) Expert Skill

Trigger On

  • The user asks to write, debug, refactor, or review Swift code.
  • The project directory contains *.swift, Package.swift, or *.xcodeproj.
  • Development involves iOS (SwiftUI/UIKit), macOS, or Server-side Swift (Vapor).
  • Code modernization is needed (e.g., migrating to Structured Concurrency or Swift 6 language mode).

Workflow

  1. Perceive (Version Awareness):
    • Identify the Swift version (e.g., check Package.swift or build settings).
    • Determine the platform (SwiftUI vs UIKit, Server vs App).
    • Assess dependency management (Swift Package Manager, CocoaPods).
  2. Reason (Planning Phase):
    • Evaluate the use of modern syntax (e.g., async/await, Result, @propertyWrapper).
    • Decide on memory management strategies (ARC, weak/unowned).
    • For UI tasks, prioritize SwiftUI for modern apps or UIKit for legacy support.
  3. Act (Execution Phase):
    • Write swifty, concise code following Apple's API Design Guidelines.
    • Implement type-safe and protocol-oriented solutions.
    • Leverage Structured Concurrency (Task, async let) for asynchronous operations.
  4. Validate (Standard Validation):
    • Check for memory leaks (retain cycles) using capture lists.
    • Verify Swift 6 concurrency safety (data race detection).
    • Ensure naming conventions follow the standard lowercamelCase for members and PascalCase for types.

Feature Roadmap (Swift 5.0 - 6+)

Swift 5.0 - 5.4 (Foundation)

  • Result Type: Standardized error handling.
  • Property Wrappers: Encapsulating property logic (e.g., @Published).
  • Opaque Types: Hiding implementation details (some View).
  • Result Builders: DSL support for SwiftUI.

Swift 5.5 - 5.10 (Modern Concurrency)

  • Async/Await: Linear asynchronous code.
  • Actors: Thread-safe state isolation.
  • Distributed Actors: Communicating across processes.
  • Non-copyable Types: Explicit control over object ownership.

Swift 6+ (Safety & Performance)

  • Full Data Isolation: Compile-time data race prevention.
  • Typed Throws: Explicitly defining error types.
  • Embedded Swift: Running Swift on restricted environments.

Coding Standards

  • Conciseness: Use trailing closures and shorthand argument names where appropriate.
  • Safety: Prefer if let or guard let over force unwrapping (!).
  • Purity: Prefer struct (Value Types) over class (Reference Types) for data models.
  • Concurrency: Avoid Thread.sleep or legacy completion handlers; use structured concurrency.

Deliver

  • Version-Optimized Code: Provide code using the best features of the target Swift version.
  • SwiftUI/UIKit Insights: Recommend patterns based on the UI framework used.
  • Concurrency Migration: Provide strategies for moving to Swift 6 strict concurrency checks.

Validate

  • Ensure code compiles without warnings in the target Swift version.
  • Validate that closure capture lists correctly handle object lifecycles.
  • Confirm that error handling uses the do-catch or throws patterns correctly.

Documentation

Official References

Internal References

Alternatives

Compare before choosing

Computed 976

mgiovani/cc-arsenal

team-review

Multi-agent review team: architecture, security, performance, testing, style, docs/UX, plus an adversary that cross-examines the other 6, for security-sensitive, architectural, or large PRs (15+ files) where a single-agent pass risks missing cross-cutting issues. Use for auth/payments/PII changes, schema/pattern changes, compliance sign-off, or when asked to 'get the review team on this' / 'multi-agent review' / 'thorough review before merge'. For a standard PR or a quick pre-merge check, use /r

Computed 964,944

dotnet/skills

dotnet-webapi

Guides creation and modification of ASP.NET Core Web API endpoints with correct HTTP semantics, OpenAPI metadata, and error handling. USE FOR: adding new API endpoints (controllers or minimal APIs), wiring up OpenAPI/Swagger, creating .http test files, setting up global error handling middleware. DO NOT USE FOR: general C# coding style, EF Core data access or query optimization (use optimizing-ef-core-queries), frontend/Blazor work, gRPC services, or SignalR hubs.

Computed 96107

AI-Unified-Process/marketplace

reverse-engineer

Reverse-engineers an existing software project into AI Unified Process artifacts: a PlantUML use case diagram, per-use-case specification documents, and an entity model with a Mermaid ER diagram. Use when the user asks to "reverse engineer this codebase", "extract use cases from existing code", "document the system we already have", "generate use case specs from controllers", "derive an entity model from the database", "create AIUP artifacts from a legacy project", or mentions reverse engineerin

Computed 9510,879

Jeffallan/claude-skills

fastapi-expert

Use when building high-performance async Python APIs with FastAPI and Pydantic V2. Invoke to create REST endpoints, define Pydantic models, implement authentication flows, set up async SQLAlchemy database operations, add JWT authentication, build WebSocket endpoints, or generate OpenAPI documentation. Trigger terms: FastAPI, Pydantic, async Python, Python API, REST API Python, SQLAlchemy async, JWT authentication, OpenAPI, Swagger Python.