Agent skill

shareplay-activities

Build shared real-time experiences using GroupActivities and SharePlay. Use when implementing shared media playback, collaborative app features, synchronized game state, or any FaceTime, Messages, AirDrop, or nearby visionOS group activity on iOS, macOS, tvOS, or visionOS.

Derek Pearson935★ · +23/wk · 1 repos on radarProfile →
claude-codecodexcursorNOASSERTION
Install
npx skills add dpearson2699/swift-ios-skills --skill shareplay-activities --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 3
SKILL.md size: 15 KB
Bundled scripts: none
Path: skills/shareplay-activities/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 963 · +28 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# GroupActivities / SharePlay Build shared real-time experiences using the GroupActivities framework. SharePlay connects people over FaceTime, Messages, AirDrop, and nearby visionOS sharing, synchronizing media playback, app state, or custom data. ## Contents - [Setup](#setup) - [Defining a GroupActivity](#defining-a-groupactivity) - [Session Lifecycle](#session-lifecycle) - [Sending and Receiving Messages](#sending-and-receiving-messages) - [Coordinated Media Playback](#coordinated-media-playback) - [Starting SharePlay from Your App](#starting-shareplay-from-your-app) - [GroupSessionJournal: File Transfer](#groupsessionjournal-file-transfer) - [Common Mistakes](#common-mistakes) - [Review Checklist](#review-checklist) - [References](#references) ## Setup ### Capability Add the **Group Activities** capability to the app target in Xcode. Xcode adds the required entitlement and updates the provisioning profile: ```xml <key>com.apple.developer.group-session</key> <true/> ``` Configure this only for app targets. Group Activities are not available in widgets, extensions, or App Clips. ### Checking Eligibility ```swift import GroupActivities let observer = GroupStateObserver() // Check i

What's inside
Steps it walks through
  1. Contents
  2. Setup
  3. Capability
  4. Checking Eligibility
  5. Defining a GroupActivity
  6. Activity Types
  7. Session Lifecycle
  8. Listening for Sessions
  9. Session States
  10. Handling State Changes
  11. Leaving and Ending
  12. Sending and Receiving Messages
  13. Defining Messages
  14. Sending
Ships with 2 files
  • evals/evals.json
  • references/shareplay-patterns.md
More from swift-ios-skills
All skills →
About this skill
What does the shareplay-activities skill do?

Build shared real-time experiences using GroupActivities and SharePlay. Use when implementing shared media playback, collaborative app features, synchronized game state, or any FaceTime, Messages, AirDrop, or nearby visionOS group activity on iOS, macOS, tvOS, or visionOS.

How do I install it?

Run `npx skills add dpearson2699/swift-ios-skills --skill shareplay-activities --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From dpearson2699/swift-ios-skills, a repository with 963 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going