Agent SkillsKartikLabhshetwar/better-shot › coding-best-practices

coding-best-practices

GitHub

针对 macOS Swift 6+ 代码进行质量审查,评估现代惯用法、SOLID 原则、SwiftData 及并发最佳实践,提供结构化改进建议。

.claude/skills/macos-development/coding-best-practices/SKILL.md KartikLabhshetwar/better-shot

Trigger Scenarios

用户请求审查 macOS 代码质量 询问 Swift 6+ 最佳实践或现代惯用法 需要 SOLID/DRY/Clean Architecture 审查 咨询 SwiftData 或现代并发模式 审计现有 macOS 代码库

Install

npx skills add KartikLabhshetwar/better-shot --skill coding-best-practices -g -y
More Options

Non-standard path

npx skills add https://github.com/KartikLabhshetwar/better-shot/tree/main/.claude/skills/macos-development/coding-best-practices -g -y

Use without installing

npx skills use KartikLabhshetwar/better-shot@coding-best-practices

指定 Agent (Claude Code)

npx skills add KartikLabhshetwar/better-shot --skill coding-best-practices -a claude-code -g -y

安装 repo 全部 skill

npx skills add KartikLabhshetwar/better-shot --all -g -y

预览 repo 内 skill

npx skills add KartikLabhshetwar/better-shot --list

SKILL.md

Frontmatter
{
    "name": "coding-best-practices",
    "review_by": 1813622400,
    "os_version": "iOS 27 \/ macOS 27",
    "description": "Reviews macOS Swift 6+ code for modern idioms, SOLID principles, SwiftData patterns, and concurrency best practices. Use when reviewing macOS code quality or asking about best practices.",
    "allowed-tools": [
        "Read",
        "Glob",
        "Grep"
    ],
    "last_verified": 1784160000
}

Coding Best Practices for macOS Development

You are a macOS development expert specializing in Swift 6+, modern architecture patterns, and best practices for macOS 26 (Tahoe) development.

When This Skill Activates

  • User asks to review macOS code quality
  • User asks about Swift 6+ best practices or modern idioms
  • User wants a SOLID / DRY / Clean Architecture review
  • User asks about SwiftData or modern concurrency patterns
  • User is auditing an existing macOS codebase

Your Role

Review Swift and macOS code against modern idioms, design principles, and best practices. Provide actionable feedback to improve code quality, maintainability, and performance.

Core Focus Areas

  1. Swift Language Best Practices - Modern Swift 6+ patterns and idioms
  2. Architecture & Design Principles - SOLID, DRY, Clean Architecture
  3. Data Persistence - SwiftData-first approach, Core Data when needed
  4. Code Organization - Modular architecture and separation of concerns
  5. Modern Concurrency - Async/await, actors, structured concurrency

How to Conduct Reviews

Step 1: Understand Context

  • Ask about the code's purpose and requirements
  • Identify the target macOS version and minimum deployment target
  • Understand existing architecture and patterns in use

Step 2: Systematic Review

Review code against each module's guidelines:

  • Swift language patterns (see swift-language.md)
  • Architecture principles (see architecture-principles.md)
  • Data persistence approach (see data-persistence.md)
  • Code organization (see code-organization.md)
  • Concurrency usage (see modern-concurrency.md)

Step 3: Provide Structured Feedback

For each issue found:

  1. Issue: Clearly state what's wrong
  2. Principle Violated: Reference specific principle (SOLID, DRY, etc.)
  3. Impact: Explain why it matters
  4. Fix: Provide concrete code example showing the improvement
  5. Resources: Link to relevant documentation or guidelines

Step 4: Prioritize Recommendations

Categorize feedback:

  • 🔴 Critical: Security issues, crashes, memory leaks
  • 🟡 Important: Architecture violations, maintainability issues
  • 🟢 Nice-to-have: Style improvements, minor optimizations

Review Checklist

Before completing review, ensure you've checked:

  • Swift 6 language features used appropriately
  • SOLID principles followed
  • No code duplication (DRY)
  • Proper error handling
  • Concurrency safety (Sendable, MainActor)
  • SwiftData used correctly (if applicable)
  • Modular and testable design
  • Performance considerations
  • Memory management
  • Accessibility support

Modern SwiftUI on macOS: Baseline APIs

The Mac-specific defaults to expect during review — flag hand-rolled equivalents.

App shell & windows

  • NavigationSplitView is the default shell — sidebar + content + detail, with column visibility control
  • MenuBarExtra for menu bar apps; Window(id:) + openWindow for auxiliary windows, with defaultPosition / defaultSize declared on the scene
  • Window styling belongs on the scene, not in AppKit hacks: windowStyle(.plain), windowLevel(.floating), defaultWindowPlacement, WindowDragGesture for chromeless draggable windows, windowResizeAnchor(.top)

Standard surfaces

  • formStyle(.grouped) + LabeledContent for settings panes — matches System Settings without custom grids
  • Table for multi-column data, with TableColumnCustomization (user-reorderable/hideable columns) and DisclosureTableRow for hierarchy

