ワンクリックで
bpx-export
BPX `export` command skill. Inspect export headers or update selected header fields.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
BPX `export` command skill. Inspect export headers or update selected header fields.
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 `find` command skill. Scan directories for assets and summarize parse outcomes.
| name | bpx-export |
| description | BPX `export` command skill. Inspect export headers or update selected header fields. |
PREREQUISITE: Read bpx-shared.
bpx export list <file.uasset> [--class <token>]
bpx export info <file.uasset> --export <n>
bpx export set-header <file.uasset> --index <n> --fields '<json>' [--dry-run] [--backup]
list: lists export headers with class/object/serial info.info: inspects one export header by --export index.set-header: updates selected export header fields (write command).set-header requires non-empty --fields JSON and reports old/new field values.[!CAUTION] This command includes write-capable operations. Confirm intent and run
--dry-runfirst.
| Command | Use when | Notable defaults |
|---|---|---|
list | lists export headers with class/object/serial info. | Read-only path; safe for discovery. |
info | inspects one export header by --export index. | Read-only path; safe for discovery. |
set-header | updates selected export header fields (write command). | Run --dry-run first and use --backup for real writes. |
bpx export list ./Sample.uasset [--class SampleToken]
bpx export info ./Sample.uasset --export 1
bpx export set-header ./Sample.uasset --index 1 --fields '{"value":1}' [--dry-run] [--backup]