From openbpx
Inspects ImportMap entries in .uasset files to list imports, search by object/class, and aggregate dependency graphs across directories. Useful for Unreal Engine asset dependency analysis.
How this skill is triggered — by the user, by Claude, or both
Slash command
/openbpx:bpx-importThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **PREREQUISITE:** Read [bpx-shared](../bpx-shared/SKILL.md).
PREREQUISITE: Read bpx-shared.
bpx import list <file.uasset>
bpx import search <file.uasset> [--object <name>] [--class-package <pkg>] [--class-name <cls>]
bpx import graph <directory> [--pattern "*.uasset"] [--recursive] [--group-by root|object] [--filter <token>]
list: lists ImportMap entries for one package.search: filters imports by object/class tokens (requires at least one filter).graph: aggregates import dependency edges across a directory.graph reports per-file parse failures without aborting the whole scan.| Command | Use when | Notable defaults |
|---|---|---|
list | lists ImportMap entries for one package. | Read-only path; safe for discovery. |
search | filters imports by object/class tokens (requires at least one filter). | Check bpx help for exact required flags. |
graph | aggregates import dependency edges across a directory. | Check bpx help for exact required flags. |
graph is ImportMap-based and may not reflect K2 graph-level references.--filter and narrower patterns for speed.bpx import list ./Sample.uasset
bpx import search ./Sample.uasset [--object SampleName] [--class-package <pkg>] [--class-name <cls>]
bpx import graph ./Content [--pattern "*.uasset"] [--recursive] [--group-by root|object] [--filter SampleToken]
npx claudepluginhub wilddogjp/openbpx --plugin openbpxInspects and analyzes Unreal Engine blueprint exports, bytecode, and graph data using the BPX blueprint command. Useful for reverse-engineering, debugging, and understanding blueprint logic.
Manages Unity assets: dependency inspection, reference integrity checks, prefab/scriptable-object creation, and package add/remove via the `u` CLI.
Guides dependency graph exploration using CocoSearch for impact analysis, connection tracing, and hub identification.