Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问clear审计通过

macos-developermacOS 开发者

Agent Skill

macos-developer 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,903

周安装

161

GitHub Stars

76

下载量

1,275
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill macos-developer

简介

macos-developer 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合围绕仓库状态和代码变更进行整理。

  • 适用于开发协作场景,可在 Codex、Claude、Cursor、Gemini CLI 中辅助项目管理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围和是否触发联网或文件读写。
  • 建议在使用前检查维护状态和实际功能,避免依赖未经验证的自动化行为。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

macOS Developer

Purpose

Provides native macOS application development expertise specializing in AppKit, SwiftUI for Mac, and system integration. Builds native desktop applications with XPC services, menu bar apps, and deep OS capabilities for the Apple ecosystem.

When to Use

  • Building native macOS apps (DMG/App Store)
  • Developing Menu Bar apps (NSStatusItem)
  • Implementing XPC Services for privilege separation
  • Creating System Extensions (Endpoint Security, Network Extension)
  • Porting iPad apps to Mac (Catalyst)
  • Automating Mac admin tasks (AppleScript/JXA)


2. Decision Framework

UI Framework

FrameworkBest ForProsCons
SwiftUIModern AppsDeclarative, simple code.Limited AppKit feature parity.
AppKitSystem ToolsFull control (NSWindow, NSView).Imperative, verbose.
CatalystiPad PortsFree Mac app from iPad code.Looks like an iPad app.

Distribution Channel

  • Mac App Store: Sandboxed, verified, easy updates. (Required for System Extensions).
  • Direct Distribution (DMG): Notarization required. More freedom (Accessibility API, Full Disk Access).

Process Architecture

  • Monolith: Simple apps.
  • XPC Service: Complex apps. Isolates crashes, allows privilege escalation (Helper tool).

Red Flags → Escalate to security-engineer:

  • Requesting "Full Disk Access" without a valid reason
  • Embedding private keys in the binary
  • Bypassing Gatekeeper/Notarization


3. Core Workflows

Workflow 1: Menu Bar App (SwiftUI)

Goal: Create an app that lives in the menu bar.

Steps:

  1. App Setup @main struct MenuBarApp: App {var body: some Scene {MenuBarExtra("Utility", systemImage: "hammer") {Button("Action") {doWork()} Divider() Button("Quit") {NSApplication.shared.terminate(nil)}}}}
  2. Hide Dock Icon

- Info.plist: LSUIElement = YES.



Workflow 3: System Extension (Endpoint Security)

Goal: Monitor file events.

Steps:

  1. Entitlements

