Clean and dedupe end to end
You have a raw file. You want to scan it, standardize it, and dedupe it in one declarative run. Stages run in order; eachuse names a registered stage (see the Stages table).
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Copy-paste GoldenPipe configs that wire the suite together: full clean-and-dedupe, profile-and-report, and dedupe-then-resolve-identities.
goldenpipe run recipe.yaml
use names a registered stage (see the Stages table).
pipeline: clean_and_dedupe
source: raw.csv
stages:
- name: scan
use: goldencheck.scan
- name: standardize
use: goldenflow.transform
- name: dedupe
use: goldenmatch.dedupe
pipeline: profile_and_report
source: data.csv
stages:
- name: infer
use: infer_schema
- name: scan
use: goldencheck.scan
- name: report
use: goldenanalysis.report
pipeline: dedupe_and_resolve
source: contacts.csv
stages:
- name: standardize
use: goldenflow.transform
- name: dedupe
use: goldenmatch.dedupe
- name: identities
use: goldenmatch.identity_resolve