Omnibus
200 skills · 1230 min
Omnibus
Skill 116 of 200
Populate person or group properties from a data warehouse table or materialized view, so warehouse columns become properties usable in feature flags, cohorts, and insights.
5 minutes · 1,037 words · 9 sections
Install
npx skills add PostHog/skills --skill setting-up-warehouse-propertiesnpx skills add PostHog/skills/plugin marketplace add PostHog/skillsThe first command installs just this skill, by the name in its SKILL.md; the second installs the whole repository.
Warehouse properties write columns from a warehouse table or materialized view onto matching people or groups,
on the schedule that table already syncs on. They replace a cron that sends $set identify events.
The mapping is the whole job. Most tables worth mapping are wide, so the work is deciding which columns become
properties and what they are called — not making many API calls. One source carries the entire mapping:
custom-property-sources-create takes the complete column_property_map in a single request, so never loop
per column.
postgres.customer_attributes columns to person properties”Use setting-up-a-data-warehouse-source instead when the table is not in the warehouse yet. This skill starts
once the data is syncing.
| Tool | Purpose |
|---|---|
external-data-schemas-list | Find a synced table and its schema id (the external_data_schema binding); columns are omitted here |
external-data-schemas-retrieve | Read one synced table’s columns and types by schema id |
view-list | Find a materialized view and its column schema (the saved_query binding) |
view-get | Read one materialized view’s columns and types by id |
custom-property-definitions-list | See what warehouse properties already exist for the team |
custom-property-definitions-create | Create the definition the source attaches to (target_type: person or group) |
custom-property-sources-create | Bind the definition to the table, carrying the whole column_property_map |
custom-property-sources-backfill | Populate historical rows after creating the mapping |
custom-property-sources-runs-list | Check the run funnel after a sync or backfill |
custom-property-sources-sync | Run the underlying table now |
Person and group targets need the warehouse-person-properties feature. A group target additionally needs the
group:write scope; without it, custom-property-sources-create refuses the group definition.
For a synced table, external-data-schemas-list gives you the schema id (the external_data_schema binding), and
external-data-schemas-retrieve returns that schema’s columns and types.
For a materialized view, view-list finds the view and its column schema, and view-get returns one view’s columns
by id; a view binds by saved_query instead, and must already be materialized, since an unmaterialized view has no
data to read and the create call rejects it.
Ask which column holds the PostHog distinct ID (person targets) or the group key (group targets). This is
the single most common reason a mapping silently does nothing, so do not guess it from a name like id or
user_id without confirming.
Two properties of the sync are worth stating plainly before the user commits:
skipped_missing_person. It does not create people.Build the full column_property_map — {warehouse_column: property_name} — and show it to the user for
approval. Default to the same name on both sides; a rename is the user’s call, not a guess worth making.
Exclude from the proposal, and say what you excluded:
$-prefixed, and email, name, username. These are identity properties the SDKs set, and
writing them from the warehouse can overwrite what PostHog already knows.Then check collisions: read the existing person properties and call out any mapped name that already exists,
because the sync will overwrite it on every run. custom-property-definitions-list shows the warehouse
properties already configured, so you can also spot a table that is already mapped.
Wide tables are exactly when this matters — a twenty-column table proposed as a bare list is not reviewable. Group the proposal into what will be mapped, what you excluded and why, and what collides.
Create the definition first, then the source:
custom-property-definitions-create with target_type: person (or group plus group_type_index),
display_type: text, and a name describing the group of properties, not one column — the definition is the row
the user sees in the UI. display_type is required by the API; use text for person and group targets, where it
is ignored (it only drives how an account property renders, since profile properties are written as raw $set /
$group_set values).custom-property-sources-create with the definition id, exactly one of external_data_schema or
saved_query, the whole column_property_map, and key_column set to the identifier from step 2.The mapping and the binding are create-only. To change which columns are mapped, delete the property and create it again — so it is worth getting the proposal right rather than iterating on a live mapping.
Creating an enabled source starts a backfill automatically. For an existing mapping, custom-property-sources-backfill
reads the whole table and populates historical rows; it coalesces if one is already running.
Then read custom-property-sources-runs-list and walk the funnel, which is where a mapping that “did nothing”
explains itself:
| Stage | Zero here means |
|---|---|
rows_read | Nothing was staged — the table has not synced since the mapping was created |
changed | Every value already matches what was last sent; a re-run is expected to be quiet |
existing | No row’s identifier matched a person or group — usually the wrong key column |
produced | Nothing reached capture; check skipped_missing_person |
A run that reads rows but shows existing: 0 is the wrong-key-column case almost every time.
custom-property-sources-runs-list answers the question for free.Populate person or group properties from a data warehouse table or materialized view, so warehouse columns become properties usable in feature flags, cohorts, and insights. Use when the user wants to "sync my Postgres columns to person properties", "map a warehouse table to people", "replace our daily identify cron", "update person properties from the warehouse", or asks for reverse ETL into PostHog. Covers picking the table and the identifier column, proposing a whole-table column mapping in one call, excluding identity and reserved properties, checking collisions with properties that already exist, and running the first backfill.
The verbatim description from this skill’s front matter — the string an agent matches on to decide whether to load it.
main, last pushed 24 September 2026.SKILL.md, not by matching a directory convention. 2 distinct layouts observed: skills/omnibus/*/SKILL.md, skills/posthog/all/skills/*/SKILL.md.h1 and no skipped levels:.claude-plugin/marketplace.json by PostHog, declaring 6 plugins. It is read for editorial metadata only — never as the skill index, which is always the repository tree./PostHog/skills.md, and each skill at its own .md URL.