tomkrikorian/visionosagents

shareplay-developer

Build, integrate, and troubleshoot SharePlay GroupActivities features for visionOS 27, including GroupActivity definitions, activation flows, GroupSession lifecycle, messaging and journals, ShareLink and SharePlay UI surfaces, and spatial coordination.

First seen Feb 20, 2026

Installation

$ npx skills add tomkrikorian/visionosagents --skill shareplay-developer

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from tomkrikorian/visionosagents · top by installs.

npx skills add tomkrikorian/visionosagents

Browse all from tomkrikorian/visionosagents

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Also listed on

Alternate registries and mirrors of this skill.

Repository health

Stars 60
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,228 B
  • docs SUMMARY.md 279 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 45 installs

SKILL.md

SharePlay Developer

Quick Start

  1. Decide whether this experience is launch-only co-location or shared state

sync.

  1. Add the Group Activities capability and required entitlement before

building SharePlay UI.

  1. Define one GroupActivity per experience and keep the payload minimal and

Codable.

  1. Load the right reference only after you know the workflow.
  2. For spatial personas or immersive spaces, load

[spatial-coordination.md](references/spatial-coordination.md) before joining.

Load References When

Reference When to Use
[activation-ui.md](references/activation-ui.md) When wiring the SharePlay entry point or start button flow.
[activity-definition.md](references/activity-definition.md) When defining the GroupActivity payload, metadata, or transfer representation.
[group-session-lifecycle.md](references/group-session-lifecycle.md) When joining, leaving, observing, or presenting a GroupSession.
[messaging-journal.md](references/messaging-journal.md) When using GroupSessionMessenger, GroupSessionJournal, or late-joiner sync.
[shareplay-spatial-api.md](references/shareplay-spatial-api.md) When checking the official GroupActivities APIs for activation, association, session ownership, and spatial coordination.
[spatial-coordination.md](references/spatial-coordination.md) When configuring SystemCoordinator, spatial templates, or group immersive-space behavior.
[visionos-immersive-space.md](references/visionos-immersive-space.md) When implementing launch-only SharePlay for a visionOS immersive space.
[groupactivities-patterns.md](references/groupactivities-patterns.md) When you need broader GroupActivities patterns or sample-backed examples.

Workflow

  1. Define the activity and choose the activation surface.
  2. Observe and configure the session before joining.
  3. Add messaging or journal synchronization only if shared state is required.
  4. Configure spatial coordination when the experience shares an immersive

space.

  1. Summarize the session lifecycle, sync model, and launch surface clearly.

When To Switch Skills

  • Switch to build-run-debug when the blocker is app launch, simulator state,

or runtime debugging rather than SharePlay behavior.

  • Switch to signing-entitlements when the issue is capabilities,

entitlements, or privacy gating.

  • Switch to telemetry when proof of event ordering or session state changes

matters more than API design.

Guardrails

  • Keep GroupActivity data small and Codable.
  • Join only after the UI and local state are ready.

Output Expectations

Provide:

  • the activity type and activation surface
  • the chosen session and sync model
  • which references were used
  • the coordination model if immersive space is involved
  • the next skill to use if the blocker is execution, signing, or testing