Community-maintained Agent Skills for complete Swift and Apple-platform app delivery.
72
90%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Medium
Suggest reviewing before use
Use GroupActivities for sessions shared through FaceTime, Messages, AirDrop, or nearby visionOS participation. SharePlay owns invitation, activation, session lifecycle, participants, messaging, journals, and media-coordination handoffs.
Route Game Center authentication/matchmaking to gamekit, tabletop seats and
authoritative board state to tabletopkit, and playback UI to avkit.
Read SharePlay extended patterns when the
task needs a complete long-lived manager, typed message handling, SwiftUI
ShareLink/AirDrop integration, collaborative canvas or game state, participant
tracking, or nearby visionOS behavior.
For ordinary implementation:
GroupActivity with meaningful discovery metadata.Activity.sessions() in one long-lived manager.session.join().The capability adds com.apple.developer.group-session. A group activity is
Codable; keep it to identifiers, URLs, and concise discovery state:
import GroupActivities
struct WatchTogetherActivity: GroupActivity {
let movieID: String
let movieTitle: String
var metadata: GroupActivityMetadata {
var metadata = GroupActivityMetadata()
metadata.title = movieTitle
metadata.type = .watchTogether
metadata.fallbackURL = URL(string: "https://example.com/movie/\(movieID)")
return metadata
}
}Use the metadata type that matches the experience (watchTogether,
listenTogether, createTogether, and so on). Add Transferable only when
using ShareLink, AirDrop, or share sheets—not merely because the activity is
Codable.
for await session in Activity.sessions() listener.join()..invalidated, cancel child tasks and release messenger, journal, and
session state.leave() exits locally; end() terminates the session for everyone. Make the
product choice explicit.| Need | Transport | Constraints |
|---|---|---|
| Small shared state/action | GroupSessionMessenger .reliable | Codable message, under 256 KB |
| High-frequency ephemeral samples | Messenger .unreliable | Loss-tolerant; do not use for authoritative turns/selections |
| Non-time-sensitive attachment | GroupSessionJournal | Transferable, available to late joiners, up to 100 MB |
| Larger/protected asset | App/server transfer | Share an identifier or manifest through SharePlay |
| AVPlayer transport state | AVPlaybackCoordinator | Do not duplicate play/pause/seek messages or snapshots |
Journal requires iOS/iPadOS/tvOS 17+, macOS 14+, or visionOS 1+. Application messages remain responsible for state outside coordinated playback.
Use GroupStateObserver.isEligibleForGroupSession to adapt the SharePlay entry
point. When a conversation is active, call prepareForActivation() and handle
.activationPreferred, .activationDisabled, and .cancelled. When no
conversation is active, present GroupActivitySharingController so the user
can choose participants.
Use the shareplay SF Symbol for custom controls and keep metadata title,
subtitle, image, and type aligned with the entry point. A disabled activation
can fall back to the local experience; it is not an error to force past.
join()..unreliable for authoritative state changes.Transferable exists only where a sharing surface requires it.sessions() and cleans up child tasks.join(); leave/end semantics are intentional.AVPlaybackCoordinator without redundant transport messages..tessl-plugin
skills
accessorysetupkit
references
activitykit
adattributionkit
references
alarmkit
references
app-clips
app-intents
app-store-optimization
app-store-review
apple-on-device-ai
appmigrationkit
audioaccessorykit
references
authentication
references
avfoundation-audio
references
avkit
background-processing
references
browserenginekit
callkit
references
carplay
cloudkit
contacts-framework
references
core-bluetooth
references
core-data
core-haptics
references
core-motion
references
core-nfc
references
coreml
references
cryptokit
cryptotokenkit
debugging-instruments
device-integrity
references
energykit
references
eventkit
family-controls
references
financekit
focus-engine
gamekit
git-branching-workflow
references
healthkit
references
homekit
references
ios-accessibility
ios-app-workflow
references
ios-ettrace-performance
ios-localization
ios-memgraph-analysis
ios-networking
ios-simulator
references
metrickit
references
musickit
references
natural-language
paperkit
references
passkit
references
pdfkit
pencilkit
references
permissionkit
references
photokit
push-notifications
quicklook
references
realitykit
references
relevancekit
references
scenekit
sensorkit
shazamkit
references
speech-recognition
references
spritekit
storekit
swift-api-design-guidelines
swift-architecture
references
swift-charts
swift-codable
references
swift-code-review
swift-concurrency
swift-formatstyle
references
swift-language
swift-security
references
swift-testing
swiftdata
swiftlint
swiftui-animation
swiftui-gestures
references
swiftui-layout-components
swiftui-liquid-glass
references
swiftui-patterns
swiftui-performance
swiftui-responsive-layout
swiftui-uikit-interop
swiftui-webkit
tabletopkit
tipkit
vision-framework
weatherkit
references