tvOS platform-specific development with focus system, large screen UI, Siri Remote, and media playback. Use when building Apple TV apps, video streaming, or living room experiences.
How this skill is triggered — by the user, by Claude, or both
Slash command
/fuse-swift-apple-expert:tvosThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
tvOS-specific development for Apple TV living room experiences.
tvOS-specific development for Apple TV living room experiences.
Before ANY implementation, use TeamCreate to spawn 3 agents:
After implementation, run fuse-ai-pilot:sniper for validation.
| Feature | Benefit |
|---|---|
| Focus system | Large screen navigation |
| Liquid Glass | Modern TV UI (tvOS 26) |
| Media playback | AVKit integration |
| Remote control | Siri Remote gestures |
Button("Watch Now") { }
.buttonStyle(.bordered)
.glassEffect(.regular) // Glass effect on focus
TabView {
// Tab bar with Liquid Glass
}
struct ContentView: View {
@FocusState private var focused: Bool
var body: some View {
Button("Play") { }
.focused($focused)
.scaleEffect(focused ? 1.1 : 1.0)
}
}
| Need | Reference |
|---|---|
| Focus, selection states | focus-system.md |
| AVKit, video playback | media-playback.md |
| Siri Remote, gestures | remote-control.md |
npx claudepluginhub fusengine/agents --plugin fuse-swift-apple-expertProvides tvOS design guidelines for focus-based navigation, Siri Remote input, and 10-foot UI. Helps build living room experiences with proper focus states and parallax effects.
Build and migrate iOS, macOS, iPadOS, watchOS, tvOS, and visionOS apps with Apple's Liquid Glass design system (iOS 26+, macOS 26 Tahoe+). Use when creating new SwiftUI apps targeting Apple's 2025+ platforms, migrating existing apps to Liquid Glass, applying .glassEffect(), .backgroundExtensionEffect(), .buttonStyle(.glass), GlassEffectContainer, glass toolbars, glass tab bars, glass sheets, or any Liquid Glass UI work. Also use when the user asks about modern Apple design, navigation patterns with glass, or SwiftUI best practices for the latest OS versions.
Reviews and fixes focus management code for Apple platforms (tvOS, iOS, watchOS, visionOS, macOS) covering SwiftUI, UIKit, AppKit, and RealityKit.