Minimal tvOS app showing MaestroKit SDK integration.
Hello World/
├── Model/Core/Hello_WorldApp.swift # SDK configuration
├── View/Core/ContentView.swift # Panel integration
└── ViewModel/ContentViewModel.swift # Event delegate
MaestroManager.shared.configure(
siteID: "your-site-id",
jwt: "",
maestroManagerDelegate: yourDelegate,
maestroWorkingEnvironment: .qa,
defaultPanel: .stats
)eventInterface = await MaestroManager.shared.userDidStartWatchingEvent(
eventID: "your-event-id",
delegate: self
)MaestroPanel()
.frame(width: 676)Open Hello World.xcodeproj and run on Apple TV Simulator.