بنقرة واحدة
bpx-var
BPX `var` command skill. Inspect variable defaults/declarations and update defaults or names.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
BPX `var` command skill. Inspect variable defaults/declarations and update defaults or names.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
BPX `blueprint` command skill. Inspect and analyze blueprint exports, bytecode, and graph data.
BPX `class` command skill. Inspect one class export payload/header by index.
BPX `datatable` command skill. Read DataTable-family rows and update DataTable rows.
BPX `dump` command skill. Dump package summary/name/import/export tables in structured formats.
BPX `enum` command skill. List enum exports or update existing enum values.
BPX `export` command skill. Inspect export headers or update selected header fields.
| name | bpx-var |
| description | BPX `var` command skill. Inspect variable defaults/declarations and update defaults or names. |
PREREQUISITE: Read bpx-shared.
bpx var list <file.uasset>
bpx var set-default <file.uasset> --name <var> --value '<json>' [--dry-run] [--backup]
bpx var rename <file.uasset> --from <old> --to <new> [--dry-run] [--backup]
list: merges CDO defaults with declaration metadata.set-default: writes a variable default on CDO properties.rename: rewrites matching NameMap entries from --from to --to.rename fails when destination variable is already declared; may return declaration warnings.[!CAUTION] This command includes write-capable operations. Confirm intent and run
--dry-runfirst.
| Command | Use when | Notable defaults |
|---|---|---|
list | merges CDO defaults with declaration metadata. | Read-only path; safe for discovery. |
set-default | writes a variable default on CDO properties. | Check bpx help for exact required flags. |
rename | rewrites matching NameMap entries from --from to --to. | Run --dry-run first and use --backup for real writes. |
bpx var list ./Sample.uasset
bpx var set-default ./Sample.uasset --name <var> --value '{"value":1}' [--dry-run] [--backup]
bpx var rename ./Sample.uasset --from OldValue --to NewValue [--dry-run] [--backup]