apple-spatial-designer

apple-spatial-designer is a skill for Claude Code from qfoldit/Protein-Design-MCP. It costs 101 tokens per session (816 once invoked), scanned A, original, Apache-2.0.

Guidance for turning a qFoldIT Universal Assembly Graph—a shared description of a scene—into a visionOS or RealityKit spatial experience.

In plain words
What is it for?
Building spatial experiences for Apple Vision Pro, using RealityKit, visionOS, hand tracking, USDZ files, and Xcode.
Why use it?
It clarifies the Apple tools and prerequisites involved while noting that some Xcode project-file changes cannot be reliably automated.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Claude Code.

Part of the qfoldit-skills plugin — 20 skills shipped together

Good fit Building spatial experiences for Apple Vision Pro, using RealityKit, visionOS, hand tracking, USDZ files, and Xcode.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/qfoldit/protein-design-mcp/apple-spatial-designer
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add qfoldit/Protein-Design-MCP --skill apple-spatial-designer
Clone the repo
git clone --depth 1 https://github.com/qfoldit/Protein-Design-MCP

Made for: Claude Code.

Or install qfoldit-skills, the plugin that ships this one along with the rest of its 20 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for apple-spatial-designer

README.md
[![agentmods](https://agentmods.dev/badge/skills/qfoldit/protein-design-mcp/apple-spatial-designer/github.svg)](https://agentmods.dev/skills/qfoldit/protein-design-mcp/apple-spatial-designer)
Your own site
<a href="https://agentmods.dev/skills/qfoldit/protein-design-mcp/apple-spatial-designer"><img src="https://agentmods.dev/badge/skills/qfoldit/protein-design-mcp/apple-spatial-designer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for apple-spatial-designer

Your own site · 80×15
<a href="https://agentmods.dev/skills/qfoldit/protein-design-mcp/apple-spatial-designer"><img src="https://agentmods.dev/badge/skills/qfoldit/protein-design-mcp/apple-spatial-designer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 101 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 816 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00101 $0.00816
Opus 5 $0.00051 $0.00408
Sonnet 5 $0.00020 $0.00163
Haiku 4.5 $0.00010 $0.00082

Measured 10d ago against content hash a72caed07fe9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

apple-spatial-designer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

claude-skills/skills/apple-spatial-designer/SKILL.md · 34 lines

How it starts

The opening of the file, as written. The whole thing — 34 lines — stays where its author put it; the contents beside it link to each section on GitHub.

apple-spatial-designer

Status: mixed. Apple/Anthropic announced official Xcode <-> Claude Agent SDK integration (Xcode 26.3+, via MCP, lets Claude Code capture visual Previews and interact with Xcode from the CLI) -- this part is official. There is, however, no single official "RealityKit skill" the way Unreal has one from Epic; visionOS/RealityKit-specific guidance here draws on the general, well-documented public APIs (RealityKit, ARKit hand tracking, USDZ) plus the existence of a healthy community-skill ecosystem (multiple independent visionOS/RealityKit Claude Code skills) rather than one authoritative source -- treat method-level specifics as needing verification against Apple's current documentation, not memorized as certain.

Prerequisites

  • Xcode 26.3+ for the official Claude Agent SDK / MCP integration (App Store Connect uploads require Xcode 26+ / iOS,visionOS 26 SDKs as of the 2026-04-28 deadline -- relevant if this ever ships).
  • A visionOS target in the Xcode project for RealityKit/visionOS work specifically.

Known hard boundary

Agents (this skill included) cannot reliably edit .pbxproj files. Adding new targets, frameworks, or files to the Xcode project structure needs a human to do it in Xcode, or a dedicated project-generation tool (e.g. XcodeGen/Tuist) -- don't attempt direct .pbxproj surgery and don't imply it "just works."

UAG -> RealityKit mapping

Baseline from game-designer/references/uag_schema.md: node -> Entity, type: mesh -> Entity + ModelComponent, type: light -> Entity + PointLight/DirectionalLight component, parent_child -> Entity.addChild, physics_collision -> CollisionComponent, on_grab -> gesture recognizer / ARKit hand-tracking input.

Workflow

  1. Confirm the UAG passed game-designer/scripts/uag_validate.py.
  2. For each node, generate the corresponding RealityKit Swift (Entity creation, component attachment) rather than hand-waving pseudo-code -- if a UAG type/trigger has no established mapping above, say so and ask rather than inventing a RealityKit API that may not exist.
  3. If USDZ export/import is involved (UAG scenes originating from openusd-architect), note that RealityKit/visionOS consume USDZ as a packaged, compressed subset of USD -- not every USD feature round-trips; flag anything that looks like it needs manual verification in Reality Composer Pro.
  4. For anything touching .pbxproj (new targets, capabilities), stop and tell the user this step needs to be done manually in Xcode.

Read the full file on GitHub · 34 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 34 lines · 101 tokens per session scan A a72caed07fe9

Subscribe to this mod's changes

apple-spatial-designer is a skill published in the GitHub repository qfoldit/Protein-Design-MCP (1 stars, last pushed 13d ago), licensed Apache-2.0. It adds 101 tokens to every session and 816 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

sceneview-ios

Build 3D and AR apps on Apple platforms (iOS, macOS, visionOS) with SceneViewSwift — the SwiftUI wrapper around RealityKit. Use whenever the user asks for "3D in SwiftUI", "AR with ARKit in SwiftUI", a model viewer for iOS, or any Apple-platform 3D/AR app where the dependency is the SceneViewSwift Swift Package from…

sceneview/sceneview · 148 tokens

sceneview

Build 3D and AR apps with the SceneView SDK in Jetpack Compose, SwiftUI (iOS/macOS/visionOS via SceneViewSwift), Web (Filament.js), Flutter and React Native. Use whenever the user asks for "3D in Compose", "AR with ARCore in Compose", a model viewer, or any cross-platform 3D/AR app where the dependency is…

sceneview/sceneview · 156 tokens

build-mobile-threejs-games

Build, tune, or test a Three.js game for mobile web. Use for touch movement, action controls, target selection, touch inventory, safe areas, portrait/landscape layouts, responsive HUD, battery/performance budgets, and real mobile browser QA.

MengTo/Skills · 57 tokens

building-mobile-game

Build mobile games and game-like interactive experiences in React Native and Expo. Use when Codex is creating or refactoring arcade, puzzle, casual, action, physics-based, or animation-heavy gameplay, including Expo game setup with the with-reanimated template, sprite-sheet generation and extraction, frame-based…

Intelligent-Internet/ii-agent · 91 tokens

mobile-development

Use when targeting Android/iOS — export and signing, permissions, plugins, in-app purchases, ads, app lifecycle, device features, and mobile performance.

jame581/GodotPrompter · 33 tokens

hz-new-project-creation

Scaffolds new Meta Quest and Horizon OS projects with recommended settings for Unity, Unreal, Android/Spatial SDK, or WebXR. Use when creating a new Quest app from scratch.

meta-quest/agentic-tools · 43 tokens