원클릭으로
bpx-prop
BPX `prop` command skill. Read decoded properties or mutate properties in one export.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
BPX `prop` command skill. Read decoded properties or mutate properties in one export.
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-prop |
| description | BPX `prop` command skill. Read decoded properties or mutate properties in one export. |
PREREQUISITE: Read bpx-shared.
bpx prop list <file.uasset> --export <n>
bpx prop set <file.uasset> --export <n> --path <dot.path> --value '<json>' [--dry-run] [--backup]
bpx prop add <file.uasset> --export <n> --spec '<json>' [--dry-run] [--backup]
bpx prop remove <file.uasset> --export <n> --path <dot.path> [--dry-run] [--backup]
list: decodes properties for one export and includes warnings.set: updates an existing property value at --path.add: appends a new top-level property from --spec JSON.remove: removes a property at --path.[!CAUTION] This command includes write-capable operations. Confirm intent and run
--dry-runfirst.
| Command | Use when | Notable defaults |
|---|---|---|
list | decodes properties for one export and includes warnings. | Read-only path; safe for discovery. |
set | updates an existing property value at --path. | Run --dry-run first and use --backup for real writes. |
add | appends a new top-level property from --spec JSON. | Run --dry-run first and use --backup for real writes. |
remove | removes a property at --path. | Run --dry-run first and use --backup for real writes. |
prop list immediately before prop set/add/remove to avoid stale assumptions.bpx prop list ./Sample.uasset --export 1
bpx prop set ./Sample.uasset --export 1 --path MyProperty --value '{"value":1}' [--dry-run] [--backup]
bpx prop add ./Sample.uasset --export 1 --spec '{"value":1}' [--dry-run] [--backup]
bpx prop remove ./Sample.uasset --export 1 --path MyProperty [--dry-run] [--backup]