Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

axiom-swift-modernaxiom Swift modern 搜索

Agent Skill

axiom-swift-modern 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,706

周安装

69

GitHub Stars

873

下载量

535
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:axiom-swift-modern(axiom Swift modern 搜索)
来源仓库:https://github.com/charleswiltgen/axiom
仓库路径:skills/axiom-swift-modern
安装命令:
npx skills add https://github.com/charleswiltgen/axiom --skill axiom-swift-modern
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/charleswiltgen/axiom --skill axiom-swift-modern

简介

用于纠正 Claude 生成的过时 Swift 模式,提供现代 API 替换方案。

  • 适用于 Date()、filter().count 等常见过时用法修正。
  • 聚焦软性弃用 API 和边缘案例,提升代码清晰度和效率。
  • 安装前建议确认权限范围和维护状态,避免触发联网或命令执行操作。
  • axiom-swift-modern 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Modern Swift Idioms

Purpose

Claude frequently generates outdated Swift patterns from its training data. This skill corrects the most common ones — patterns that compile fine but use legacy APIs when modern equivalents are clearer, more efficient, or more correct.

Philosophy: "Don't repeat what LLMs already know — focus on edge cases, surprises, soft deprecations." (Paul Hudson)

Modern API Replacements

Old PatternModern SwiftSinceWhy
Date()Date.now5.6Clearer intent
filter {}.countcount(where:)5.0Single pass, no intermediate allocation
replacingOccurrences(of:with:)replacing(_:with:)5.7Swift native, no Foundation bridge
CGFloatDouble5.5Implicit bridging; exceptions: optionals, inout, ObjC-bridged APIs
Task.sleep(nanoseconds:)Task.sleep(for:.seconds(1))5.7Type-safe Duration API
DateFormatter().formatted() / FormatStyle5.5No instance management, localizable by default
String(format: "%.2f", val)val.formatted(.number.precision(.fractionLength(2)))5.5Type-safe, localized
localizedCaseInsensitiveContains()localizedStandardContains()5.0Handles diacritics, ligatures, width variants
"\(firstName) \(lastName)"PersonNameComponents with .formatted()5.5Respects locale name ordering
"yyyy-MM-dd" with DateFormattertry Date(string, strategy:.iso8601)5.6Modern parsing (throws); use "y" not "yyyy" for display
contains() on user inputlocalizedStandardContains()5.0Required for correct text search/filtering

Modern Syntax

Old PatternModern SwiftSince
if let value = value {if let value {5.7
Explicit return in single-expressionOmit return; if/switch are expressions5.9
Circle() in modifiers.circle (static member lookup)5.5
import UIKit alongside import SwiftUIOften not needed — SwiftUI re-exports most UIKit/AppKit types. Retain for UIKit-only APIs (UIApplication, etc.)5.5

Foundation Modernization

Old PatternModern FoundationSince
FileManager.default.urls(for:.documentDirectory,...)URL.documentsDirectory5.7
url.appendingPathComponent("file")url.appending(path: "file")5.7
books.sorted {$0.author < $1.author} (repeated)Conform to Comparable, call .sorted()
"yyyy" in date format for display"y" — correct in all calendar systems

SwiftUI Convenience APIs Claude Misses

  • ContentUnavailableView.search(text: searchText) (iOS 17+) automatically includes the search term — no need to compose a custom string
  • LabeledContent in Forms (iOS 16+) provides consistent label alignment without manual HStack layout
  • confirmationDialog() must attach to triggering UI — Liquid Glass morphing animations depend on the source element

Swift 6.3 Concurrency Posture

Write Swift 6.3-first code, not Swift 5-era code. These defaults apply to ALL new Swift code, not just when concurrency errors appear.

DefaultRationale
Assume strict concurrency and MainActor default isolation for app/UI modulesSwift 6.3 language mode; Xcode 26+ default for new projects
Prefer async/await over GCD, DispatchGroup, and callback pyramidsGCD is a bridge pattern for legacy APIs, not default architecture
Async does not mean background — use @concurrent (Swift 6.2+) to force off-mainAsync functions resume on the same actor they were called from
Prefer structured concurrency (async let, TaskGroup) over unstructured Task {}Structured tasks propagate cancellation and errors automatically
Do not use Task.detached unless there is a specific, stated reasonLoses actor context, priority, and task-local values
Prefer Sendable structs/enums for data that crosses actor boundariesValue types are inherently safe to share
Use actors only for truly shared mutable state across concurrency domainsDon't make every class an actor — UI code stays @MainActor
Treat @unchecked Sendable, @preconcurrency, nonisolated(unsafe) as temporary bridge toolsEach should have a removal ticket, not be permanent
Do not add escape hatches just to silence compiler errorsThey hide data races that crash in production

For detailed patterns, decision trees, and error-specific guidance, see axiom-swift-concurrency.

Common Claude Hallucinations

These patterns appear frequently in Claude-generated code:

  1. Creates DateFormatter instances inline — Use .formatted() or FormatStyle instead. If a formatter must exist, make it static let.
  2. Uses DispatchQueue.main.async — Use @MainActor or MainActor.run. GCD is a bridge pattern, not a default.
  3. Uses DispatchQueue.global().async for background work — Use @concurrent (Swift 6.2+) or extract to an actor.
  4. Uses Task.detached to "make it background" — Use @concurrent. Task.detached loses actor context.
  5. Uses CGFloat for SwiftUI parametersDouble works everywhere since Swift 5.5 implicit bridging.
  6. Generates guard let x = x else — Use guard let x else shorthand.
  7. Returns explicitly in single-expression computed properties — Omit return.
  8. Spawns unstructured Task {} in loops — Use TaskGroup for dynamic parallel work.
  9. Adds @unchecked Sendable to silence warnings — Convert to actor or proper Sendable type.

Resources

Skills: axiom-swift-performance, axiom-swift-concurrency, axiom-swiftui-architecture

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

40.29%
按下载量换算216

Claude

29.72%
按下载量换算159

Cursor

17.77%
按下载量换算95

Gemini CLI

8.88%
按下载量换算48

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills