From openbpx
Reads, queries, resolves localization data from .uasset files and edits text identities using BPX commands like set-source, rewrite-namespace, and rekey.
How this skill is triggered — by the user, by Claude, or both
Slash command
/openbpx:bpx-localizationThe 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 localization read <file.uasset> [--export <n>] [--include-history] [--format json|toml|csv]
bpx localization query <file.uasset> [--export <n>] [--namespace <ns>] [--key <key>] [--text <token>] [--history-type <type>] [--limit <n>]
bpx localization resolve <file.uasset> [--export <n>] --culture <culture> [--locres <path>] [--missing-only]
bpx localization set-source <file.uasset> --export <n> --path <dot.path> --value <text> [--dry-run] [--backup]
bpx localization set-id <file.uasset> --export <n> --path <dot.path> --namespace <ns> --key <key> [--dry-run] [--backup]
bpx localization set-stringtable-ref <file.uasset> --export <n> --path <dot.path> --table <table-id> --key <key> [--dry-run] [--backup]
bpx localization rewrite-namespace <file.uasset> --from <ns-old> --to <ns-new> [--dry-run] [--backup]
bpx localization rekey <file.uasset> --namespace <ns> --from-key <k-old> --to-key <k-new> [--dry-run] [--backup]
read: enumerates TextProperty + GatherableTextData entries.query: filters entries by namespace/key/text/history type.resolve: previews localized strings for --culture (optional .locres).set-source/set-id/set-stringtable-ref: updates existing text data.rewrite-namespace/rekey: bulk-rewrites namespace or key values.resolve --missing-only returns unresolved entries only.[!CAUTION] This command includes write-capable operations. Confirm intent and run
--dry-runfirst.
| Command | Use when | Notable defaults |
|---|---|---|
read | enumerates TextProperty + GatherableTextData entries. | Read-only path; safe for discovery. |
query | filters entries by namespace/key/text/history type. | Check bpx help for exact required flags. |
resolve | previews localized strings for --culture (optional .locres). | Check bpx help for exact required flags. |
set-source | read: enumerates TextProperty + GatherableTextData entries. | Run --dry-run first and use --backup for real writes. |
set-id | read: enumerates TextProperty + GatherableTextData entries. | Run --dry-run first and use --backup for real writes. |
set-stringtable-ref | read: enumerates TextProperty + GatherableTextData entries. | Run --dry-run first and use --backup for real writes. |
rewrite-namespace | read: enumerates TextProperty + GatherableTextData entries. | Run --dry-run first and use --backup for real writes. |
rekey | read: enumerates TextProperty + GatherableTextData entries. | Run --dry-run first and use --backup for real writes. |
resolve is read-preview oriented; it does not mutate assets.bpx localization read ./Sample.uasset [--export 1] [--include-history] [--format json|toml|csv]
bpx localization query ./Sample.uasset [--export 1] [--namespace Game] [--key <key>] [--text SampleToken] [--history-type <type>] [--limit 1]
bpx localization resolve ./Sample.uasset [--export 1] --culture en [--locres MyProperty] [--missing-only]
bpx localization set-source ./Sample.uasset --export 1 --path MyProperty --value <text> [--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.
Implements Lokalise translation data lifecycle, key metadata, exports, PII management, and compliance patterns for secure Node.js integrations.
Manages the full i18n lifecycle: configure settings, scaffold translation files, extract strings, track coverage, and generate pseudo-localization. Useful for setting up i18n on new projects or retrofitting existing ones.