bpx-localization

bpx-localization is a skill for Claude Code, Codex from wilddogjp/openbpx. It costs 26 tokens per session (976 once invoked), scanned A, original, Apache-2.0.

A command set for reading and changing localization data in Unreal Engine assets. Localization connects source text to language-specific translations using names, keys, and cultures such as English or Slovak.

In plain words
What is it for?
Use it to inspect, query, and resolve localized text, change source strings and IDs, connect text to string tables, or rename namespaces and keys.
Why use it?
It helps locate the text identity behind displayed words and update translations or their references without searching through asset data by hand.

Skill for Claude CodeCodex

Part of the openbpx plugin — 26 skills shipped together

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.

agentmods
npx agentmods add skills/wilddogjp/openbpx/bpx-localization
Any agent
npx skills add wilddogjp/openbpx --skill bpx-localization
Clone the repo
git clone --depth 1 https://github.com/wilddogjp/openbpx

Made for: Claude Code, Codex.

Or install openbpx, the plugin that ships this one along with the rest of its 26 skills.

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 bpx-localization

README.md
[![agentmods](https://agentmods.dev/badge/skills/wilddogjp/openbpx/bpx-localization.svg)](https://agentmods.dev/skills/wilddogjp/openbpx/bpx-localization)
Your own site
<a href="https://agentmods.dev/skills/wilddogjp/openbpx/bpx-localization"><img src="https://agentmods.dev/badge/skills/wilddogjp/openbpx/bpx-localization.svg" alt="Measured on agentmods" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 976 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00026 $0.00976
Opus 5 $0.00013 $0.00488
Sonnet 5 $0.00005 $0.00195
Haiku 4.5 $0.00003 $0.00098

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

Security

Grade A, and why

bpx-localization 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 5d ago.

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.

plugins/openbpx/skills/bpx-localization/SKILL.md · 61 lines

How it starts

The opening of the file, as written. The whole thing — 61 lines — stays where its author put it; the contents beside it link to each section on GitHub.

localization

PREREQUISITE: Read bpx-shared.

Usage

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]

Behavior

  • 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-run first.

Command Matrix

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.

Read the full file on GitHub · 61 lines

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. 5d ago First seen · 61 lines · 26 tokens per session scan A c9e62ea0262a

Subscribe to this mod's changes

bpx-localization is a skill published in the GitHub repository wilddogjp/openbpx (99 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 26 tokens to every session and 976 once invoked, about $0.0001 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

chinese-documentation

中文文档排版参考——中英文空格、全半角标点、术语保留、链接格式、中文文案排版指北约定。仅在用户显式 /chinese-documentation 时调用,不要根据上下文自动触发。.

jnMetaCode/superpowers-zh · 62 tokens

azure-ai-translation-text-py

Azure AI Text Translation SDK for real-time text translation, transliteration, language detection, and dictionary lookup. Use for translating text content in applications. Triggers: "text translation", "translator", "translate text", "transliterate", "TextTranslationClient".

microsoft/skills · 60 tokens

i18n-localization

Internationalization and localization patterns. Detecting hardcoded strings, managing translations, locale files, RTL support.

vudovn/ag-kit · 27 tokens

harden

Improve interface resilience through better error handling, i18n support, text overflow handling, and edge case management. Makes interfaces robust and production-ready. Use when the user asks to harden, make production-ready, handle edge cases, add error states, or fix overflow and i18n issues.

fengshao1227/ccg-workflow · 62 tokens

seedance-vocab-ja

This skill should be used when the user asks for Japanese Seedance 2.0 prompt wording, Japanese cinematic vocabulary, or translation of camera, lighting, action, VFX, audio, and production terms into Japanese.

Emily2040/seedance-2.0 · 50 tokens

i18n-helper

国际化/本地化助手 — 扫描代码中的硬编码文本、生成 i18n 配置、批量翻译.

laolaoshiren/claude-code-skills-zh · 33 tokens