data-tables

Create, update, and query Unreal Engine Data Tables via Python.

586|127|Updated Sep 12, 2025
One-click install
npx skills add https://github.com/kevinpbuckley/VibeUE --skill data-tables
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: data-tables
Source: https://github.com/kevinpbuckley/VibeUE/tree/main/Content/Skills/data-tables
Command: npx skills add https://github.com/kevinpbuckley/VibeUE --skill data-tables

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Unreal Engine teams often spend significant time creating and updating Data Tables, aligning row data with item definitions, and keeping assets in sync across projects. This skill streamlines that workflow by providing programmatic access to DataTable creation, row management, and asset persistence through Unreal's Python API.

Core Features & Use Cases

  • Create new Data Tables for item row structs (e.g., FItemData) at a target path.
  • Add, update, list, and delete rows with JSON payloads while ensuring asset persistence.
  • Use cases include inventory item catalogs, quest item lists, and configurable game data stored in Data Tables.

Quick Start

Create a Data Table for FItemData at /Game/Data/DT_Items and add a row Sword_Iron with JSON data {"Name":"Iron Sword","Damage":50,"IsEquippable":true}.

Frequently Asked Questions about data-tables

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate Unreal Engine Data Table creation using Python?▼

You can automate Unreal Engine Data Table creation by using a Python-based workflow to programmatically generate tables for specific row structs like FItemData at designated project paths. This approach enables fast, batch structured item data management without manual editor input.

Can I batch update and add rows to Unreal Data Tables with JSON payloads?▼

Yes, you can batch add, update, list, and delete Data Table rows using JSON payloads. This Python workflow ensures row data aligns with item definitions and maintains asset persistence across project folders via EditorAssetLibrary.

What is the best way to manage inventory item catalogs in Unreal Engine?▼

The best way to manage inventory item catalogs is by storing configurable game data in Unreal Data Tables. You can programmatically create tables for item row structs and populate them with JSON data for assets like quest items.

Does this Python workflow support asset persistence for Unreal Data Tables?▼

Yes, the Python workflow supports asset persistence by saving Data Table assets via EditorAssetLibrary. It ensures that created tables and updated row data remain synced and persisted across your project folders.

How do I populate a Data Table row with JSON data in Unreal?▼

To populate a Data Table row, you provide a JSON payload like {"Name":"Iron Sword","Damage":50} mapped to a specific row name. The Python workflow processes this JSON to add or update the row within the target Data Table struct.