usd-tools

usd-tools is a skill for Claude Code from dcc-mcp/dcc-mcp-core. It costs 83 tokens per session (352 once invoked), scanned A, original, MIT.

A toolset for inspecting and checking OpenUSD files, a format used to store 3D scenes and their components.

In plain words
What is it for?
Use it to print layer and scene contents, traverse scene objects, and run USD compliance checks on .usd, .usda, .usdc, or .usdz files.
Why use it?
It helps you understand what a USD file contains and find compliance problems before another 3D application reads it.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: built for openclaw.

Good fit Use it to print layer and scene contents, traverse scene objects, and run USD compliance checks on .usd, .usda, .usdc, or .usdz files.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dcc-mcp/dcc-mcp-core/usd-tools
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add dcc-mcp/dcc-mcp-core --skill usd-tools
Clone the repo
git clone --depth 1 https://github.com/dcc-mcp/dcc-mcp-core

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for usd-tools

README.md
[![agentmods](https://agentmods.dev/badge/skills/dcc-mcp/dcc-mcp-core/usd-tools.svg)](https://agentmods.dev/skills/dcc-mcp/dcc-mcp-core/usd-tools)
Your own site
<a href="https://agentmods.dev/skills/dcc-mcp/dcc-mcp-core/usd-tools"><img src="https://agentmods.dev/badge/skills/dcc-mcp/dcc-mcp-core/usd-tools.svg" alt="Measured on agentmods" height="20"></a>
Per session 83 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 352 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00083 $0.00352
Opus 5 $0.00042 $0.00176
Sonnet 5 $0.00017 $0.00070
Haiku 4.5 $0.00008 $0.00035

Measured 8d ago against content hash b3fbe3c91e0a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

usd-tools scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/inspect.py, scripts/validate.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

examples/skills/usd-tools/SKILL.md · 48 lines

What it actually says

OpenUSD Tools

Inspect and validate Universal Scene Description (USD) files.

Tools

usd_tools__inspect

Print the contents of a .usd, .usda, .usdc, or .usdz file.

usd_tools__validate

Run usdchecker compliance validation and return the report.

Prerequisites

Install the OpenUSD Python bindings:

pip install usd-core

Or install the full distribution from https://openusd.org.

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 48 lines · 83 tokens per session scan A b3fbe3c91e0a

Subscribe to this mod's changes

usd-tools is a skill published in the GitHub repository dcc-mcp/dcc-mcp-core (42 stars, last pushed today), licensed MIT. It adds 83 tokens to every session and 352 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

ue5-blueprint-workflow

UE5.6/UE5.7 Blueprint graph workflow for feature implementation, input events, node wiring, and graph validation. Use when requests involve adding Blueprint logic, keyboard input behavior, function chains, event graph edits, or pin-level connection guidance.

IvanYangYangXi/artclaw_bridge · 58 tokens

unity-asset-ops

Unity Editor asset management via rununitypython: import, find, create, move, and delete assets. Use when AI needs to: (1) search assets by type or name (AssetDatabase.FindAssets), (2) import external files, (3) instantiate prefabs in scene, (4) create prefabs from GameObjects, (5) create materials and assign shaders…

IvanYangYangXi/artclaw_bridge · 136 tokens

unity-component-ops

Unity Editor component management: add, remove, get, and modify components on GameObjects via rununitypython. Use when AI needs to: (1) add components (Rigidbody, Collider, Light, Camera, AudioSource, etc.), (2) remove components, (3) get component property values, (4) set component property values (serialized…

IvanYangYangXi/artclaw_bridge · 112 tokens

unity-editor-control

Unity Editor state control via rununitypython: undo/redo, play mode, build, console, menu execution, and editor preferences. Use when AI needs to: (1) undo or redo editor operations, (2) enter/exit Play Mode, (3) trigger builds (Build Player), (4) read Unity console logs, (5) execute editor menu items, (6) refresh the…

IvanYangYangXi/artclaw_bridge · 128 tokens

unity-gameobject-ops

Unity Editor GameObject creation, deletion, transform, and hierarchy operations via rununitypython. Use when AI needs to: (1) create/delete/duplicate GameObjects, (2) set position/rotation/scale, (3) get or set parent-child relationships, (4) set active state, (5) get current editor selection, (6) rename GameObjects…

IvanYangYangXi/artclaw_bridge · 115 tokens

ue57-camera-transform

Set, get, and animate UE Editor viewport camera and CameraActor transforms safely. Prevents the common Rotator positional-argument trap (roll,pitch,yaw vs pitch,yaw,roll). Use when AI needs to: (1) move or rotate the viewport camera, (2) set a CameraActor's transform, (3) look-at a target location, (4) orbit around an…

IvanYangYangXi/artclaw_bridge · 117 tokens