Best for
- "how does my data compare to your marketplace"
- "how much overlap do I have with [supplier]"
- "compare my data to [partner]"
narrative-io/narrative-skills-marketplace/plugins/narrative-identity/skills/generate-match-report/SKILL.md
Compare your data to a partner's data in the marketplace. Given a dataset you already own with person/edge data, this skill walks you through picking a partner data source to match against, choosing which identifier types to match on, optionally selecting which enrichment attributes to attach, and then submits the report — returning overlap, match counts, and demographic coverage. Use when: "how does my data compare to your marketplace", "compare my data to [partner]", "how much overlap do I hav
Decision brief
Compare your data to a partner's data in the marketplace. Given a dataset you already own with person/edge data, this skill walks you through picking a partner data source to match against, choosing which identifier types to match on, optionally selecting which enrichment attributes to attach, and then submits the report — returning overlap, match counts, a…
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Declared | Source record | Install path and trigger |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/narrative-io/narrative-skills-marketplace --skill "plugins/narrative-identity/skills/generate-match-report"Inspect the Agent Skill "generate-match-report" from https://github.com/narrative-io/narrative-skills-marketplace/blob/b6b251bc90f397c809e4eca98a051f1b199c86a1/plugins/narrative-identity/skills/generate-match-report/SKILL.md at commit b6b251bc90f397c809e4eca98a051f1b199c86a1. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
The interactive flow: pin the company, choose the match key(s), pick the customer dataset, confirm mappings, ground the customer id-types, pick the partner identity AR, optionally pick an enrichment AR, render and confirm the workflow YAML, submit + poll, and summarize the resul…
Most Narrative work is scoped to a company. Before any dataset, attribute, or workflow call:
Skip this prompt if --match-key was passed; otherwise ask:
Find datasets the user owns that have a graphedge mapping. Use narrativedatasetssearch filtered to owned + has-mapping, or fall back to searching owned datasets and then narrativedatasetsdescribe(... include=["mappings"]) to filter client-side.
A match report can't run without identifier edges. After binding CUSTOMERDATASETID — whether from the Phase 2 prompt or from --dataset — verify the chosen dataset actually has a graphedge Rosetta Stone mapping:
Permission review
The documentation asks the agent to run terminal commands or scripts.
made with `trigger_immediately=true`). Poll the run until terminal:Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 94/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 7 | Source | Repository attention, not individual Skill quality |
| Compatibility | 1 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
You are a marketplace match-report engineer who turns a plain-English "how does my data compare to theirs" question into a submitted Narrative workflow. You optimize for:
assets/ and the NQL
inside it are external contracts — the downstream report UI keys
off the exact ATTRIBUTE_TYPE rows the queries produce. Macro-
substitute the variables; never rewrite the queries or the row
schema.narrative_nql_validate pass per step is
free insurance against typos that would otherwise burn that time.You never rewrite the workflow YAML or its NQL, never submit before each step's NQL validates, and never invent identifier types the customer dataset doesn't actually emit.
Translates the user's plain-English overlap question into a workflow
submission against assets/workflow.yaml.tmpl. The user doesn't
need to know the jargon — they want to know how much of their
data overlaps with a partner's and what extra information they
could attach to each person if they bought the data. Submit the
whole workflow at once (the runner handles step ordering and
retries); every AskUserQuestion gets 2–4 recommended options, with
free-text reserved for inputs MCP cannot enumerate.
/generate-match-report — full interactive workflow./generate-match-report --dataset <id> — skip the customer prompt./generate-match-report --supplier-ar <id> — skip the partner prompt./generate-match-report --no-enrichment — identity-only run; omit
step 4 and the attribute-related step-5 CTEs./generate-match-report --match-key <attr[+attr…]|identifiers> —
add a match channel (repeatable). identifiers (the default when the
flag is omitted) matches on the dataset's graph_edge identifiers
(email/phone/etc.). Any other value names one or more Rosetta
attributes joined with +, fused into a single compound key — e.g.
--match-key soundex_first_name+libpostal_normalized_address_array.
Components whose attribute type is array are exploded with UNNEST
so the join runs once per array element. Pass the flag twice to match
on both channels; the report breaks results down per ID_TYPE.
See references/CUSTOM_MATCH_KEY_VARIANT.md./generate-match-report --array-field-handling <standalone-attribute|graph-edge-json>
— (custom match keys, customer side only) how the customer sources
the key's component attributes. standalone-attribute (default): read
each component as its own mapped Rosetta attribute — e.g.
soundex_first_name (81) + libpostal_normalized_address_array (326)
— and UNNEST native arrays. graph-edge-json: the components are
packed into a graph_edge target_id JSON — TRY_PARSE_JSON +
CAST(... AS ARRAY<STRING>) + UNNEST instead.
Both yield the identical compound key (proven equivalent, SC-62612).
Omit to auto-detect from the customer dataset's mappings. The flag
never selects a supplier-side path: the supplier extraction is always
raw-then-block (variant doc, step 2), because computed Rosetta
attributes re-derive per row at query time (SC-61797)./generate-match-report --dry-run — render the YAML and show it
without submitting.Trigger when the user types /generate-match-report or asks any of:
Required prerequisites. This skill assumes:
graph_edge
(source_id, source_id_type, target_id, target_id_type).If a prerequisite is missing, the procedure surfaces the gap and
asks the user whether to route to the relevant sibling skill — don't
reimplement here. The graph_edge branch is a live check in
Phase 2.5:
| Missing | Hand off to |
|---|---|
| No dataset | Ask the user to register one first |
No graph_edge mapping | /generate-rosetta-stone-mappings (asked in Phase 2.5) |
| No partner ARs | Ask the partner to publish a compatible access rule |
Do NOT use this skill for:
/generate-identity-graph./triage-pregraph-data./generate-rosetta-stone-mappings.The interactive flow: pin the company, choose the match key(s), pick the customer dataset, confirm mappings, ground the customer id-types, pick the partner identity AR, optionally pick an enrichment AR, render and confirm the workflow YAML, submit + poll, and summarize the result.
The match key threads through the phases. The default
(identifiers) is the flow documented below verbatim. A custom match
key — a compound of attributes, an array-typed attribute, or both —
swaps the two edge-extraction steps and adds a prerequisite check;
every such deviation is called out inline under a Custom match key
heading, and the full surgery lives in
references/CUSTOM_MATCH_KEY_VARIANT.md.
Most Narrative work is scoped to a company. Before any dataset, attribute, or workflow call:
narrative_context_get → check the active company
If no company is set, or the user named a different one:
narrative_context_search_companies(search_term: "<name>")
narrative_context_set_company(companyId: <id>)
narrative_context_search_companies is global-admin-only. Skip the
search/set entirely if the user invoked the skill from a Narrative
Platform UI session where the company is implicit
(narrative_context_get returns one).
If the user names a different company than the one currently active, confirm before switching:
Context: We're about to compare your data to a partner's. Plain English: A match report is "how much of my data overlaps with theirs, and what extra info would I get." We'll run it as the active company unless you say otherwise.
Options:
- A) Run as
<current_company>(recommended)- B) Switch — show me the list
Skip this prompt if --match-key was passed; otherwise ask:
Context: Deciding what key joins the two datasets. Plain English: Match on the shared identifiers already in your graph edges (email, phone), on a compound key built from other attributes (e.g. soundex first name + normalized address), or both? Recommend: Identifiers — exact and cheapest — unless the user wants name/address reach.
Options:
- A) Identifiers —
graph_edgeidentifier match (email/phone/…) (recommended)- B) Compound name+address key —
soundex_first_name+libpostal_normalized_address_array- C) Both — each channel broken down per
ID_TYPE
Bind MATCH_KEYS — the list of match channels. For identifiers
alone, follow every phase below as written and ignore the Custom
match key callouts. When a custom key is in the list, apply each
Custom match key callout and render that channel's edge-extraction
steps from
references/CUSTOM_MATCH_KEY_VARIANT.md.
With multiple channels, render each channel's edge-extraction steps
on each side and UNION ALL them in step 3 (the variant doc's
"Multiple match keys" section).
A custom key is any +-joined list of Rosetta attributes, fused into
one atomic key. Components whose attribute type is array are exploded
(UNNEST) so the join runs once per array element — array-ness comes
from the attribute's type in Rosetta Stone (checked in Phase 2.5),
never from its name. The compound name+address key is the worked
example the variant doc carries end-to-end.
Find datasets the user owns that have a graph_edge mapping. Use
narrative_datasets_search filtered to owned + has-mapping, or
fall back to searching owned datasets and then
narrative_datasets_describe(... include=["mappings"]) to filter
client-side.
If the search returns zero candidates, or the user passes
--dataset <id> pointing to an unmapped dataset, skip the candidate
list below and jump straight to Phase 2.5's mapping-check
question.
Context: Picking your data in the comparison. Plain English: Which dataset is "yours"? It needs to have identifier edges already mapped — that's what we'll join on. Recommend: The most recently updated graph-edge dataset.
Options:
- A)
<most_recent_dataset_name>(recommended — updated<date>)- B)
<second_dataset_name>- C)
<third_dataset_name>- D) Search by name (free text fallback)
Bind CUSTOMER_DATASET_NAME (the bare table name used in
FROM company_data.<name>) and CUSTOMER_DATASET_ID.
graph_edge mappingA match report can't run without identifier edges. After binding
CUSTOMER_DATASET_ID — whether from the Phase 2 prompt or from
--dataset <id> — verify the chosen dataset actually has a
graph_edge Rosetta Stone mapping:
narrative_datasets_describe(
dataset_ids=[CUSTOMER_DATASET_ID],
include=["mappings"]
)
If the describe call errors or returns no result, exit with status
NEEDS_CONTEXT and surface the error verbatim to the user.
If graph_edge is present → continue to Phase 3.
If it is absent (or Phase 2's owned-and-mapped search returned zero candidates to begin with), ask the user:
Context: The dataset you picked isn't ready for a match report yet. Plain English:
<CUSTOMER_DATASET_NAME>doesn't havegraph_edgemapped yet — that's the identifier-edge structure match reports join on. Without it, there's nothing to compare to the partner. Recommend: Route to/generate-rosetta-stone-mappingsso the dataset gets the mapping it needs, then come back here.Options:
- A) Route me to
/generate-rosetta-stone-mappingsfor<CUSTOMER_DATASET_NAME>(recommended)- B) Pick a different dataset (return to Phase 2)
- C) Cancel
/generate-rosetta-stone-mappings for <CUSTOMER_DATASET_ID> and re-invoke
/generate-match-report once the mapping lands. Exit with status
NEEDS_CONTEXT.--dataset <id>).NEEDS_CONTEXT.CUSTOMER_DATASET_ID. If no match, fall back to the prompt
with the user's text echoed in the question.Do not try to author the mapping inline — /generate-rosetta-stone-mappings owns
that contract end-to-end.
When MATCH_KEYS includes a custom key (worked example: the compound
soundex_first_name (81) + libpostal_normalized_address_array (326)
key), resolve each component attribute with
narrative_attributes_describe and note its type — a component
whose attribute type is array (like libpostal_normalized_address_array)
gets exploded with UNNEST in step 1; scalar components are used
directly. From the same include=["mappings"] describe, bind
ARRAY_FIELD_HANDLING — the shape the customer exposes the
components in:
standalone-attribute — each component mapped as its own Rosetta
attribute. Step 1 reads them directly and UNNESTs the native array.graph-edge-json — a graph_edge (362) mapping whose
target_id_type is soundex_first_name|libpostal_normalized_address_array
and whose target_id is a JSON object
{soundex_first_name, libpostal_normalized_address_array}. Step 1
TRY_PARSE_JSONs the target_id and UNNESTs the parsed array (must
CAST(... AS ARRAY<STRING>) — UNNEST rejects VARIANT).Honor --array-field-handling if passed; otherwise auto-detect (prefer
graph-edge-json when that edge exists, else standalone-attribute).
The two produce identical matches (SC-62612) — the choice is purely
how the dataset was mapped. Both step-1 bodies are in
references/CUSTOM_MATCH_KEY_VARIANT.md.
If the customer exposes neither shape, route to
/generate-rosetta-stone-mappings (same hand-off as the graph_edge
branch above). The partner side is checked in Phase 4.
ARRAY_FIELD_HANDLING binds the customer side only. Reading a
computed Rosetta attribute directly is safe there solely because the
customer file is small; the supplier side never reads these attributes
— it always goes raw-then-block (variant doc, step 2), whatever shape
the supplier AR exposes.
Match reports filter on the target_id_type values your dataset
actually emits. Delegate the histogram read — including the
configure → recalculate → re-read recovery when it's missing or stale —
to /profile-dataset instead of driving the stats tools here:
/profile-dataset --dataset CUSTOMER_DATASET_ID --focus _rosetta_stone.graph_edge.target_id_type --histograms --allow-recalc --json
--allow-recalc pre-approves the profiler's (otherwise gated) stats
recalculation so it can recover a missing/stale histogram without a
second prompt. From the returned profile object, read the focused
column's top_values and bind CUSTOMER_ID_TYPES = the set of value
keys (e.g. {normalized_email, e164_phone_number}).
Input: CUSTOMER_DATASET_ID. Output: the id-type distribution
in the focused column's top_values. If /profile-dataset is
unavailable, see
references/HARNESS_FALLBACK.md for
the inline column-stats-config recovery this step used to carry.
This step is informational — no question to the user. Just note:
Your dataset emits
<N>identifier types:<list>.
Custom match key. A custom-key channel doesn't match on
target_id_type, so this histogram doesn't gate it. Instead report the
key coverage — the share of customer rows where every component is
non-null (and every array component non-empty); those are the rows the
step-1 explode keeps. Low coverage caps that channel's achievable match
rate; surface it. When identifiers is also in MATCH_KEYS, report
both this coverage and the CUSTOMER_ID_TYPES histogram.
Find non-owned datasets/ARs on the data plane with graph_edge
mapped. For each candidate, compute the overlap with
CUSTOMER_ID_TYPES: the supplier's identifier-typed mappings
intersected with the customer's emitted id-types.
Use Appendix B's IDENTIFIER_ATTRIBUTE_IDS set to identify which of
the supplier's mappings are identifier-typed (not enrichment).
Rank candidates by overlap size (descending) so the strongest match shows first.
Context: Picking the partner to compare against. Plain English: Which 3P data source do you want to see overlap with? The number is how many identifier types you share — bigger is better, zero means the comparison can't run. Recommend: The top-overlap option.
Options:
- A)
<partner_ar_1>— overlap: 2 (normalized_email,e164_phone_number) (recommended)- B)
<partner_ar_2>— overlap: 5- C)
<partner_ar_3>— overlap: 0 (blocked)- D) See all available partners
If the user picks a 0-overlap option, surface a blocker (instead of running an empty comparison):
Blocker: Your dataset emits
<your-only types>. The partner covers<their-only types>. No identifier is common, so a match report would return zero matches.Options:
- A) Pick a different partner
- B) Stop and route to
/generate-rosetta-stone-mappingsto add a compatible identifier (e.g., addsha256_hashed_emailif the partner has it)- C) Continue anyway (debugging only)
Bind SUPPLIER_AR_TABLE = the qualified <company_slug>.<ar_name>
(used in FROM <SUPPLIER_AR_TABLE> AS x in step 2), SUPPLIER_NAME
(human-readable name for the report description), and
OVERLAP_ID_TYPES.
Custom match key. A custom-key channel's "overlap" is binary, not a
count: does the partner AR have raw person_name|postal_address
identifier_value rows that step 2b reconstructs the key's components
from? That is the only supplier-side source that counts. A partner
AR that merely exposes the computed attributes (soundex_first_name
(81) + libpostal_normalized_address_array (326)) does not qualify
at scale — those attributes are computed per row at query time, so
selecting them over a large graph is the SC-61797 failure. Rank/label
partners on the raw-rows check instead of shared target_id_type
count; a partner without raw name|address rows is a blocker for that
channel (route to /generate-rosetta-stone-mappings). Skip the
id-type narrowing sub-prompt below — the custom key is fixed, there's
nothing to narrow. When identifiers is also in MATCH_KEYS, keep
narrowing for that channel and additionally require the raw
name|address source.
len(OVERLAP_ID_TYPES) > 2)Plain English: We can match on any of these identifier types. Which should count? More = wider net but more compute. Recommend: All of them.
Multi-select, all pre-checked:
normalized_emaile164_phone_numbersha256_hashed_email- (any others)
Bind SELECTED_ID_TYPES = the checked subset (default: full overlap).
Format as SELECTED_ID_TYPES_QUOTED for the YAML — comma-separated
single-quoted strings: 'normalized_email', 'e164_phone_number'.
Plain English: Want demographic and behavioral data attached to each match (age, gender, income, interests, etc.)? That needs a separate access rule beyond the identity one. Recommend: Yes, if the partner offers an enrichment AR.
Options:
- A) Yes — pick an enrichment AR (recommended)
- B) No — identity-only report (just match counts + ID-type breakdowns)
If B, skip step 4 in the YAML and use the identity-only template
variant — see
references/IDENTITY_ONLY_VARIANT.md
for the exact diff against assets/workflow.yaml.tmpl.
If A, find non-owned ARs with demographic mappings (any mapping
whose attribute_id is not in IDENTIFIER_ATTRIBUTE_IDS and is not
graph_edge). Rank by demographic-mapping count.
Plain English: Which enrichment source? The number is how many attributes will attach to each match. Recommend: The same partner whose identity AR you picked, if they offer enrichment too.
Options:
- A)
<enrichment_ar_1>— 28 attributes (recommended)- B)
<enrichment_ar_2>— 15 attributes- C) None — identity only
Bind ENRICHMENT_AR_TABLE = <company_slug>.<ar_name>.
Partition the enrichment AR's mappings; the identifier-typed ones are
join-key candidates. Preference order for the default:
person_id > household_id > untyped_unique_id >
normalized_email > e164_phone_number.
For object-typed identifiers (person_id, household_id — properties
includes "value"), the leaf SQL path is
_rosetta_stone.<name>['value']. For primitives, just
_rosetta_stone.<name>. No e. prefix — the template prepends it.
Plain English: Which column should we join the enrichment data on?
person_id.valueis the person-level identifier — recommended.household_id.valuecollapses to households (coarser). Recommend:person_id.value.Options:
- A)
person_id.value(recommended)- B)
household_id.value- C)
untyped_unique_id- D)
telephone_number
Bind ENRICHMENT_JOIN_PATH. Critical: must not start with e..
Expand the enrichment AR's demographic mappings into leaf paths:
for each object-typed mapping, one entry per mapped property (e.g.
hl7_gender.gender, hl7_gender.methodology). For primitives, one
entry per attribute name.
If the count exceeds 4 (AskUserQuestion's option limit), chunk into groups and let the user toggle a whole group off, then ask a follow-up for any individual removals:
Plain English: Which categories of enrichment attributes? All on by default — toggle off anything irrelevant. Recommend: Keep them all unless you have a specific reason.
Multi-select, all pre-checked:
- Demographics (age, gender, race, income, education) — 8 attrs
- Geography (postal_code, state, country, lat/long) — 7 attrs
- Person identifiers (full_name, given_name, family_name) — 4 attrs
- IAB interest categories (age range, marital, family, pets, …) — 9 attrs
Then optional drill-down per group if the user wants finer control.
Bind SELECTED_ATTRIBUTES = list of { name, sql_leaf_path } entries.
Build ATTRIBUTE_STRUCTS and ATTRIBUTE_NAMES_LIST (Appendix A).
Compute the run identifiers:
RUN_SLUG_KEBAB = <supplier>-match-report-<YYYYMMDD-HHMMSS>RUN_SLUG_LOWER = <supplier>_match_report_<YYYYMMDD_HHMMSS>RUN_SLUG_UPPER = <SUPPLIER>_MATCH_REPORT_<YYYYMMDD_HHMMSS>Where <supplier> is the partner slug (e.g., verisk) and the
timestamp is UTC now. (These three forms exist because the YAML uses
each in different places — kebab in the document name, lower in
table references, upper in the MV DISPLAY_NAME.)
Read assets/workflow.yaml.tmpl, substitute all macros from Appendix A,
and present the result:
Plain English: Ready to submit. Here's what we'll do:
- Your data:
<CUSTOMER_DATASET_NAME>(<N>id types:<list>)- Partner:
<Supplier human name>— matching on<SELECTED_ID_TYPES>- Enrichment:
<ENRICHMENT_AR_TABLE>joined on<ENRICHMENT_JOIN_PATH>with<M>attributes- Report display name:
<REPORT_DISPLAY_NAME>- Final MV table name:
<RUN_SLUG_UPPER>(timestamped for uniqueness)- Expected runtime: 5–25 minutes
Options:
- A) Submit (recommended)
- B) Show me the full YAML first
- C) Cancel
If --dry-run, stop here, print the YAML, and exit.
Custom match key. Render steps 1 and 2 from
references/CUSTOM_MATCH_KEY_VARIANT.md
instead of the default bodies: step 1 is the customer explode — use the
Mode A (standalone-attribute) or Mode B (graph-edge-json)
step-1 body per the ARRAY_FIELD_HANDLING bound in Phase 2.5 — and step
2 becomes two MVs (step_2a_supplier_nameaddr_slice +
step_2b_supplier_compound), so point step 3's supplier FROM at the
2b table. Substitute the custom-key macros (MATCH_KEY_EXPR,
MATCH_ID_TYPE, PERSON_ID_PATH, ARRAY_FIELD_HANDLING) alongside the
usual ones (Appendix A). The supplier side is always raw-then-block
— never SELECT the supplier AR's computed key attributes, and keep
the soundex+zip blocking in 2b regardless of partner size. The block
is not an optimization: computed Rosetta attributes re-derive
ADDRESS_HASHES per row over the full table at query time, and the
external function 500s at scale (SC-61797). The confirmation
summary should name the key (e.g. "matching on soundex first name +
normalized address") and flag the explode fan-out cost. With multiple
channels in MATCH_KEYS, every channel's steps render on each side.
The workflow runs 10–25 minutes — catching typos up front beats waiting for the runner to fail.
Validate any NQL before executing it, submitting it in a workflow, or displaying it to the user:
narrative_nql_validate(nql=<query>, data_plane_id=<plane>)
Pass data_plane_id matching the dataset's plane — without it, the
validator falls back to the company default plane and can report
spurious "Unknown Table" errors.
If validation fails:
plugins/narrative-common/skills/write-nql/references/NQL_VALIDATION_ERRORS.md.If narrative_nql_validate isn't exposed by the harness, skip and
warn the user. Do not substitute narrative_nql_run; it allocates
compute.
Call narrative_workflows_create with:
specification = the substituted YAMLdata_plane_id = the customer dataset's data plane UUIDtags = ["_nio_ci_match_report_workflow", "<RUN_SLUG_LOWER>"]trigger_immediately = trueAfter narrative_workflows_create returns, capture both
workflowId and runId (the latter is present when the call was
made with trigger_immediately=true). Poll the run until terminal:
narrative_workflow_runs_list(workflow_id=workflowId)
Terminal states are completed, failed, and terminated; any other
status means keep polling.
Calibrate the wait to how long Narrative async operations actually take: they rarely finish in under ~30s, the median is roughly 5 minutes, and large or cold-pool work can run for hours. Sub-second polling just burns turns — wait before the first check and keep the interval wide.
Prefer a non-blocking watcher over a foreground sleep. By default,
do the waiting with a Monitor driving an until loop (or whatever
equivalent background-wait the harness exposes): arm it to re-check on
an interval and emit once the state is terminal, so the session stays
free while the operation runs and you're notified the moment it
finishes. (When the state is only observable through an MCP tool, run
the loop as a backgrounded wait and re-check the tool on each wake.)
Only fall back to a foreground bash sleep between status calls
when no background-watch mechanism is available — and note that some
harnesses block foreground sleep outright.
Cadence. First check ~15–30s after submitting, then poll about every 30s, backing off to ~60s once it's been running for a few minutes. If it's still in an active, post-startup state after a few minutes, leave the background watcher running and tell the user once — "still running (this can take minutes to hours); I'll report back when it finishes" — rather than blocking on a multi-hour loop.
Give-up rule — abandon a stuck operation, not a merely slow one. If it sits in an early/startup state with no transition for ~15 minutes, surface the id and partial state so the user can check later (cold compute pools can legitimately sit pre-execution for several minutes before promoting). Work that is actively executing is making progress even across a long wall-clock time — keep watching it in the background instead of timing it out.
The run-list endpoint returns only run-level fields (status,
start_time, close_time) — no per-step job IDs and no failure
messages. For step-level visibility (which step failed, what the
underlying error was), enumerate the per-step jobs:
narrative_jobs_search(workflow_run_id=runId)
Each result carries a job_id plus the workflow step it ran for.
Pull the failing one's detail with
narrative_jobs_describe(job_id=<...>) to read the actual error
message. This two-call composition substitutes for a missing
narrative_workflow_run_describe endpoint — no UI hop required.
On failed, surface the failing step's error verbatim and STOP —
do not auto-retry. The caller skill decides whether to offer
re-rendering, route to a sibling skill, or hand control back to
the user.
The workflow's last step (step_6_sample_final) already ran a
CreateDatasetSample against the final MV by the time the run hits
completed. Both finalDatasetId and finalSampleRowCount are in
the workflow's exported context. No out-of-band sample call is
needed — just read the sample directly:
narrative_datasets_describe(
dataset_ids=[FINAL_DATASET_ID],
include=["sample", "metadata"]
)
(If you ever need to re-sample later — e.g., the user reruns the
underlying datasets — call narrative_dataset_request_sample on
demand; the workflow only samples once at the end of a run.)
Pull these ATTRIBUTE_TYPE rows from the sample for the summary:
match_totals → matched persons + IDscustomer_baseline → total customer persons + IDs (denominator)kpi_match_rate → match rate (%)match_attribute_coverage → coverage per attribute (top 5)Render:
DONE. Match report
<RUN_SLUG_UPPER>ready (dataset<FINAL_DATASET_ID>).
- Customer persons:
<N>- Matched persons:
<M>(<M/N>%)- Identifier types matched:
<list with counts>- Top enrichment coverage:
<top 5 attrs with %>
For datasets that should be temporary — ad-hoc scratch artifacts, intermediate steps in a workflow, or anything created on the fly that shouldn't outlive its immediate purpose — set both:
EXPIRE = 'P1D' (or another ISO-8601 duration). The platform
garbage-collects the dataset that long after creation, removing
both the storage and the Dataset entry automatically. P1D is a
sensible default: enough time to debug, short enough not to
clutter long-term storage. Use a longer duration only if the user
is expected to inspect the dataset after creation.TAGS = ( '_nio_materialized_view', '_nio_interactive', ... ) —
the _nio_interactive tag is what the dataset store's default
datasets getter filters out. The dataset becomes invisible in
the customer's Datasets list and in source pickers (Audience
Studio, Graph Studio, etc.). It still exists; it only surfaces
in escape-hatch views that opt in via
allDatasetsIncludingInteractive.Common application: workflows whose intermediate steps materialize
data the user shouldn't see. Tag every intermediate MV with both
EXPIRE and _nio_interactive; tag the final, customer-facing
artifact with neither — that's the deliverable, it should be
persistent and visible.
If the user asks where a temporary dataset went, explain: it exists for the EXPIRE window, it's hidden from the main UI by tag, and it auto-deletes. Nothing to clean up by hand.
In this skill specifically: steps 1–4 are intermediates (tag both), step 5 is the deliverable (tag neither).
User has a CRM dataset mapped to graph_edge. A single partner ships
both an identity AR and a demographic AR. Take the highest-overlap
partner AR for identity, pre-tick all overlapping id-types, and
default the enrichment AR to the same partner with all leaf
attributes pre-checked. One submit, both runs of step 4 and step 5
on. Expected runtime 5–25 minutes.
User explicitly opts out of enrichment in Phase 5, or no partner
exposes a demographic AR. Run via --no-enrichment or the
interactive "No — identity-only" option; the renderer drops step 4
and the attribute-related step-5 CTEs (see
references/IDENTITY_ONLY_VARIANT.md).
Partner overlaps on 3+ id-types but the user wants to scope the run
(e.g., email only). In Phase 4's narrowing sub-prompt, user unchecks
the unwanted types. Bind only the remaining types into
SELECTED_ID_TYPES_QUOTED. Match count drops; runtime unchanged.
User wants reach beyond exact identifiers, or has only name+address on
one side. Pick the compound key (or both channels) in Phase 1.5. Phase
2.5 binds ARRAY_FIELD_HANDLING — the customer exposes
soundex+libpostal as standalone attrs (81+326) or packed in a
graph_edge target_id JSON (--array-field-handling overrides; both
equivalent). Steps 1 and 2 render from
references/CUSTOM_MATCH_KEY_VARIANT.md
— step 1 uses the Mode A / Mode B body; step 2 splits into 2a (slice) +
2b (soundex+zip-blocked ADDRESS_HASHES explode). Steps 3–5 and the
output schema are unchanged; the headline KPI is the person-level rate,
not the id-based one. Expect higher compute (per-side explode fan-out),
and matches only as precise as the key's components — soundex is lossy,
so surface the false-positive trade-off.
User passes --dry-run. Render the YAML through Phase 6, print it,
and exit without calling narrative_workflows_create. No validation
calls either — the user is inspecting the spec, not running it.
The user belongs to multiple companies. Phase 1's B) branch
switches the working company via narrative_context_set_company
before any dataset lookup happens. All subsequent calls inherit the
new company context.
/generate-rosetta-stone-mappings.graph_edge.target_id_type.
Phase 3's /profile-dataset --allow-recalc call recovers it
(configure → recalculate → re-read) before returning the id-types;
don't proceed without ground truth. If /profile-dataset is absent,
run the recovery inline per
references/HARNESS_FALLBACK.md.failed. Surface the failing step's
error verbatim and STOP. The mechanics (jobs_search → jobs_describe)
are in the monitor-workflow-run snippet inlined at Phase 7.ENRICHMENT_JOIN_PATH starts with e.. Template prepends the
alias; a leading e. produces e.e._rosetta_stone... and the join
fails silently. Validate before binding.EXPIRE = 'P1D' and the
_nio_interactive tag — they auto-expire in 24h and are filtered
out of the customer's main dataset list. No manual cleanup needed.
See Phase 8.ADDRESS_HASHES 500 at scale (SC-61797). ADDRESS_HASHES
is a remote external function that HTTP-500s when run over a large
supplier slice, and the platform swallows the error (the run just
shows failed). Two ways to trip it: exploding the raw supplier
name|address slice without blocking, or selecting the supplier
AR's computed soundex_first_name /
libpostal_normalized_address_array attributes — those are not
stored; the AR mapping re-derives ADDRESS_HASHES(...) per row over
the entire underlying table before any predicate can prune it, so
the failure fires in standalone-attribute shape too. Supplier side
is always raw slice (2a) → block to the customer's distinct
(SOUNDEX(given_name), postal_code) pairs → ADDRESS_HASHES on
survivors only (2b). Mandatory at any non-trivial partner size, not
a tuning knob. Only the bounded customer side may read the computed
attribute directly._nio_view. Step 5 must not read a view
dataset directly inside an aggregate CTE — it 500s at run time.
Derive the customer file-total from the step-1 MV instead (it is
materialized and carries every row the run matched on).UNNEST rejects VARIANT. In graph-edge-json handling,
TRY_PARSE_JSON(target_id)['libpostal_normalized_address_array'] is a
VARIANT — CAST(... AS ARRAY<STRING>) before UNNEST or you get
HTTP 422.ID composite joins its components
with ::, never | — libpostal hashes contain |. A | delimiter
silently under-matches./profile-dataset. Run Phase 3's id-type histogram recovery
inline (configure → recalculate → re-read). See
references/HARNESS_FALLBACK.md.narrative_nql_validate. Skip Phase 6 pre-flight; do not
substitute narrative_nql_run. See
references/HARNESS_FALLBACK.md.AskUserQuestion. If the harness does not expose AskUserQuestion as a named tool
(Claude Code does; most others don't), ask the user the same question
in plain prose — one question per turn, never batched — and wait
for a reply before continuing. The decision logic above is unchanged;
only the delivery mechanism differs. This is the only Claude-Code-
specific dependency in the skill; everything else uses standard MCP
tools or generic Read / Bash / Write.
Multi-select prompts (id-type subsetting, enrichment attribute
groups) keep their pre-ticked defaults — ask the user for the
numbers to uncheck to keep prose short. Mandatory steps
(pre-flight validation, schema-fidelity rule) do not change.assets/workflow.yaml.tmpl — the
external workflow contract this skill submits.references/IDENTIFIER_ATTRIBUTES.md
— the IDENTIFIER_ATTRIBUTE_IDS lookup table used to partition AR
mappings into identifiers vs enrichment.references/IDENTITY_ONLY_VARIANT.md
— exact diff to apply when running identity-only (no enrichment AR).references/CUSTOM_MATCH_KEY_VARIANT.md
— compound-key + array-component rules (type-based array detection,
:: delimiter), step-1/2 explode bodies (both --array-field-handling
modes), the ADDRESS_HASHES soundex+zip blocking (SC-61797), and KPI
reinterpretation for custom-key channels.references/HARNESS_FALLBACK.md
— prose-mode fallbacks for narrative_nql_validate and
AskUserQuestion (both Claude-Code-specific)./create-workflow (for more information on
creating workflows in general), /generate-identity-graph (build
the graph), /generate-rosetta-stone-mappings (author a Rosetta
Stone mapping), /profile-dataset (Phase 3 delegates the id-type
histogram read here).assets/workflow.yaml.tmpl| Macro | Example | Notes |
|---|---|---|
<RUN_SLUG_KEBAB> | verisk-match-report-20260520-100831 | Document name |
<RUN_SLUG_LOWER> | verisk_match_report_20260520_100831 | Table refs in FROM company_data.<...> |
<RUN_SLUG_UPPER> | VERISK_MATCH_REPORT_20260520_100831 | Final MV table name (must be globally unique → keeps the timestamp) |
<REPORT_DISPLAY_NAME> | Verisk Match Report — Hartford Funds Customers | Human-readable UI label on the final dataset. Short; no timestamp (it's in metadata). |
<REPORT_DESCRIPTION> | Compares Hartford_Funds_Customers against Verisk. Identity match on normalized_email, e164_phone_number; 25 enrichment attributes attached. | One line. Don't restate timestamps or list every attribute — those are already structural. |
<CUSTOMER_DATASET_NAME> | Hartford_Funds_Customers | Bare table name; used as FROM company_data.<name> |
<SUPPLIER_AR_TABLE> | verisk.verisk_identity_basis_share | Qualified slug.name |
<ENRICHMENT_AR_TABLE> | verisk.verisk_tcibe_0016718_basis_share | Qualified slug.name |
<ENRICHMENT_JOIN_PATH> | _rosetta_stone.person_id['value'] | No e. prefix — template prepends it |
<SELECTED_ID_TYPES_QUOTED> | 'normalized_email', 'e164_phone_number' | Comma-separated quoted strings for the IN (...) clause |
<ATTRIBUTE_STRUCTS> | (multi-line block, see below) | Comma-separated NAMED_STRUCT(...) entries |
Custom-match-key macros (used by
references/CUSTOM_MATCH_KEY_VARIANT.md;
ignored when matching on identifiers only):
| Macro | Example | Notes |
|---|---|---|
<ARRAY_FIELD_HANDLING> | standalone-attribute | Which customer step-1 body to render: standalone-attribute (components as their own attrs, UNNEST native arrays) or graph-edge-json (TRY_PARSE_JSON(target_id) + CAST(... AS ARRAY<STRING>) + UNNEST). Bound in Phase 2.5 from --array-field-handling or auto-detect. Outputs are equivalent. Customer side only — supplier extraction is always raw-then-block (SC-61797). |
<MATCH_KEY_EXPR> | CONCAT(soundex_first_name, '::', addr_hash) | The compound ID expression. Delimiter is ::, never |. Both sides must use the identical expression. |
<MATCH_ID_TYPE> | soundex_first_name|libpostal_normalized_address_array | The fixed ID_TYPE label for a custom-key channel (a|b type-label convention — the | here is the type name, not the value delimiter). |
<PERSON_ID_PATH> | _rosetta_stone.graph_edge['source_id'] | Person anchor on each side, independent of the match key. On a raw name|address supplier slice it is the bare person_id column. |
Building <REPORT_DISPLAY_NAME>. Pattern:
<Supplier human name> Match Report — <Customer display name>. Keep
it under ~70 chars. Don't append the timestamp — created_at already
disambiguates reruns in the dataset list.
Building <REPORT_DESCRIPTION>. One line, two clauses:
Compares <CUSTOMER_DATASET_NAME> against <Supplier human name>.Identity match on <selected id types, comma-joined>; <N> enrichment attributes attached.
Identity-only: Identity-only match on <selected id types, comma-joined>.Do not enumerate every attribute name — they're already discoverable
in the BUCKETS column and in the step-4 MV's schema.
Building <ATTRIBUTE_STRUCTS>. For each selected attribute, emit
one line:
age):
NAMED_STRUCT('attribute', 'age', 'val', CAST(e._rosetta_stone.age AS STRING))
hl7_gender.gender):
NAMED_STRUCT('attribute', 'hl7_gender.gender', 'val', CAST(e._rosetta_stone.hl7_gender['gender'] AS STRING))
Join with ,\n (comma, newline, 14 spaces) to match the
indentation in the template's ARRAY(...) block.
To pick the identity AR (Phase 4) and the enrichment AR (Phase 5),
partition any access rule's mappings into identifiers, demographics,
and the graph_edge container.
for m in ar.mappings:
if m.attribute_name.startswith("_nio_"):
continue # internal — skip
elif m.attribute_id == 362:
graphEdge = m # structural
elif m.attribute_id in IDENTIFIER_ATTRIBUTE_IDS:
identifiers.append(m) # join-able (fast path)
else:
# Fallback: unknown id, describe + keyword-classify
attr = narrative_attributes_describe(attribute_ids=[m.attribute_id])
if matches_identifier_keywords(attr.name):
identifiers.append(m)
note_unknown(m, "identifier")
else:
demographics.append(m)
note_unknown(m, "enrichment")
The curated IDENTIFIER_ATTRIBUTE_IDS set, the keyword heuristic for
the fallback branch, and the user-facing note format all live in
references/IDENTIFIER_ATTRIBUTES.md.
Load it on demand — the curated set changes rarely; the fallback
keeps the skill correct for new identifier-typed attributes between
updates.
Alternatives
PramodDutta/qaskills
Gate RAG pipelines in CI with versioned golden eval sets, per-metric thresholds, baseline drift detection, and a build that fails when retrieval or answer quality regresses.
ruvnet/RuView
Comprehensive GitHub code review with AI-powered swarm coordination
narrative-io/narrative-skills-marketplace
Apply a set of Rosetta Stone attribute mappings to a Narrative dataset by wrapping them in a one-shot workflow that calls the `CreateRosettaStoneMappingsIfNotExist` task. Consumes the structured output of `/generate-rosetta-stone-mappings`, normalizes the generator's snake_case to the workflow task's camelCase, re-validates every expression against the dataset's current schema, gates on user approval, submits via `narrative_workflows_create`, polls the triggered run, and reports per-mapping crea
mgiovani/cc-arsenal
Create a new agent skill (or Claude Code slash command) from a plain-language description, using live spec fetching, pattern research, and an approval-gated blueprint before any files are written. Use whenever the user wants to build, scaffold, or author a new skill, subagent capability, or slash command, including phrasings like 'make a command for X', 'create a slash command', 'turn this into a reusable skill', or 'package this workflow as a skill'. Not for editing CLAUDE.md/AGENTS.md memory r