From openbpx
Inspects and edits NameMap entries in UE5 .uasset files via BPX CLI commands: list, add, set, remove with auto-computed hashes, dry-run, and backups.
How this skill is triggered — by the user, by Claude, or both
Slash command
/openbpx:bpx-nameThe 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 name list <file.uasset>
bpx name add <file.uasset> --value <name> [--non-case-hash <u16>] [--case-preserving-hash <u16>] [--dry-run] [--backup]
bpx name set <file.uasset> --index <n> --value <name> [--non-case-hash <u16>] [--case-preserving-hash <u16>] [--dry-run] [--backup]
bpx name remove <file.uasset> --index <n> [--dry-run] [--backup]
list: lists NameMap entries and hashes.add: appends a new NameMap entry.set: rewrites one NameMap entry by index.remove: removes tail NameMap entry only when safety checks pass.add/set auto-compute UE5 hashes when hash flags are omitted.[!CAUTION] This command includes write-capable operations. Confirm intent and run
--dry-runfirst.
| Command | Use when | Notable defaults |
|---|---|---|
list | lists NameMap entries and hashes. | Read-only path; safe for discovery. |
add | appends a new NameMap entry. | Run --dry-run first and use --backup for real writes. |
set | rewrites one NameMap entry by index. | Run --dry-run first and use --backup for real writes. |
remove | removes tail NameMap entry only when safety checks pass. | Run --dry-run first and use --backup for real writes. |
bpx name list ./Sample.uasset
bpx name add ./Sample.uasset --value SampleName [--non-case-hash <u16>] [--case-preserving-hash <u16>] [--dry-run] [--backup]
bpx name set ./Sample.uasset --index 1 --value SampleName [--non-case-hash <u16>] [--case-preserving-hash <u16>] [--dry-run] [--backup]
bpx name remove ./Sample.uasset --index 1 [--dry-run] [--backup]
npx claudepluginhub wilddogjp/openbpx --plugin openbpxReads StringTable exports from .uasset files and edits entries: update key values, remove keys, set namespaces using BPX CLI commands with dry-run and backup options.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.