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

swift-focusengine-proSwift focusengine 专业版

Agent Skill

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

总安装

1,426

周安装

60

GitHub Stars

7

下载量

499
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/mhaviv/swift-focusengine-agent-skill --skill swift-focusengine-pro

简介

swift-focusengine-pro 聚焦 tvOS/macOS 焦点导航反模式检测。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中审查 SwiftUI 焦点逻辑。
  • 通过 GitHub 安装,提供详细反模式示例与修复指南。
  • 使用前应确认宿主环境是否支持 UIKit/SwiftUI 混合调试。
  • 适用于苹果生态界面交互质量保障团队。

SKILL.md

Review focus management code for correctness, modern API usage, and adherence to Apple's focus engine rules. Covers all Apple platforms. Report only genuine problems — do not nitpick or invent issues.

Review process:

  1. Check for critical anti-patterns using references/anti-patterns.md.
  2. Determine the target platform and load the appropriate references:

- tvOS: references/swiftui-focus.md and references/uikit-focus.md. - iOS/iPadOS: references/ios-focus.md (focus groups, halo, keyboard nav). - watchOS: references/watchos-focus.md (Digital Crown, sequential focus). - visionOS: references/visionos-focus.md (gaze, hover effects) and references/realitykit-focus.md (RealityKit entities, gestures, volumes). - macOS: references/macos-focus.md (key view loop, focus ring, NSView focus, focusedValue for menus, Mac Catalyst). - For cross-platform: load all relevant references.

  1. Check focus styling and visual feedback using references/focus-styling.md.
  2. Verify focus restoration and data reload handling using references/focus-restoration.md.
  3. Audit layout patterns for focus section isolation using references/layout-patterns.md.
  4. Check async/await and data loading focus patterns using references/async-focus.md.
  5. Verify accessibility integration using references/accessibility-focus.md.
  6. Check debugging and testing practices using references/debugging.md.

If doing a partial review, load only the relevant reference files.

Core Instructions