- com.apple.developer.endpoint-security.client = YES.

  1. Implementation (C API) es_client_t *client; es_new_client(&client, ^(es_client_t *c, const es_message_t *msg) {if (msg->event_type == ES_EVENT_TYPE_NOTIFY_EXEC) {// Log process execution}});


5. Anti-Patterns & Gotchas

❌ Anti-Pattern 1: Assuming iOS Behavior

What it looks like:

  • Using NavigationView (split view) when a simple Window is needed.
  • Ignoring Menu Bar commands (Cmd+Q, Cmd+S).

Why it fails:

  • Feels alien on Mac.

Correct approach:

  • Support Keyboard Shortcuts.
  • Support Multi-Window workflows.

❌ Anti-Pattern 2: Blocking Main Thread

What it looks like:

  • Running file I/O on main thread.

Why it fails:

  • Spinning Beach Ball of Death (SPOD).

Correct approach:

  • Use DispatchQueue.global() or Swift Task.


Examples

Example 1: Professional Menu Bar Application

Scenario: Build a system utility that lives in the macOS menu bar for quick access.

Development Approach:

  1. Project Setup: SwiftUI with MenuBarExtra
  2. Window Management: Hidden dock icon with popup menu
  3. Settings Integration: UserDefaults for preferences
  4. Status Item: Custom NSStatusItem with icon and menu

Implementation:

@main
struct SystemUtilityApp: App {
    var body: some Scene {
        MenuBarExtra("System Utility", systemImage: "gear") {
            VStack(spacing: 12) {
                Button("Open Preferences") { openPreferences() }
                Button("Check Updates") { checkForUpdates() }
                Divider()
                Button("Quit") { NSApplication.shared.terminate(nil) }
            }
            .padding()
            .frame(width: 200)
        }
    }
}

Key Features:

  • LSUIElement in Info.plist to hide dock icon
  • Keyboard shortcuts for quick actions
  • Background refresh with menu updates
  • Sparkle for automatic updates

Results:

  • Released on Mac App Store with 4.8-star rating
  • 50,000+ active users
  • Featured in "Best New Apps" category

Example 2: Document-Based Application with XPC Services

Scenario: Build a professional document editor with background processing.

Architecture:

  1. Main App: SwiftUI document handling
  2. XPC Service: Background document processing
  3. Sandbox: Proper app sandbox configuration
  4. IPC: NSXPCConnection for communication

XPC Service Implementation:

// Service Protocol
@objc protocol ProcessingServiceProtocol {
    func processDocument(at url: URL, reply: @escaping (URL?) -> Void)
}

// Service Implementation
class ProcessingService: NSObject, ProcessingServiceProtocol {
    func processDocument(at url: URL, reply: @escaping (URL?) -> Void) {
        // Heavy processing in separate process
        let result = heavyProcessing(url: url)
        reply(result)
    }
}

Benefits:

  • Crash isolation (service crash doesn't kill app)
  • Reduced memory footprint
  • Privilege separation for sensitive operations
  • Better App Store approval chances

Example 3: System Extension for Network Monitoring

Scenario: Create a network monitoring tool using System Extension.

Development Process:

  1. Entitlement Configuration: Endpoint security entitlement
  2. System Extension: Network extension implementation
  3. Deployment: Proper notarization and signing
  4. User Approval: System extension approval workflow

Implementation:

// Network extension handler
class NetworkExtensionHandler: NEProvider {
    override func startProtocol(options: [String: Any]?, completionHandler: @escaping (Error?) -> Void) {
        // Start network monitoring
        setupNetworkMonitoring()
        completionHandler(nil)
    }

    override func stopProtocol(with reason: NEProviderStopReason, completionHandler: @escaping () -> Void) {
        // Clean up resources
        stopNetworkMonitoring()
        completionHandler()
    }
}

Requirements:

  • Notarization for distribution outside App Store
  • User-approved system extension
  • Proper entitlements from Apple Developer portal

Best Practices

AppKit and SwiftUI Integration

  • Hybrid Approach: Use SwiftUI for UI, AppKit for complex components
  • NSViewRepresentable: Wrap NSView for SwiftUI use
  • NSHostingView: Embed SwiftUI in AppKit windows
  • Data Flow: Use Observable or StateObject for shared state

Sandboxing and Security

  • Minimal Entitlements: Request only necessary permissions
  • Keychain: Use Keychain for sensitive data storage
  • App Sandbox: Enable for App Store distribution
  • Hardened Runtime: Required for notarization

Distribution and Deployment

  • Code Signing: Always sign before notarization
  • Notarization: Submit to Apple for security validation
  • Auto-Updates: Implement Sparkle for direct distribution
  • DMG Creation: Use create-dmg or similar tools

Performance Optimization

  • Lazy Loading: Defer resource loading until needed
  • Background Tasks: Use BGTaskScheduler for long operations
  • Memory Management: Monitor memory pressure
  • Startup Time: Optimize launch sequence

User Experience

  • Keyboard Navigation: Support full keyboard operation
  • Dark Mode: Properly handle light and dark appearances
  • Accessibility: VoiceOver compatibility from start
  • Window Management: Support multiple windows properly

Quality Checklist

UX:

  • Menus: App supports standard menu commands.
  • Windows: Resizable, supports Full Screen.
  • Dark Mode: Supports System Appearance.
  • Accessibility: VoiceOver works on key elements.

System:

  • Sandboxing: App Sandbox enabled (if App Store).
  • Hardened Runtime: Enabled for Notarization.
  • Code Signing: Properly signed for distribution.
  • Notarization: Submitted and approved by Apple.

Performance:

  • Startup: App launches within 5 seconds.
  • Memory: No memory leaks or excessive usage.
  • Responsive: UI remains responsive during operations.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

28.06%
按下载量换算358

OpenCode

22.69%
按下载量换算289

Codex

19.96%
按下载量换算254

Gemini CLI

13.68%
按下载量换算174

Cursor

8.91%
按下载量换算114

Antigravity

3.79%
按下载量换算48

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills