--- id: daffy0208/ai-dev-standards/spatial-developer version: "351eb22c" license: MIT install: manual updated: 2025-12-25 --- # spatial-developer โ€” Spatial Developer equips you with patterns and code for AR/VR applications across web and Vision Pro. It covers WebXR setup, hand tracking, spatial audio, gaze-based selection, and 3D interactions using Three.js and React Three Fiber. Publisher: daffy0208 ยท Stars: 32 ยท Updated: 2025-12-25 Install (manual): `git clone https://github.com/daffy0208/ai-dev-standards` ## SKILL.md # Spatial Developer Skill I help you build AR/VR experiences, spatial interfaces, and immersive 3D applications. ## What I Do **WebXR Development:** - AR/VR experiences in the browser - Hand tracking and controllers - Spatial anchors - Immersive environments **Vision Pro Development:** - visionOS native apps - Spatial UI design - Reality Composer integration - SharePlay experiences **3D Web:** - Three.js scenes - React Three Fiber - 3D interactions - Spatial audio ## WebXR Basics ```bash npm install three @react-three/fiber @react-three/drei @react-three/xr ``` ### Simple VR Scene ```typescript // components/VRScene.tsx 'use client' import { Canvas } from '@react-three/fiber' import { VRButton, XR, Controllers, Hands } from '@react-three/xr' import { Box, OrbitControls } from '@react-three/drei' export function VRScene() { return ( <> {/* 3D Content */} {/* VR Controllers */} {/* Hand Tracking */} ) } ``` --- ## AR on Web (WebXR) ```typescript // components/ARScene.tsx 'use client' import { Canvas } from '@react-three/fiber' import { ARButton, XR } from '@react-three/xr' import { useState } from 'react' export function ARScene() { const [hitTest, setHitTest] = useState(null) return ( <> { setHitTest(hit) }} > {hitTest && ( )} ) } ``` --- ## Vision Pro Spatial UI ```swift // ContentView.swift import SwiftUI import RealityKit struct ContentView: View { var body: some View { RealityView { content in // Add 3D content let model = ModelEntity( mesh: .generateSphere(radius: 0.1), materials: [SimpleMaterial(color: .blue, isMetallic: false)] ) content.add(model) } .toolbar { ToolbarItem(placement: .bottomOrnament) { HStack { Button("Reset") { // Reset scene } Button("Share") { // SharePlay } } } } } } ``` --- ## 3D Interaction Patterns ### Gaze-Based Selection ```typescript 'use client' import { useXR } from '@react-three/xr' import { useFrame } from '@react-three/fiber' import { useState } from 'react' export function GazeSelect() { const { player } = useXR() const [gazing, setGazing] = useState(false) useFrame(() => { // Raycast from camera const direction = player.camera.getWorldDirection(new Vector3()) // Check intersection with objects // If gazing for 2 seconds, select }) return ( setGazing(true)}> ) } ``` ### Hand Gesture Recognition ```typescript 'use client' import { useXREvent } from '@react-three/xr' export function GestureControl() { useXREvent('squeeze', (e) => { console.log('Pinch gesture detected') // Perform action }) useXREvent('select', (e) => { console.log('Select gesture') }) return ( ) } ``` --- ## Spatial Audio ```typescript 'use client' import { PositionalAudio } from '@react-three/drei' import { useRef } from 'react' export function SpatialSound() { const sound = useRef() return ( ) } ``` --- ## When to Use Me **Perfect for:** - Building AR/VR web experiences - Creating Vision Pro apps - Implementing 3D interactions - Spatial UI design - Immersive storytelling **I'll help you:** - Set up WebXR projects - Build AR features - Implement hand tracking - Design spatial interfaces - Optimize 3D performance ## What I'll Create ``` ๐Ÿฅฝ VR Experiences ๐Ÿ“ฑ AR Applications ๐Ÿ‘‹ Hand Tracking ๐ŸŽง Spatial Audio ๐ŸŒ WebXR Scenes ๐ŸŽ Vision Pro Apps ``` Let's build the future of spatial computing! [View on SkillFed](https://skillfed.io/daffy0208/ai-dev-standards/spatial-developer) ยท [View on GitHub](https://github.com/daffy0208/ai-dev-standards)