xcode27-skills

作者 superagents-lab已验证

Apple's official Agent Skills exported from Xcode 27 — SwiftUI, UIKit modernization, Swift Testing, C bounds-safety, and security hardening for AI coding agents.

128
Stars
8
Forks
Python
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/superagents-lab/xcode27-skills

快速入门

使用 xcode27-skills 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

Xcode 27 Skills

A collection of Agent Skills exported from Xcode 27. These skills give AI coding agents (Claude Code, etc.) authoritative, up-to-date guidance for building Apple platform apps — covering SwiftUI, UIKit modernization, Swift Testing, C bounds-safety, Xcode security hardening, and on-device verification.

Attribution The content of these skills was authored and published by Apple and exported from Xcode 27. This repository is a redistribution for convenience and reference only. All rights to the underlying guidance belong to Apple. No license is granted by this repository over Apple's content.

Skills

Skill Purpose

swiftui-specialist Best practices and idiomatic patterns for SwiftUI — structure, data flow, environment, modifiers, localization, animations, ForEach, and soft-deprecated APIs.

swiftui-whats-new-27 New SwiftUI APIs, behaviors, and deprecations in the 2027 OS releases (iOS/macOS/watchOS/tvOS/visionOS 27) — @State macro, reorderable, swipe actions, toolbar overflow, AsyncImage, item bindings, document-based apps.

uikit-app-modernization Modernize UIKit apps for multi-window environments — replace legacy shared-state APIs, migrate to scene lifecycle, support dynamic scene sizing.

test-modernizer Modernize test suites to use modern Swift Testing features or migrate from XCTest.

c-bounds-safety Guide for the C -fbounds-safety language extension — language model, pointer annotations, adoption, build settings, and runtime debugging.

audit-xcode-security-settings Audit and progressively enable security-oriented Xcode build settings — compiler warnings, static analyzer checkers, and Enhanced Security hardening.

device-interaction Verify iOS app behavior on device or simulator via screenshots, UI hierarchy, and touch interactions.

Installation

Each top-level directory in this repo is a self-contained skill. Pick whichever method fits your agent.

Option 1 — npx skills (universal, recommended)

The skills CLI auto-detects your agent (Claude Code, Codex, etc.) and installs into it. Point it at this repo with the owner/repo shorthand:

# Pick interactively from the list of skills:
npx skills add superagents-lab/xcode27-skills

# Install one specific skill:
npx skills add superagents-lab/xcode27-skills --skill swiftui-specialist

# Install all seven:
npx skills add superagents-lab/xcode27-skills --skill '*'

Useful flags: --list to preview the skills without installing, -g/--global to install at the user level instead of the current project, and --copy to copy files instead of symlinking. Swap in any skill name from the table above.

Requires Node. If npx is missing, install it first: brew install node.

Option 2 — Manual install (any agent)

A skill is just a directory containing a SKILL.md, so any agent that supports the Agent Skills format can use it — clone the repo and copy the skill directories into wherever your agent looks for skills.

git clone https://github.com/superagents-lab/xcode27-skills.git

# Copy all seven skills, or just the ones you want, into your agent's skills directory:
cp -R xcode27-skills/*/ <your-skills-directory>/
cp -R xcode27-skills/swiftui-specialist <your-skills-directory>/

The agent auto-discovers any directory containing a SKILL.md and surfaces it when a task matches the skill's description.

Structure

Each skill is a directory containing a SKILL.md (with YAML frontmatter — name, description, etc.) and optional references/ and scripts/ subdirectories that the agent loads on demand.

<skill-name>/
├── SKILL.md          # entry point + metadata
├── references/       # detailed docs loaded as needed
└── scripts/          # helper scripts (where present)

Usage

Once installed, the agent surfaces a skill automatically when your request matches its description — you don't need to invoke it explicitly. In Claude Code you can also trigger one directly by name, e.g. /swiftui-specialist, and add focus hints like "check for soft-deprecated APIs" or "modernize these XCTest cases".

常见问题

What is xcode27-skills?

xcode27-skills is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by superagents-lab. Apple's official Agent Skills exported from Xcode 27 — SwiftUI, UIKit modernization, Swift Testing, C bounds-safety, and security hardening for AI coding agents. It has 128 GitHub stars.

Is xcode27-skills safe to use?

Yes. xcode27-skills passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install xcode27-skills?

Clone the repository with "git clone https://github.com/superagents-lab/xcode27-skills" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is xcode27-skills written in?

xcode27-skills is primarily written in Python. It is open-source under superagents-lab on GitHub, so you can review or fork the full source.

Are there alternatives to xcode27-skills?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh xcode27-skills against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情