tvOS

  • tvOS uses a focus-based navigation model — every interactive element must be reachable via the Siri Remote's directional pad.
  • Focus movement is purely geometric — the focus engine draws a rectangle from the currently focused view in the swipe direction and picks the nearest focusable view in that rectangle.
  • If nothing is in the geometric path, focus does not move. Period. Use .focusSection() (SwiftUI) or UIFocusGuide (UIKit) to bridge gaps.
  • Never use .disabled() on tvOS to toggle interactivity — it removes views from the focus chain entirely. .allowsHitTesting(false) is unreliable on tvOS (may map to isUserInteractionEnabled = false). Preferred: gate the action inside the button closure, or use the dual @FocusState + .disabled() gating pattern for lists (anti-pattern #25).
  • prefersDefaultFocus(_:in:) does NOT work inside ScrollView on tvOS — use defaultFocus(_:_:priority:) instead. Note: defaultFocus with .userInitiated only fires on initial appearance, NOT on every re-entry.
  • Prefer ScrollPosition over ScrollViewReader.scrollTo() — imperative scrollTo creates feedback loops with the focus engine (anti-pattern #26).
  • Always test on real Apple TV hardware — Simulator focus behavior differs.

iOS/iPadOS

  • Focus is a secondary interaction model — it only activates with a hardware keyboard connected.
  • Tab moves between focus groups; arrow keys move within a group. This two-level model does NOT exist on tvOS.
  • Use focusGroupIdentifier (iOS 15+, UIKit) to define custom focus groups — this API is NOT available on tvOS.
  • Use UIFocusHaloEffect to customize the system focus ring — NOT available on tvOS.
  • Set allowsFocus = true and selectionFollowsFocus = true on collection/table views for keyboard navigation.
  • Your app must work perfectly without keyboard focus — always test with touch only.

watchOS

  • Focus routes Digital Crown input to the correct view — shown by a green border.
  • Focus is sequential (layout order), NOT spatial/directional.
  • .focusSection() is NOT available on watchOS.
  • .focusable() MUST come BEFORE .digitalCrownRotation() — reversing silently breaks crown input.
  • Do NOT add .focusable() to system controls (Picker, Stepper, Toggle) — they already handle it.

visionOS

  • Eye gaze = hover targeting, NOT focus. onHover(perform:) does NOT fire from gaze — only from pointer devices.
  • Use .hoverEffect() for gaze visual feedback. System controls get it automatically; custom views need it explicitly.
  • @FocusState only activates with keyboard (Magic Keyboard), VoiceOver, or Switch Control.
  • RealityKit entities need InputTargetComponent + CollisionComponent + HoverEffectComponent for gaze interaction.
  • .focusEffectDisabled() hides keyboard focus ring; .hoverEffectDisabled() disables gaze hover — they are different.

macOS

  • macOS uses a key view loop — Tab/Shift-Tab moves between views in a defined sequence. This is NOT spatial like tvOS.
  • Custom NSView subclasses must override acceptsFirstResponder to return true — the default is false, making the view invisible to Tab navigation.
  • recalculatesKeyViewLoop = true on NSWindow overwrites all manual nextKeyView connections. Pick one approach.
  • Focus ring customization: override focusRingType, focusRingMaskBounds, and drawFocusRingMask() on NSView.
  • focusedValue / focusedSceneValue are critical on macOS for making menu bar commands respond to the current selection.
  • Mac Catalyst: inherits iPad UIFocusSystem. If the iPad app doesn't support keyboard focus, the Catalyst app won't either.
  • Full Keyboard Access is OFF by default — most users only Tab between text fields and lists, not all controls.

All Platforms

  • Never add .focusable() to Buttons or NavigationLinks — they are already focusable. Adding it creates a double-focus wrapper.
  • Do not mix @FocusState (SwiftUI) and UIKit focus APIs (setNeedsFocusUpdate) on the same view hierarchy branch.
  • VoiceOver focus (@AccessibilityFocusState) is completely separate from UI focus (@FocusState).

Output Format

Organize findings by file. For each issue:

  1. State the file and relevant line(s).
  2. Name the rule being violated (e.g., "Use .allowsHitTesting(false) instead of .disabled()").
  3. Show a brief before/after code fix.

Skip files with no issues. End with a prioritized summary of the most impactful changes to make first.

Example output:

TopicsView.swift

Line 49: .disabled() removes view from tvOS focus chain (anti-pattern #1).

// Before
TopicClipsGridView(...)
    .disabled(!wrapper.isGridFocusable)

// After — gate the action, not the view
TopicClipsGridView(...)
    .opacity(wrapper.isGridFocusable ? 1.0 : 0.5)
// Move the guard inside the button/action closures instead

Line 72: Missing .focusSection() on horizontal ScrollView in vertical layout.

// Before
ScrollView(.horizontal) {
    HStack { /* row items */ }
}

// After
ScrollView(.horizontal) {
    HStack { /* row items */ }
}
.focusSection()

Summary

  1. Focus breakage (critical): .disabled() on line 49 removes grid from focus chain entirely.
  2. Focus jumping (high): Missing .focusSection() causes cross-row focus jumps.

End of example.

References

  • references/anti-patterns.md — Critical mistakes that break focus navigation: 14 tvOS + 7 macOS-specific anti-patterns.
  • references/swiftui-focus.md — SwiftUI focus APIs: @FocusState, focusSection, prefersDefaultFocus, focused, defaultFocus, onMoveCommand.
  • references/uikit-focus.md — UIKit focus APIs: UIFocusEnvironment, UIFocusGuide, shouldUpdateFocus, didUpdateFocus, preferredFocusEnvironments, UIFocusDebugger.
  • references/focus-styling.md — Focus visual feedback: ButtonStyle with isFocused, FocusBorder, hover effects, scale/shadow animations, macOS focus ring styling.
  • references/focus-restoration.md — Handling focus after data reloads, navigation, and async updates.
  • references/layout-patterns.md — Common tvOS layouts: table-of-collections, sidebar+content, tab bar, horizontal shelves.
  • references/ios-focus.md — iOS/iPadOS-specific: focus groups, focusGroupIdentifier, UIFocusHaloEffect, keyboard navigation, allowsFocus, selectionFollowsFocus.
  • references/watchos-focus.md — watchOS-specific: Digital Crown routing, sequential focus, digitalCrownRotation, focusable ordering.
  • references/visionos-focus.md — visionOS-specific: gaze vs focus vs hover, HoverEffect, HoverEffectGroup, RealityKit HoverEffectComponent, spatial input.
  • references/macos-focus.md — macOS-specific: key view loop, NSView focus (acceptsFirstResponder, canBecomeKeyView), focus ring customization, focusedValue for menus, Mac Catalyst, Full Keyboard Access.
  • references/realitykit-focus.md — RealityKit entity hover: HoverEffectComponent, collision shapes, gestures, shader effects, mixed SwiftUI+RealityKit hierarchies.
  • references/async-focus.md — Async focus patterns: @MainActor coordination, focus after data load, NavigationStack pop, Task cancellation, debouncing.
  • references/accessibility-focus.md — Accessibility integration: @AccessibilityFocusState, VoiceOver + focus, Full Keyboard Access, Switch Control, Reduce Motion.
  • references/debugging.md — UIFocusDebugger, _whyIsThisViewNotFocusable, launch arguments, Quick Look, macOS first responder debugging.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.14%
按下载量换算175

Claude

29.47%
按下载量换算147

Cursor

19.86%
按下载量换算99

Gemini CLI

10.29%
按下载量换算51

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills