From openbpx
Reads DataTable/CurveTable/CompositeDataTable rows from .uasset files and modifies DataTable rows via BPX CLI: update, add, remove with dry-run/backup.
How this skill is triggered — by the user, by Claude, or both
Slash command
/openbpx:bpx-datatableThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **PREREQUISITE:** Read [bpx-shared](../bpx-shared/SKILL.md).
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]
npx claudepluginhub wilddogjp/openbpx --plugin openbpxReads StringTable exports from .uasset files and edits entries: update key values, remove keys, set namespaces using BPX CLI commands with dry-run and backup options.
Administer n8n DataTables (tables, columns, rows) via the n8n public REST API. Use when users need CRUD operations outside of a workflow or the n8nac CLI.
Placeholder skill awaiting content authoring. Will provide agent guidance for the @virtuoso.dev/data-table package.