Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

hz-vrc-check赫兹 VRC 检查

Agent Skill

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

总安装

263

周安装

8

GitHub Stars

31

下载量

65
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:hz-vrc-check(赫兹 VRC 检查)
来源仓库:https://github.com/meta-quest/agentic-tools
仓库路径:skills/hz-vrc-check
安装命令:
npx skills add https://github.com/meta-quest/agentic-tools --skill hz-vrc-check
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/meta-quest/agentic-tools --skill hz-vrc-check

简介

hz-vrc-check 用于查找、检索和筛选相关信息,支持基于关键词的任务场景定位。

  • 适用于 VRC 规范检查、合规性验证和项目审核相关查询。
  • 可在 Codex、Claude、Cursor、Gemini CLI 中快速获取候选结果。
  • 需确认权限范围和维护状态,避免触发联网或文件读写操作。
  • 建议结合来源仓库和原始 README 继续核验具体用法。

SKILL.md

VRC Check Skill

Help developers prepare and validate Meta Quest apps for store submission. This skill covers the full publishing readiness lifecycle -- project configuration, code review, VRC compliance, content policies, data use, and store assets.

When to Use

  • Preparing an app build for Meta Quest Store submission
  • Reviewing project config, manifest, or permissions before upload
  • Investigating a VRC failure or "Changes Requested" rejection
  • Auditing compliance before a new binary upload

Publishing Lifecycle

Apps go through these phases before reaching the store. Understand which phase the developer is in to focus your review.

  1. Development -- App ID, Platform SDK, entitlement check, engine config
  2. Testing -- Playtest, internal QA, release channel distribution (Alpha/Beta/RC)
  3. Pre-submission -- VRC self-check, manifest audit, permissions audit, APK packaging
  4. Data Use Checkup -- Required if the app uses platform features (submit before app review)
  5. Production upload -- Upload build to the Production channel on the Developer Dashboard
  6. Technical review -- Meta verifies VRC requirements
  7. Content review -- Meta evaluates UX quality, content guidelines, polish
  8. Approval and release -- App goes live on Meta Horizon Store

After release, binary updates ship immediately without review. Metadata updates (descriptions, images, trailers) require 1-2 day review.

Validation Workflow

Work through each step in order. Each step tells you what to check and points to a reference doc when you need deeper detail.

Step 1: Project Configuration

Verify the project is set up correctly for store submission.

Check these items:

  • App ID exists on Developer Dashboard and is configured in the engine (not just dashboard-side)
  • Meta Platform SDK is installed and initialized at startup
  • Entitlement check runs within 10 seconds of launch (VRC.Quest.Security.1 -- most commonly failed VRC)
  • On failed entitlement: app exits, shows error, or enters limited demo mode

Find entitlement check in code:

# Unity
grep -rn "Entitlements\|IsEntitled\|GetViewerEntitled\|PlatformInitialize" --include="*.cs" Assets/

# Unreal
grep -rn "Entitlement\|OvrPlatform\|GetViewerEntitlement" --include="*.cpp" --include="*.h" Source/

# Native / Spatial SDK
grep -rn "ovr_Entitlement_GetIsViewerEntitled\|ovr_PlatformInitializeAndroid" --include="*.c" --include="*.cpp" --include="*.h" src/

If entitlement check is missing or deferred, flag it -- this will fail review.

Step 2: Manifest and Permissions

Audit the Android manifest against release requirements. Non-conforming manifests fail VRC.Quest.Packaging.1.

Quick manifest check on a built APK:

aapt dump badging app.apk

Verify: targetSdkVersion is 32-34 for immersive apps (32-36 for 2D panel apps), minSdkVersion 29-32, installLocation is auto, debuggable is false/unset.

Permissions check:

aapt dump permissions app.apk

Cross-reference against three categories: prohibited (auto-reject on upload), review-requiring (need justification), and safe. Unity and Unreal silently add permissions via plugins -- remove them before submission.

For the full manifest spec, SDK version table, prohibited/review-requiring permission lists, and engine-specific removal instructions, see references/publishing-requirements.md.

Step 3: Build and Package

Validate the release APK before upload.

apksigner verify app.apk         # Signature (VRC.Quest.Packaging.2)
ls -lh app.apk                   # Size < 1 GB (VRC.Quest.Packaging.5)
aapt dump badging app.apk | grep native-code  # 64-bit arm64-v8a (VRC.Quest.Packaging.6)

Also verify: keystore is consistent across versions, no unsupported Android features (no Google Play Services), expansion files follow OBB naming and size limits.

For packaging specs and expansion file details, see references/publishing-requirements.md.

Step 4: On-Device Functional and Performance Testing

Deploy to a Quest device and run through the app.

hzdb app install ./app.apk
hzdb app launch com.example.app
hzdb perf capture

Test for at least 45 minutes (or content length, whichever is shorter):

  • Framerate stays at target refresh rate (VRC.Quest.Performance.1)
  • No thermal throttling prompt (VRC.Quest.Performance.2)
  • Head-tracked graphics appear within 4 seconds of launch (VRC.Quest.Performance.3)
  • App pauses when HMD removed (VRC.Quest.Functional.2)
  • Focus-aware under Universal Menu (VRC.Quest.Input.4)
  • Internet-required notification when offline (VRC.Quest.Functional.7)
  • No crashes, freezes, or stuck states (VRC.Quest.Functional.1, .3)
  • Multi-user support works (VRC.Quest.Functional.12)

For the complete VRC test plan with all categories and test steps, see references/vrc-test-plan.md.

Step 5: Content Review Readiness

After technical review passes, Meta evaluates the app's UX quality, content, and policies. Prepare for this by reviewing:

  • UX quality -- Locomotion comfort, object interactions, player orientation, camera control
  • Depth -- Content variety, replay value, clear game loop / goal-based interactions
  • Graphics and audio -- Consistent art, smooth animations, spatial audio, legible UI/text
  • Content guidelines -- No policy violations (violence, adult content, unsafe substances)
  • App policies -- Payments through Platform IAP only, no unauthorized ads, app sharing support required, IARC content rating obtained

For the full content review criteria, app policies, and brand guidelines, see references/content-and-policies.md.

Step 6: Data Use Checkup

Required if the app uses platform features that access user data.

Features that require a DUC: User ID, User Profile, Avatars, Achievements, In-App Purchases, Matchmaking, Leaderboards, Cloud Storage, Deep Linking, Invites, Followers, Parties, Subscriptions, Challenges, User Age Group.

Verify:

  • Which platform features the app uses (search code for Platform SDK API calls)
  • Privacy policy URL is live, public, and contains actual policy content
  • DUC is submitted before app review (provisional access is revoked during review)
  • Annual recertification plan is in place

For the DUC features table, submission process, and data handling questions, see references/content-and-policies.md.

Step 7: Store Metadata and Assets

Review all store-facing materials before submission.

Metadata checklist:

  • App name is unique and not keyword-stuffed
  • Short and long descriptions meet content guidelines
  • Keywords are relevant, no unauthorized IP
  • App website and support URLs load correctly
  • Privacy policy URL is live and public
  • Any Meta/Oculus branding follows brand guidelines

Asset checklist:

  • Logo has transparent background
  • Cover art is consistent across all variants, title in safe area, no text in bleed zones
  • Screenshots are real in-app captures (5 required, no duplicates, no marketing text)
  • Trailer is 30s-2min, 16:9, 1080p minimum, no letterboxing, only Quest hardware shown
  • Art text uses >= 24pt font

For full asset specifications, safe area rules, and format requirements, see references/store-assets.md.

Step 8: Generate Readiness Report

Summarize findings as a pass/fail checklist:

  1. Project config -- App ID, Platform SDK, entitlement check
  2. Manifest -- SDK versions, required elements, debug flag
  3. Permissions -- No prohibited, review-requiring justified, unnecessary removed
  4. Packaging -- Signature, size, 64-bit, expansion files
  5. Performance -- Framerate, thermal, load time
  6. Functional -- Pause, focus-aware, input, tracking, multi-user, localization
  7. Content -- UX quality, guidelines adherence, policies
  8. Data Use -- DUC submitted and complete (if applicable)
  9. Metadata -- Name, descriptions, keywords, URLs, privacy policy
  10. Assets -- Cover art, screenshots, trailer, logo

Flag any failures with VRC IDs and remediation steps. Recommend whether the build is ready for Production channel upload.

Common Pitfalls

The most frequently failed VRCs -- check these first:

VRCIssue
VRC.Quest.Security.1Missing or late entitlement check
VRC.Quest.Security.2Unnecessary permissions (often added by engine plugins)
VRC.Quest.Performance.1Frame rate below target refresh rate
VRC.Quest.Functional.2App doesn't pause when HMD removed
VRC.Quest.Functional.7No offline notification for internet-required apps
VRC.Quest.Input.4Not focus-aware under Universal Menu
VRC.Quest.Tracking.1Behavior doesn't match declared play mode

hzdb Quick Reference

hzdb (Horizon Debug Bridge) is the CLI for on-device testing. Install once:

npm install -g @meta-quest/hzdb
hzdb device list                              # Verify device connection
hzdb device battery                           # Check battery and thermal state
hzdb app install ./app.apk                    # Deploy build
hzdb app launch com.example.app               # Launch app
hzdb app stop com.example.app                 # Stop app
hzdb log                                      # View app logs
hzdb adb logcat --tag ThermalService --level W  # Thermal monitoring
hzdb perf capture                                     # Performance profiling
hzdb capture screenshot                       # Capture VR view
hzdb docs search "entitlement check"          # Search documentation

References

Load these on demand when you need deeper detail:

  • Publishing Requirements -- Manifest specs, SDK version table, prohibited/review-requiring permissions, packaging rules, permission removal guides
  • VRC Test Plan -- Full VRC checklist organized by category with test steps and expected results
  • Content and Policies -- Content review criteria, app policies, brand guidelines, Data Use Checkup details
  • Store Assets -- Asset specifications, branded art requirements, screenshot/trailer rules, safe area guidelines

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.08%
按下载量换算25

Claude

28.56%
按下载量换算19

Cursor

18.43%
按下载量换算12

Gemini CLI

9.2%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills