Skills
Chapter 13 of 20
Maps discovered source entities and fields to Wix targets and documents lossiness.
13 minutes · 2,796 words · 18 sections
Create a mapping plan from the discovered source schema into Wix entities and Wix data structures.
This skill translates source entities and fields into Wix targets. It should define what each source record becomes in Wix, how fields transform, and where custom schemas or extended fields are required.
Scripts
Resolve MappingAlso bundled
Mapping Resolvemigrations/<project>/source-schema.jsonmigrations/<project>/source-profile.md when availablemigrations/<project>/orchestration/checkpoints.jsonmigrations/<project>/orchestration/decisions.jsonRead only these canonical artifacts by default. Do not ingest the raw discovery dump
(migrations/<project>/data/...) wholesale — it is platform-specific and large. Instead, when an
entity’s mapping is ambiguous, follow that entity’s rawFile pointer in source-schema.json to open
just that one raw file for verification. Skip entities whose inUse is false (advertised by the
source but holding no records).
A source adapter may pre-fill part of the mapping when it recognizes the source format. Two
sourceMeta keys carry that, and both are optional — a schema without them maps exactly as
before:
sourceMeta.mappingHints[] ({ column, wixTarget, matchedAlias }) — an advisory
pre-fill, e.g. from a recognized vendor’s CSV profile. Seed the corresponding
fieldMappings[] entries from it so the user reviews and corrects instead of authoring from
scratch, and record decisionProvenance: source_platform_rule. It is never authoritative:
the source’s own field list still governs, and every hint still passes through the mapping
review checkpoint.sourceMeta.drift.unmappedColumns[] — real source columns the adapter’s profile did not
recognize. Each one must be explicitly mapped or explicitly recorded as skipped; leaving
them unaddressed is how a stale profile turns into silently dropped data.In addition to the project artifacts above, consult the relevant bundled adapter resource when the mapping depends on platform behavior that should not be guessed:
replatform/resources/rp-source-<platform>/SKILL.mdreplatform/resources/rp-target-wix/SKILL.mdreplatform/resources/rp-target-wix/scripts/domain-knowledge.jsTreat those adapter resources as the authoritative home for platform knowledge. Do not copy source/Wix behavioral rules into the mapping plan as if they originated there; cite and apply them there.
Do not author field mappings by hand when a vendor overlay already knows them. Run the deterministic resolver first and let it do the mechanical join; your judgement is needed only for what it cannot decide.
node scripts/resolve-mapping.js --fileset <migrations-root>/<project>/data/csv-discovery/fileset.json \
--out <migrations-root>/<project>/mappingIt joins three inputs that are all already data — the header set discovery actually observed, the
vendor overlay’s columnMap, and rp-target-wix‘s lib/wix-target-spec.js — and writes
mapping/mapping-resolution.json plus mapping/mapping-residue.json. Exit code 2 means blocked:
a required Wix input is unfilled, or an overlay names a canonical field that does not exist.
What it decides, so you don’t:
residue.unmappedColumnsresidue.unsupportedTargetsresidue.unfilledRequired (a blocker)overlayDrift (the profile is stale)derivedEntities, including
requiresFaithfulnessLedgerEntry when the source taxonomy is hierarchicalYour job is residue, and only residue. Each entry needs an explicit decision — map it to a
canonical field, or record it as intentionally skipped with a reason. Leaving an entry undecided is
how a stale overlay turns into silently dropped data.
Two rules keep this honest:
rp-source-csv/vendors/<vendor>.json plus a header fixture in tests/fixtures/csv/headers/. That
is a data edit with no skill-logic change, and it means the next run resolves it deterministically
instead of asking a model again. A mapping decision made twice is a missing overlay entry.rp-target-wix/lib/wix-build.js turns a canonical record into a Wix Stores V3 create body
deterministically, and lib/wix-target-spec.js declares every field, constant and trap it relies
on. This layer is vendor-independent — Shopify, WooCommerce, Magento and BigCommerce all
converge on it — so codegen must vendor and call it, exactly as the reader vendors csv-parse.js.
Do not emit a per-project to-wix.js re-deriving money objects, slug sanitization, choice-by-name
variant references, or the empty physicalProperties trap. Those are settled, tested, and
regression-locked against 220 payloads from two live-verified imports
(tests/mapping/wix-build-oracle-test.js).
The spec also settles the one price decision that recurs on every vendor: see
STORES_V3_TARGET.priceResolution. A (regular, sale) pair is resolved into Wix’s
actualPrice/compareAtPrice, not mapped field-for-field — getting it backwards silently
overcharges every discounted product.
sourceMeta.candidateTargetRefs[] when discovery supplied it;
otherwise run domain-knowledge.js resolve-source; use semantic reasoning only when no
candidate exists and record unverified confidence.unsupportedTargets
already names them with reasons; carry those into the faithfulness ledger rather than restating.migrations/<project>/mapping/run.jsonmigrations/<project>/mapping/mapping-plan.jsonmigrations/<project>/mapping/entity-decisions/<entity>.jsonmigrations/<project>/mapping/llm-handoff.jsonmigrations/<project>/mapping/review/mapping-gaps.jsonmigrations/<project>/mapping/review/mapping-plan.mdmigrations/<project>/mapping/review/mapping-summary.mdmigrations/<project>/orchestration/checkpoints.jsonmigrations/<project>/orchestration/approvals.jsonInclude for each source entity:
comment, item, entry, record, media, user, etc.). State what the entity
actually contains here, based on the discovered data, not just the route name.targetRef, targetDomain, targetEntity, targetClassification,
importReliability, preferredWrite, and knowledgeEvidence when the decision uses a
bundled domain entity recordsafeModeReplacements[] when safe mode is enabled, listing every mapped email or phone
field that enters an outbound Wix payload. Write the same array in both
mapping/mapping-plan.json for the entity decision and
mapping/entity-decisions/<entity>.json.safeModeReplacements[], so email/phone replacement coverage is visible without opening
the JSON artifactsWhen a source entity is generic or overloaded, the mapping plan must name the concrete subtypes or usage contexts it observed. Examples:
comment: blog post comments, product reviews, page commentsitem: order line items, catalog items, CMS rowsmedia: blog hero images, product gallery assets, downloadable filesDo not leave a generic entity label unexplained if the discovered data shows multiple real-world meanings.
Safe mode is enabled by default through config/wix.env unless the user explicitly sets
SAFE_MODE=false before mapping. When enabled, mapping artifacts must emit semantic
contact-channel metadata so generated imports can replace outbound email and phone values
through deterministic shared writer code.
For every mapped entity, mark fields for safe-mode replacement when source evidence, target-Wix domain knowledge, target field semantics, user-directed mappings, CMS/custom fields, extended fields, form submissions, metadata, or plugin fields indicate an email or phone contact channel.
Each safeModeReplacements[] entry must include:
{
"kind": "email",
"sourcePath": "billing.email",
"targetPath": "billingInfo.email",
"required": true,
"reason": "source and target are email fields"
}targetPath is relative to the Wix-shaped object or request body defined by the mapping
decision. Use the shared safe-mode path grammar: object fields (billingInfo.email,
contact.email.email) and array wildcards (lineItems[].buyerInfo.email,
contact.additionalEmails[].email). When the same source value is copied to multiple
Wix fields, list each target path.
Load target-side hints from selected rp-target-wix entity records’
safeModeContactFields[] and merge them with source-side evidence and user mapping
decisions. If SAFE_MODE=false before mapping, do not require this metadata for execution.
This metadata must be surfaced in both machine and human mapping artifacts:
safeModeReplacements[] into mapping/mapping-plan.jsonsafeModeReplacements[] into mapping/entity-decisions/<entity>.jsonmapping/review/mapping-plan.mdSafe mode replacements section in
mapping/review/mapping-summary.md listing the affected entities and the mapped
email/phone pathsDo not leave safe-mode contact replacement coverage implicit in field tables or only in JSON. A reviewer should be able to confirm from the review markdown which outbound email/phone fields will be replaced in safe mode.
Be explicit about the difference between a source ID and a Wix target ID.
crosswalkAuthority: "local", a per-entity crosswalkStrategy, and a
reconciliationStrategy used for dedupe, resume, and relationship resolution.ImportCrosswalk is optional. Use cmsMirror: "none" | "download" | "upload" | "download-and-upload" to request it explicitly. It is a copy/seed adapter for
existing-site or handoff reference flows, not the required resume authority.For every in-scope source entity that appears on the public website, include an explicit
urlPolicy in mapping/mapping-plan.json and the relevant
mapping/entity-decisions/<entity>.json artifact.
Minimum urlPolicy fields:
public: true for public routed entities; false for entities intentionally outside
URL preservation.sourceBasePath: the observed source base path, such as /shop/products; use null
only when the source URL cannot be derived and record that risk.sourceSlugField: source field holding the slug, when present.sourceUrlField: source field holding the full/permalink URL, when present.targetBasePath: known Wix destination base path, or null when website-builder route
selection is deferred.targetSlugField: planned target slug field, when applicable.preserveBasePath: whether the future website-builder phase should try to preserve the
source base path.preserveSlug: whether generated code should preserve the source slug unless target
validation or collision handling forces a change.redirectMode: record-if-different, manual-review, or none.If the same source entity type has multiple public route shapes, record each observed route class separately instead of guessing one base path. Slugs are identity and SEO data, but slug preservation alone is not URL preservation; route/base-path intent must be captured as data for the future website-builder phase.
Mapping review artifacts must include a short URL preservation section listing:
Confirm exact Wix entity/collection/field names before mapping a source field onto them — never invent a Wix API or field name.
When the mapping depends on Wix runtime behavior rather than just field names, verify and
follow the relevant rp-target-wix contract as well. Examples include create ordering,
native tag handling, category assignment requirements, member prerequisites, and whether a
product/media field should be sent as an external URL for Wix-side ingestion.
For entity suitability, do not grep or paste whole domain files into the plan. Use:
node skills/replatform/resources/rp-target-wix/scripts/domain-knowledge.js summarize-entities --refs <domain/entity,...>Load full entity records only for selected candidates that materially affect the current project.
Field.type you assign must be a real
member of the Create Data Collection Type enum. (Common trap: there is no SLUG
type — a slug maps to a TEXT field. Never assign a guessed enum value and flag it
unverified; resolve it or omit it.)rp-target-wix‘s verified contracts plus
published Wix REST/SDK documentation and conservative, known-good names. Mark anything
you could not verify directly as unverified in the mapping plan so it is surfaced
before execution.Resolve ambiguous mappings using the documented default, record the decision and rationale
under the machine mapping artifacts and render them into mapping/review/mapping-plan.md,
and keep going. Known fidelity forks
(e.g. comments anonymize vs. skip) should already be answered by the submission intake;
apply those answers rather than re-asking. If a required input is truly missing, surface it
as a blocker rather than silently guessing.
If the source entity name is generic but the observed data disambiguates it, record that disambiguation explicitly in the machine mapping artifacts and review plan. Do not force later stages to infer what “comments”, “items”, or similarly broad labels meant in this specific migration.
The mapping stage is where lossiness and coverage gaps are discovered, so it is where
they must be recorded — not at execute time, which is too late to do anything but
report. Maintain a faithfulness ledger in mapping/review/mapping-gaps.json and render it
into mapping/review/mapping-plan.md, listing everything that
will not migrate cleanly, including:
unverified native REST path and notify the RePlatform team about
the missing writer. Use CMS only when no suitable native Wix entity exists, or when the
native entity is rejected for fidelity/side-effect reasons.Mandatory trigger — hierarchical source taxonomy → flat Wix target. When a source
entity carries "hierarchical": true (or any parent self-relation) in
source-schema.json and maps to a flat Wix target such as Blog categories, you must
write a faithfulness-ledger entry recording that the parent/child hierarchy is dropped on
import (the Wix Blog category target is flat — it has no parent/child relationship). This
is not optional discipline: the flag exists precisely so
the warning is data-driven. Do not map such a taxonomy without the ledger entry. (If
hierarchy must be preserved, the alternative is a CMS-collection taxonomy with a parent
reference field — note that trade-off in the ledger instead.)
This ledger is the source the execution-plan report draws from to surface “what we won’t
do” to the user before consent (rp-execute-import). If it isn’t recorded here, the
user can’t be warned there.
Every selected entity whose domain knowledge includes IMPORT_UNRELIABLE must create a
mapping/review/mapping-gaps.json entry with the same fixed flag string, the selected
targetRef, a project-specific summary, and the chosen fallback or review action.
Default to importing only media referenced by in-scope entities such as posts, products, collections, categories, or CMS rows that are actually being migrated. Unattached source-library media is out of scope by default unless the user explicitly asks for a library/archive migration.
When an entity carries media, consult rp-target-wix for the target behavior:
After mapping/mapping-plan.json is written, create
migrations/<project>/mapping/review/mapping-summary.md as a
short review artifact for the user. Its purpose is to make the mapping decision easy to
review without forcing the user through the full plan.
The summary should:
mapping/review/mapping-plan.mdunverified
target paths from the faithfulness ledgerKeep it concise. The user should be able to decide “yes, this is the right migration
shape” from this file alone, then consult mapping/review/mapping-plan.md only when they want detail.
Recommended structure:
mapping/review/mapping-plan.mdSource -> Wix targetsURL preservationMain gaps / lossinessImportant setup implicationsSafe mode replacements when applicableQuestions or risks to confirmDo not restate full field tables or detailed transformation rules here unless a specific field-level issue is central to the approval decision.
Once both mapping artifacts exist, reset orchestration/approvals.json so
mapping.status=pending, then stop and ask the user to review
migrations/<project>/mapping/review/mapping-summary.md. The checkpoint should make clear:
mapping/review/mapping-plan.mdDo not proceed to rp-setup-discovery or rp-import-codegen until the user accepts this
mapping review checkpoint, unless the user explicitly asks to continue provisionally.
rp-import-codegen can implement them deterministically.unverified and surface the risk before execution.Install this repository
npx skills add wix/skills/plugin marketplace add wix/skillsSkills install per repository, not per chapter — the CLI has no documented per-skill form, so we do not print one.
Maps discovered source entities and fields to Wix targets and documents lossiness. Use when creating machine-readable mapping artifacts and review markdown after discovery.
The verbatim description from this skill’s front matter — the string an agent matches on to decide whether to load it.
main, last pushed 10 August 2026.SKILL.md, not by matching a directory convention. 4 distinct layouts observed: .claude/skills/*/SKILL.md, skills/*/SKILL.md, skills/wix-headless/*/skill.md, skills/wix-replatform/resources/*/SKILL.md.h1 and no skipped levels:.claude-plugin/marketplace.json by Wix, declaring 1 plugin. It is read for editorial metadata only — never as the skill index, which is always the repository tree./wix/skills.md, and each chapter at its own .md URL.3 files · 42 KB
Everything this skill ships beside its prose. All of it is set here, as subchapters of chapter 13.
Executable code the skill can run.
Everything else published alongside the skill.