Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

vr-avatar-engineerVR 头像工程师

Agent Skill

vr-avatar-engineer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

372

周安装

16

GitHub Stars

98

下载量

131
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:vr-avatar-engineer(VR 头像工程师)
来源仓库:https://github.com/curiositech/some_claude_skills
仓库路径:skills/vr-avatar-engineer
安装命令:
npx skills add https://github.com/curiositech/some_claude_skills --skill vr-avatar-engineer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/curiositech/some_claude_skills --skill vr-avatar-engineer

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 可结合关键词、任务场景或来源线索进行信息筛选。
  • 使用时需要明确目标平台和开发工具,区分不同技术栈。
  • 安装前建议确认权限范围和维护状态,避免触发联网或文件读写操作。
  • 注意该技能侧重 VR 系统开发,不适合普通网页应用开发。

SKILL.md

VR Avatar Excellence Engineer

Expert in building high-quality avatar systems for VR/metaverse. Deep knowledge of real-time rendering, facial tracking, and cross-platform development for Vision Pro, Quest, and PC VR.

When to Use This Skill

Use for:

  • VR avatar systems (Vision Pro, Quest, PCVR)
  • Facial tracking integration (ARKit 52 blend shapes, Meta face tracking)
  • Avatar generation from photos/scans
  • Real-time networking for multiplayer avatars
  • Subsurface scattering and skin rendering
  • Performance optimization for VR frame rates
  • Cross-platform avatar synchronization

Do NOT use for:

  • 2D profile pictures → use image generation tools
  • Non-VR game characters → use game engine character tools
  • Static 3D modeling → use Blender/Maya skills
  • Motion capture hardware setup → specialized mocap domain
  • Deepfakes/non-consensual likenesses → ethical boundary

MCP Integrations

MCPPurpose
Stability AIGenerate avatar concept art, texture references
FirecrawlResearch Meta/Apple SDKs, avatar papers
WebFetchFetch ARKit, Meta SDK documentation

Expert vs Novice Shibboleths

TopicNoviceExpert
Blend shapes"Just use morph targets"Knows ARKit has 52 specific shapes; Meta has different set; mapping required
Skin rendering"Just use PBR"SSS is essential; different models for different skin tones
Eye tracking"Point eyes at target"Saccades, microsaccades, blink patterns make presence
Networking"Send all data every frame"Delta compression, interpolation, dead reckoning
Frame rate"60fps is fine"Quest: 72/90/120hz modes; Vision Pro: 90hz minimum; dropped frames = nausea
LOD"Lower poly for distance"Foveated rendering integration, dynamic LOD based on gaze

Common Anti-Patterns

Anti-Pattern: Uncanny Valley Through Over-Realism

What it looks like: Photorealistic face with robotic expressions Why it's wrong: Partial realism triggers uncanny valley; stylization often works better What to do instead: Match rendering fidelity to tracking fidelity; stylized avatars hide tracking limitations Example: Vision Pro Personas work because they're slightly stylized, not photorealistic

Anti-Pattern: Ignoring Platform Differences

What it looks like: Same avatar pipeline for Quest and Vision Pro Why it's wrong:

  • Quest: Mobile GPU, 72fps minimum, limited polys
  • Vision Pro: Desktop-class GPU, 90fps, Personas API is different What to do instead: Platform-specific LOD targets, shader variants, API abstractions

Anti-Pattern: Synchronous Networking

What it looks like: Blocking on avatar state updates Why it's wrong: Network latency causes frame drops = VR sickness What to do instead: Asynchronous updates with interpolation and prediction

Anti-Pattern: Single Skin Shader

What it looks like: One SSS configuration for all skin tones Why it's wrong: Melanin affects scattering; darker skin needs different SSS parameters What to do instead: Parameterized skin shader with melanin-aware scattering

Evolution Timeline

Pre-2020: Early VR Avatars

  • Stylized/cartoon avatars dominant (VRChat, Rec Room)
  • Limited tracking (3-point: HMD + controllers)
  • No facial expressions in most apps

2020-2022: Quest 2 Era

  • Hand tracking mainstream
  • Basic lip sync from audio
  • Meta Avatars SDK emerges
  • 72fps becomes standard

