一键导入
bpx-datatable
BPX `datatable` command skill. Read DataTable-family rows and update DataTable rows.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
BPX `datatable` command skill. Read DataTable-family rows and update DataTable rows.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | bpx-datatable |
| description | BPX `datatable` command skill. Read DataTable-family rows and update DataTable rows. |
PREREQUISITE: Read bpx-shared.
bpx datatable read <file.uasset> [--export <n>] [--row <name>] [--format json|toml|csv|tsv] [--out path]
bpx datatable update-row <file.uasset> --row <name> --values '<json>' [--export <n>] [--dry-run] [--backup]
bpx datatable add-row <file.uasset> --row <name> [--values '<json>'] [--export <n>] [--dry-run] [--backup]
bpx datatable remove-row <file.uasset> --row <name> [--export <n>] [--dry-run] [--backup]
read: decodes DataTable/CurveTable/CompositeDataTable rows.update-row: patches fields in an existing row (DataTable exports only).add-row: appends a new row (DataTable only; row name must resolve in NameMap).remove-row: removes a row by name (DataTable only).read --format csv|tsv flattens rows for spreadsheet-style output.[!CAUTION] This command includes write-capable operations. Confirm intent and run
--dry-runfirst.
| Command | Use when | Notable defaults |
|---|---|---|
read | decodes DataTable/CurveTable/CompositeDataTable rows. | Read-only path; safe for discovery. |
update-row | patches fields in an existing row (DataTable exports only). | Run --dry-run first and use --backup for real writes. |
add-row | appends a new row (DataTable only; row name must resolve in NameMap). | Run --dry-run first and use --backup for real writes. |
remove-row | removes a row by name (DataTable only). | Run --dry-run first and use --backup for real writes. |
bpx datatable read ./Sample.uasset [--export 1] [--row SampleName] [--format json|toml|csv|tsv] [--out path]
bpx datatable update-row ./Sample.uasset --row SampleName --values '{"value":1}' [--export 1] [--dry-run] [--backup]
bpx datatable add-row ./Sample.uasset --row SampleName [--values '{"value":1}'] [--export 1] [--dry-run] [--backup]
bpx datatable remove-row ./Sample.uasset --row SampleName [--export 1] [--dry-run] [--backup]
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 `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.
BPX `find` command skill. Scan directories for assets and summarize parse outcomes.