소스 정보
- 저장소
- NVIDIA-Omniverse/omniverse-labs
- 최근 소스 활동
- 2026년 6월 29일 18:45
- 감지된 SKILL.md 언어
- 영어
- 스타
- 47
- 포크
- 11
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/NVIDIA-Omniverse/omniverse-labs --skill usd-tokens명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | usd-tokens |
| description | Use this skill when implementing or verifying USD token values. |
| metadata | {"author":"NVIDIA"} |
Use this skill when implementing or verifying USD token values.
specification/foundational_data_types/README.md section Scalar Typesspecification/foundational_data_types/README.md section List Operationsspecification/glossary/README.md entry Tokenspecification/document_data_model/README.md section Value Rangesspecification/file_formats/README.md sections Values and Crate tokenPinned tag / commit: v1.0.1
The token fundamental type has the same value domain as string: a UTF-8
encoded string. The token type exists because runtimes are expected to optimize
commonly used strings for hashing and equality. Tokens often serve the role of
enumerated values, but the type itself does not restrict values to identifiers,
keywords, non-empty strings, or strings without whitespace.
This skill owns the Token handle contract in
contracts/handles/token.handle.json. A TokenHandle is an opaque reference
owned by a target-specific context; it is not a required class, struct layout,
pointer type, intern-table index, string representation, or product API.
Targets may implement tokens as interned strings, atom table indices, arena
entries, reference-counted string handles, or plain strings where that target
still satisfies the conformance and performance expectations for its scope.
Those are storage strategies, not the public semantic shape of the generated
library. A target must keep token distinguishable from string in the USD
value model and must expose a named Token abstraction or equivalent first-class
value type for implementation code. Raw primitive IDs may be used internally,
but they must not be the primary token abstraction generated for the library.
Token equality and hashing are defined within a compatible token identity domain. Implementations may realize that domain with a process-wide registry, runtime-owned registry, sharded registry, pointer-stable string pool, target-language atom facility, or another strategy. A token identity must not be merely an ID from an unrelated local table unless tokens from that table cannot escape or be compared with tokens from another table.
This skill also owns the performance contract in
contracts/performance/token.performance.json. Equality, hashing, and
assignment/copy of existing token handles must be flat with respect to token
text length. Interning from arbitrary text is deliberately measured separately
because construction must inspect the input text.
The generated implementation should make Token visible as a domain concept.
For targets with nominal types, Token should be a distinct class, struct,
newtype, alias with type-checking value, or equivalent native abstraction. For
dynamic targets, Token should be represented by a dedicated value object or
tagged value rather than an unadorned integer or string.
Token values should be cheap to copy or assign. Equality and hashing should use registered identity where available, not re-scan token text. String conversion may consult the registry/table/context that owns the token text.
Token values are immutable after creation and may be copied, assigned, compared, and hashed concurrently without caller synchronization. Interning into a shared token identity domain must either be safe under concurrent calls or the target must explicitly declare a weaker single-threaded threading model for this skill.
Do not impose identifier, keyword, schema, or field-specific restrictions in the token type. Those restrictions belong to the caller, metadata field, schema, or USDA syntax layer.
Do not implement token listOp composition here. This skill only supplies token identity, string conversion, equality, and hashing behavior needed by listOps.
Do not make USDA spelling decisions here. Parsing whether a token came from an
identifier or quoted string belongs to usda-value-parser.
benchmarks/token/targets.json