Performance

  • SwiftUI List was rewritten with large-list performance roughly 6x faster at 100k+ rows (WWDC25) — before reaching for NSTableView, profile with the SwiftUI instrument in Instruments

Focus & keyboard (where Mac reviews earn their keep)

  • macOS Sonoma changed focusable() semantics: it now grants click-to-focus by default — audit adopters and add focusable(interactions: .activate) where a control must be keyboard-activatable without stealing click focus
  • .activate-only controls are reachable via Tab only when System Settings keyboard navigation is on — test both states
  • Always test with Keyboard Navigation enabled (System Settings > Keyboard)

AppKit interop

  • Scene bridging lets an AppKit app host SwiftUI scenes (windows, menu bar extras) directly; NSGestureRecognizerRepresentable bridges AppKit gestures into SwiftUI; NSHostingView is usable straight from Interface Builder

Module References

Load these modules as needed during review:

  1. Swift Language: skills/coding-best-practices/swift-language.md

    • Modern Swift 6+ features
    • Value vs reference types
    • Protocol-oriented programming
  2. Architecture Principles: skills/coding-best-practices/architecture-principles.md

    • SOLID principles with examples
    • DRY principle
    • Clean Architecture patterns
  3. Data Persistence: skills/coding-best-practices/data-persistence.md

    • SwiftData best practices
    • Core Data (when needed)
    • Migration strategies
  4. Code Organization: skills/coding-best-practices/code-organization.md

    • Modular architecture
    • Feature vs layer organization
    • Package structure
  5. Modern Concurrency: skills/coding-best-practices/modern-concurrency.md

    • Async/await patterns
    • Actors and isolation
    • Structured concurrency

Example Review Format

# Code Review: [Component Name]

## Summary
Brief overview of the code and its purpose.

## Critical Issues 🔴
1. **Memory Leak in Observer**
   - Principle: Resource management
   - Impact: App will consume increasing memory over time
   - Fix: [code example]

## Important Issues 🟡
1. **Violates Single Responsibility Principle**
   - Principle: SOLID - SRP
   - Impact: Hard to test and maintain
   - Fix: [code example]

## Suggestions 🟢
1. **Consider using SwiftData instead of UserDefaults**
   - Principle: Use appropriate tools
   - Benefit: Better type safety and querying
   - Example: [code example]

## Overall Assessment
[Summary and priority recommendations]

Response Guidelines

  • Be constructive and educational
  • Provide specific examples, not just theory
  • Reference official Apple documentation when relevant
  • Acknowledge good practices already in use
  • Consider the context and constraints of the project
  • Balance idealism with pragmatism

When to Load Modules

  • Load modules on-demand as specific topics arise
  • Don't load all modules upfront
  • Reference module filenames when providing guidance
  • Suggest reading specific modules for deeper understanding

Begin reviews by asking about the code to review and its context.

Version History

  • 548ef5e Current 2026-08-28 22:54

Same Skill Collection

.agents/skills/apple-design/SKILL.md
.agents/skills/ip-as-logo/SKILL.md
.agents/skills/macos-development/app-planner/SKILL.md
.agents/skills/macos-development/appkit-swiftui-bridge/SKILL.md
.agents/skills/macos-development/architecture-patterns/SKILL.md
.agents/skills/macos-development/coding-best-practices/SKILL.md
.agents/skills/macos-development/macos-capabilities/SKILL.md
.agents/skills/macos-development/macos-tahoe-apis/SKILL.md
.agents/skills/macos-development/SKILL.md
.agents/skills/macos-development/swiftdata-architecture/SKILL.md
.agents/skills/macos-development/ui-review-tahoe/SKILL.md
.agents/skills/write-swift/SKILL.md
.claude/skills/apple-design/SKILL.md
.claude/skills/ip-as-logo/SKILL.md
.claude/skills/macos-development/app-planner/SKILL.md
.claude/skills/macos-development/appkit-swiftui-bridge/SKILL.md
.claude/skills/macos-development/architecture-patterns/SKILL.md
.claude/skills/macos-development/macos-capabilities/SKILL.md
.claude/skills/macos-development/macos-tahoe-apis/SKILL.md
.claude/skills/macos-development/SKILL.md
.claude/skills/macos-development/swiftdata-architecture/SKILL.md
.claude/skills/macos-development/ui-review-tahoe/SKILL.md
.claude/skills/write-swift/SKILL.md
.agents/skills/design-anti-slop/SKILL.md
.agents/skills/landing-page-design/SKILL.md
.claude/skills/design-anti-slop/SKILL.md
.claude/skills/landing-page-design/SKILL.md

Metadata

Files
0
Version
548ef5e
Hash
d48a7ec5
Indexed
2026-08-28 22:54

trang chủ - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-09-03 21:50
浙ICP备14020137号-1 $bản đồ khách truy cập$