2023-2024: Spatial Computing

  • Vision Pro Personas (Feb 2024): ML-generated photorealistic avatars
  • Quest 3 with improved face/eye tracking (add-on)
  • Codec Avatars research (Meta) shows photorealistic path
  • Cross-platform interop becomes critical

2025+: Current Best Practices

  • Hybrid approach: Personas for presence, stylized for games
  • Neural rendering for hair/fabric
  • Real-time relighting from environment
  • Privacy-preserving avatar generation (on-device)

Core Implementation Patterns

Facial Tracking (ARKit → Avatar)

// ARKit face tracking to blend shape weights
func mapARKitToAvatar(faceAnchor: ARFaceAnchor) -> [String: Float] {
    let arkit = faceAnchor.blendShapes

    // Direct mappings (ARKit names → avatar shapes)
    var weights: [String: Float] = [:]
    weights["jawOpen"] = arkit[.jawOpen]?.floatValue ?? 0
    weights["mouthSmileLeft"] = arkit[.mouthSmileLeft]?.floatValue ?? 0
    weights["mouthSmileRight"] = arkit[.mouthSmileRight]?.floatValue ?? 0
    weights["eyeBlinkLeft"] = arkit[.eyeBlinkLeft]?.floatValue ?? 0
    weights["eyeBlinkRight"] = arkit[.eyeBlinkRight]?.floatValue ?? 0

    // Derived expressions (combinations)
    let smile = ((weights["mouthSmileLeft"] ?? 0) + (weights["mouthSmileRight"] ?? 0)) / 2
    weights["expression_happy"] = smile

    return weights
}

Network-Optimized Avatar State

// Photon PUN2 - efficient avatar sync
public struct AvatarState : INetworkStruct {
    // Pack position: 3 floats → 6 bytes (half precision)
    public Half3 Position;

    // Pack rotation: quaternion → 4 bytes (compressed)
    public CompressedQuaternion Rotation;

    // Blend shapes: 52 weights → 52 bytes (uint8 each, 0-255 → 0-1)
    public fixed byte BlendShapes[52];

    // Eye gaze: 2 directions → 4 bytes
    public Half2 LeftEyeGaze;
    public Half2 RightEyeGaze;

    // Total: ~70 bytes per update (vs 400+ uncompressed)
}

Subsurface Scattering for Skin

// Simplified SSS for real-time (pre-integrated)
float3 SubsurfaceScattering(float3 normal, float3 light, float3 view,
                            float curvature, float3 skinColor, float melanin) {
    float NdotL = dot(normal, light);

    // Wrap lighting for soft terminator
    float wrap = 0.5;
    float diffuse = saturate((NdotL + wrap) / (1 + wrap));

    // Pre-integrated scattering lookup (curvature-based)
    float2 sssUV = float2(NdotL * 0.5 + 0.5, curvature);
    float3 sss = tex2D(_SSSLookup, sssUV).rgb;

    // Melanin affects scattering color
    float3 scatterColor = lerp(float3(1, 0.4, 0.25), float3(0.8, 0.5, 0.4), melanin);

    return skinColor * diffuse + sss * scatterColor * (1 - diffuse);
}

Performance Targets

PlatformFrame RateAvatar Poly BudgetTexture Budget
Quest 272-90 fps10-15k tris512×512
Quest 390-120 fps20-30k tris1024×1024
Vision Pro90 fps50-100k tris2048×2048
PCVR90-144 fps100k+ tris4096×4096

Integrates With

  • metal-shader-expert - Custom skin/hair shaders
  • physics-rendering-expert - Hair/cloth simulation
  • sound-engineer - Spatial audio for voice
  • clip-aware-embeddings - Avatar search/matching

Remember: VR avatars are how people represent themselves in shared virtual spaces. Focus on presence (feeling "there"), performance (smooth frame rates), and inclusivity (all bodies, all identities). The best avatar is one that disappears—users forget they're looking at pixels and just see the person.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.83%
按下载量换算48

Claude

30.2%
按下载量换算40

Cursor

16.15%
按下载量换算21

Gemini CLI

9.09%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills