用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/NVIDIA-Omniverse/omniverse-labs --skill usdz-package-format命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | usdz-package-format |
| description | Use this skill when implementing or verifying USDZ package indexing and entry byte access. |
| metadata | {"author":"NVIDIA"} |
Use this skill when implementing or verifying USDZ package indexing and entry byte access.
package.usdz uses the first file in the package as the default layer.docs/usdz-spec-errata.md pins three reader-only positions where the AOUSD
§16.4 package text diverges from the reference writer or is relaxed by
§16.4.2: (1) 64-byte alignment applies to entry data, not the local file
header; (2) a non-zero EOCD comment is tolerated; (3) the default layer is the
first physical entry.Pinned AOUSD commit: 6b4f01f2d6d46b01507481524eb516b4ef358c31
UsdzArchiveIndexUsdzEntryPackageEntryByteViewThis skill owns contracts/handles/usdz-package-format.handle.json and
contracts/usdz-productions/.
The input is already-opened outer package bytes from usd-resource-protocol.
This skill never opens files, extracts package entries to temporary paths, or
hands out owned copies of selected entries when the outer package bytes remain
available. It returns non-owning byte views over the package storage.
The archive reader covers standard non-Zip64 USDZ. It rejects encrypted entries, compressed entries, unsafe paths, duplicate normalized paths, out-of-bounds headers or payloads, and entries whose file data does not start on a 64-byte boundary.
Opening a whole package selects the first physical file entry by local-header
offset. It must not scan later package entries looking for a .usda or .usdc
file.
Defer outer resource reads and package spelling split to usd-resource-protocol.
Defer .usda and .usdc layer parsing to usdz-layer-open and the concrete
format handlers it dispatches to.
Do not implement USDA parsing, USDC Crate parsing, nested package opening, package writes, composition, or asset resolution in this skill.