AgentSkillsCN

tvos

tvOS 平台专用开发,聚焦系统、大屏幕 UI、Siri Remote 及媒体播放。适用于构建 Apple TV 应用、视频流媒体或客厅体验时。

SKILL.md
--- frontmatter
name: tvos
description: 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.
versions:
  tvos: 26
user-invocable: false
references: references/focus-system.md, references/media-playback.md, references/remote-control.md
related-skills: swift-core, swiftui-core, mcp-tools

tvOS Platform

tvOS-specific development for Apple TV living room experiences.

Agent Workflow (MANDATORY)

Before ANY implementation, use TeamCreate to spawn 3 agents:

  1. fuse-ai-pilot:explore-codebase - Analyze existing tvOS patterns
  2. fuse-ai-pilot:research-expert - Verify latest tvOS 26 docs via Context7/Exa
  3. mcp__apple-docs__search_apple_docs - Check tvOS patterns

After implementation, run fuse-ai-pilot:sniper for validation.


Overview

When to Use

  • Building Apple TV applications
  • Video and audio streaming
  • Focus-based navigation
  • Siri Remote interactions
  • Multi-user experiences
  • Game controller support

Why tvOS Skill

FeatureBenefit
Focus systemLarge screen navigation
Liquid GlassModern TV UI (tvOS 26)
Media playbackAVKit integration
Remote controlSiri Remote gestures

tvOS 26 Features

Liquid Glass on TV

swift
Button("Watch Now") { }
    .buttonStyle(.bordered)
    .glassEffect(.regular)  // Glass effect on focus

TabView {
    // Tab bar with Liquid Glass
}

Focus System

swift
struct ContentView: View {
    @FocusState private var focused: Bool

    var body: some View {
        Button("Play") { }
            .focused($focused)
            .scaleEffect(focused ? 1.1 : 1.0)
    }
}

Reference Guide

NeedReference
Focus, selection statesfocus-system.md
AVKit, video playbackmedia-playback.md
Siri Remote, gesturesremote-control.md

Best Practices

  1. Large UI elements - Readable from 10 feet
  2. Focus feedback - Clear visual indication
  3. Simple navigation - Minimal depth
  4. Remote-friendly - Siri Remote gestures
  5. Media-first - Optimize for video/audio
  6. Multi-user - Support user switching