rp-discovery
Discover and document the source-platform schema for the active migration project.
Purpose
Use this skill to inspect the source system, identify entities, relationships, fields, identifiers, media, rich content, and platform-specific constraints. Examples include Shopify, WordPress, WooCommerce, and custom CMS platforms.
This skill owns the platform-agnostic discovery process and its output contract
(source-profile.md + source-schema.json). Platform-specific details — how to capture a
given source, its auth model, REST quirks — live in a dedicated source adapter skill,
not here. For WordPress / WooCommerce, that adapter is rp-source-wordpress. To support a
new platform, add a sibling adapter (e.g. rp-source-shopify) and leave this skill
unchanged.
Inputs
Expected inputs may include:
migrations/<project>/orchestration/run.json
migrations/<project>/orchestration/decisions.json
- source site/app URL
- source platform name when it cannot be inferred
- source acquisition mode when the platform offers multiple read paths
- source API docs
- credentials, tokens, or local dump files when available
- export files when the run is file-based rather than URL-based
- current project under
migrations/<project>/
- project-local config under
migrations/<project>/config/
Config gate before capture
Before running source capture, verify the project-local config files created by
wix-replatform:
config/wix.env should always exist with WIX_SITE_STRATEGY, WIX_SITE_ID, and
WIX_AUTH_TOKEN keys, even though discovery itself may not use Wix credentials yet.
config/source.<platform>.env should exist once the source platform is known. For
WordPress this is config/source.wordpress.env.
If a required non-sensitive key is missing or blank, ask the user for that value and fill
the config file before continuing. If a required sensitive key is missing or blank, use
the secure Secrets Manager flow: check for an existing non-placeholder local env value,
then an existing non-placeholder Wix secret under the resolved site, and ask the user to
update the dashboard secret only for keys missing from both places. Never ask the user to
paste sensitive values into chat. Never print secret values back to the user; report only
present/missing.
Use skills/wix-replatform/scripts/source-secrets.js resolve for sensitive source keys.
Its output is limited to key names and statuses.
Treat migrations/<project>/config/*.env as secret-bearing once they may contain real
values. Do not inspect them with whole-file reads that echo contents into tool output.
Use secret-safe checks only: existence, required key names, and present / blank /
missing status.
Site creation precedence
If this skill encounters conflicting Wix guidance about how to create a new site +
headless destination, wix-replatform's migration contract wins.
- Route headless destination creation back to
resources/rp-destination/, which scaffolds
via npm create @wix/new@latest headless. This is the verified way to get a genuine
headless site; the account-level Projects API is deprecated for this workflow (it
produced non-headless sites).
- Discovery is source-side and does not create the site itself — just defer to that section.
Workflow
Confirm the active project under migrations/<project>/.
Start from the source URL when available and try to identify the source platform
yourself before asking the user. Use lightweight signals such as a REST index,
headers, HTML/application markers, or platform-specific route patterns. Only ask the
user to name the platform if detection remains inconclusive.
Once the platform is inferred, resolve the acquisition mode before requesting source
credentials when the platform has materially different read paths.
- For Shopify URL-based migrations, ask whether to use the
Admin API or only
publicly available storefront data.
- For WordPress / WooCommerce URL-based migrations, ask whether to import
public content only or also include private/authenticated data.
- Only the WordPress / WooCommerce
also include private/authenticated data branch
should trigger the secure Secrets Manager collection flow for sensitive credentials.
The public content only branch proceeds without credentials and should be described
as limited to public data. For WooCommerce,
this branch should still probe public Store API catalog routes such as
/wc/store/v1/products and /wc/store/v1/products/categories before declaring
commerce out of scope.
Treat file/export ingestion as a separate flow that starts from user-provided files
instead of a site URL probe; do not offer exports as a third option in the URL-based
acquisition-mode question.
Then select the matching source adapter skill (e.g. rp-source-wordpress for
WordPress / WooCommerce, rp-source-csv when the run is file-based). If no adapter
exists for the platform, capture entities manually following the same output contract.
- File-based runs (
sourceMode=files_only, sourcePlatform=csv) use
rp-source-csv regardless of which system produced the files; that adapter identifies
the originating vendor from the header row. There is no acquisition-mode question and
no credentials request for this path.
Run the adapter's capture step to produce a raw, machine-captured dump under
<migrations-root>/<project>/data/<source>-discovery/. For WordPress, the capture
script lives in rp-source-wordpress/scripts/ — run it from that skill directory
(see rp-source-wordpress Capture section and CONVENTIONS.md). When using
project-local secret-bearing config, prefer the script's deterministic --env-file
path over shell sourcing. The adapter owns the capture mechanics, auth model, and
platform quirks; this skill consumes its output.
For long runs, pass --progress-log <path> and poll it per
CONVENTIONS.md#progress-log-polling.
- Distinguish supported entities (advertised by the source) from used entities
(those with
recordCount > 0). Entities advertised but empty should be flagged, not
mapped as if they hold data.
- A capture made without credentials is usually incomplete (gated entities, private
fields, PII return 401/403). Do not treat an unauthenticated capture as
authoritative — the adapter documents what auth a complete run requires.
- For WordPress / WooCommerce captures, read
data/wp-discovery/skipped-routes.json
when present. Treat it as the canonical route-scope audit trail: skipped routes are
evidence, not source entities, unless they were explicitly force-included by an
audited override.
- For WordPress / WooCommerce captures, also read
data/wp-discovery/plugin-coverage.json and data/wp-discovery/plugin-inventory.json.
These are the plugin-tier evidence: which plugins were detected, which are installed but
unrecognized, which entities were derived generically, and what each capability's
coverage status is. Do not re-derive plugin knowledge by reasoning about route names.
- For CSV captures, the capture script lives in
rp-source-csv/scripts/csv-discovery.js
and takes the whole file set in one run (--file is repeatable) so roles and split
files resolve together. Read data/csv-discovery/fileset.json — it is the canonical
machine capture, and source-schema.json is synthesized from it:
- carry
sourceFiles[] (with role, vendor, partOf), vendor, dialect, drift,
mappingHints, and csvInputRoot into sourceMeta, keeping file paths relative
to csvInputRoot so the project stays movable;
- give every entity an
origin (file-rows | row-group | column-values) with the
parameters that origin needs, and set hierarchical: true on nested derived entities
so the mapper's faithfulness-ledger rule fires;
- surface
drift.unmappedColumns as unknowns so the mapper handles them explicitly;
- honor
halt: true. An ambiguous layout, an unknown file role, conflicting
split-file headers, or a near-miss vendor detection is a question for the user, not
something to resolve by picking the highest-scoring candidate. The warning text names
the decision to put to them.
Capture field-level schema details, including type, cardinality, requiredness, and example values.
When bundled Wix domain knowledge recognizes a source route or source entity, annotate
the discovered entity with sourceMeta.candidateTargetRefs[] such as
["stores/product"]. Discovery must still record source facts only; these refs are
mapper hints, not target decisions.
Note operational constraints such as pagination, rate limits, auth model, and incremental sync options.
If the source base URL or discovered media/file URLs use localhost, 127.0.0.1, or
another private-only host, record a media reachability note in source-profile.md.
Localhost is fine for discovery and local source reads, but Wix Media import is
URL-based and Wix servers cannot fetch the user's localhost. This is an optional
preparation step and, as far as we know today, only affects media import. State the two
acceptable choices:
- expose the source with a public HTTPS tunnel such as ngrok before live media import
- skip/defer media import while continuing non-media entities
Include concise ngrok setup instructions when relevant:
brew install ngrok
ngrok config add-authtoken "<YOUR_AUTHTOKEN>"
ngrok http 8090
export WP_BASE_URL=https://<id>.ngrok-free.app
Synthesize the raw capture into the normalized artifacts below.
Artifacts to create or update
migrations/<project>/discovery/run.json
migrations/<project>/discovery/entities/
migrations/<project>/discovery/warnings.json
migrations/<project>/discovery/llm-handoff.json
migrations/<project>/discovery/plugin-coverage.json
migrations/<project>/discovery/review/plugin-coverage.md
migrations/<project>/orchestration/checkpoints.json
migrations/<project>/data/<source>-discovery/: raw machine-captured output from the source adapter. Treated as evidence, not a hand-off artifact — downstream skills reference it for traceability but do not read it wholesale.
migrations/<project>/source-profile.md: source platform, access method, limits, auth, and operational notes. Synthesized from the raw capture. Capture the operational facts the adapter documents (auth model, pagination, rate limits) so rp-import-codegen has them without re-deriving.
migrations/<project>/source-schema.json: machine-readable schema for entities and fields. Synthesized from the raw capture — this and source-profile.md are the canonical hand-off to rp-mapper. Include traceability pointers so the mapper can drill into a specific entity's raw file when needed:
- top-level
rawDiscovery: relative path to the raw capture dir, e.g. data/wp-discovery/.
- per-entity
rawFile: file name within that dir, e.g. wp-v2--posts.md.
- per-entity
recordCount and inUse so consumers can distinguish supported vs. actually-used entities.
- per-entity
relations derived from the source-declared relationships in the raw capture, so relationships are evidence-backed rather than guessed. Each relation should carry an evidence pointer back to the source signal it came from.
- For WordPress / WooCommerce, synthesize entities only from sampled
backend_data and
accepted backend_metadata route artifacts. Do not synthesize entities from routes
listed in skipped-routes.json unless the skipped-route record has
includedByOverride: true; in that case, include originalDiscoveryCategory,
includedByOverride: true, and overrideReason when present in the entity
sourceMeta.
- Follow the adapter's
source-schema.example.json for the shape (e.g. rp-source-wordpress/source-schema.example.json). It is a template to follow, not a strict schema to validate against — keep the platform-agnostic core stable and push platform quirks into each entity's open sourceMeta blob.
Optional supporting notes under migrations/<project>/research/ if needed.
Plugin coverage (source adapters that support it)
When the source adapter produces plugin evidence — WordPress / WooCommerce does — promote it
into the canonical artifacts rather than leaving it in the raw capture:
- Copy the adapter's coverage rows into
migrations/<project>/discovery/plugin-coverage.json (one artifact: capability rows plus
the per-plugin projection), and render a short user-facing
discovery/review/plugin-coverage.md grouped by the four statuses — Migration planned ·
No need to migrate · Pending · Requires development. The statuses are already
customer-readable; phrase the rest in user terms ("your events will come across as a CMS
collection"), never internal jargon.
- Emit plugin-derived entities into
source-schema.json like any other entity, with
sourceMeta.plugin, sourceMeta.capability, sourceMeta.channel,
sourceMeta.recognized (a profile matched) and sourceMeta.candidateTargetRefs[].
- Derived (unrecognized) entities carry
sourceMeta.origin: "generic-post-type" | "generic-taxonomy"
and, when the source taxonomy is nested, "hierarchical": true so the mapper's mandatory
hierarchy-lossiness rule fires.
- Entities read from a property embedded in a parent record carry
sourceMeta.origin: "embedded" plus the parent route, so codegen extracts them from the
parent fetch instead of issuing a second request.
- Record in
source-profile.md: whether the plugin list was available, how many plugins were
detected/unrecognized, and the counts by status. Downstream stages must not have to
parse the raw capture to learn whether plugin coverage was complete.
Classifying an unrecognized plugin is a judgement, not a lookup.
For every installed plugin with no profile, you — not the [js] layer — answer the only
question that matters: is there anything here to migrate at all? The no-migration-needed
list (plugins/no-migration-needed.json) is an input to that answer: a slug hit is strong
evidence and not by itself the answer, because the list says nothing about what this
particular installation is holding. Add your own reading of the registered types, taxonomies
and data-shaped routes, and record the reasoning either way. Three exits, and only three:
- Nothing to move → No need to migrate, with
basis: list (a list entry you confirmed)
or basis: proposed (your own reading) and the rationale filled in — a list hit with no
recorded confirmation is a failure.
- It holds data → propose a Wix capability; the row is Migration planned
as
proposed, decided at the mapping review.
- Cannot tell → leave the row Pending with
reason: cannot-tell. An honest "cannot
tell" is the point of Pending — it is what stops this step from becoming a silent way to
drop data. Never resolve it yourself; the mapping review is the only exit.
You may never conclude that Wix cannot do something — Requires development is reachable
only from the human-signed register or from the human at the gate.
A recognized (profiled) plugin is not yours to re-decide: its rows come from the profile
and the registers. That includes a No need to migrate row with basis: decision — a
human-signed per-capability entry in no-migration-needed.json (capabilities[]), settled
and carrying its decidedBy / decidedOn. Report it; do not re-open it as Pending.
- Collect every
blocked[] entry across rows (a missing credential, a file only the user
has, a changed surface — Blocked — recoverable, never a status) and ask the user
once, as a single batched request with each item individually skippable. Record each
answer in orchestration/decisions.json under pluginBlocker:<capability>:<kind> with
value provided or declined — the discovery script reads these back so a declined ask
renders as declined, not as unanswered. Never block the run on a skipped capability.
Output quality rules
- Separate confirmed facts from assumptions.
- Record per-entity volume (record counts) so downstream skills know what the site actually uses, not just what it supports.
- Preserve source-specific identifiers exactly.
- Include enough detail for downstream mapping and code generation.
- Flag unknowns explicitly instead of inventing structure.
1---2name: rp-discovery3description: Discovers and documents the source platform schema (entities, fields, relationships) for a migration project. Use when capturing source structure before mapping to Wix.4---56# rp-discovery78Discover and document the source-platform schema for the active migration project.910## Purpose1112Use this skill to inspect the source system, identify entities, relationships, fields, identifiers, media, rich content, and platform-specific constraints. Examples include Shopify, WordPress, WooCommerce, and custom CMS platforms.1314This skill owns the **platform-agnostic discovery process and its output contract**15(`source-profile.md` + `source-schema.json`). Platform-specific details — how to capture a16given source, its auth model, REST quirks — live in a dedicated **source adapter** skill,17not here. For WordPress / WooCommerce, that adapter is `rp-source-wordpress`. To support a18new platform, add a sibling adapter (e.g. `rp-source-shopify`) and leave this skill19unchanged.2021## Inputs2223Expected inputs may include:2425- `migrations/<project>/orchestration/run.json`26- `migrations/<project>/orchestration/decisions.json`27- source site/app URL28- source platform name when it cannot be inferred29- source acquisition mode when the platform offers multiple read paths30- source API docs31- credentials, tokens, or local dump files when available32- export files when the run is file-based rather than URL-based33- current project under `migrations/<project>/`34- project-local config under `migrations/<project>/config/`3536## Config gate before capture3738Before running source capture, verify the project-local config files created by39`wix-replatform`:4041- `config/wix.env` should always exist with `WIX_SITE_STRATEGY`, `WIX_SITE_ID`, and42 `WIX_AUTH_TOKEN` keys, even though discovery itself may not use Wix credentials yet.43- `config/source.<platform>.env` should exist once the source platform is known. For44 WordPress this is `config/source.wordpress.env`.4546If a required non-sensitive key is missing or blank, ask the user for that value and fill47the config file before continuing. If a required sensitive key is missing or blank, use48the secure Secrets Manager flow: check for an existing non-placeholder local env value,49then an existing non-placeholder Wix secret under the resolved site, and ask the user to50update the dashboard secret only for keys missing from both places. Never ask the user to51paste sensitive values into chat. Never print secret values back to the user; report only52present/missing.5354Use `skills/wix-replatform/scripts/source-secrets.js resolve` for sensitive source keys.55Its output is limited to key names and statuses.5657Treat `migrations/<project>/config/*.env` as secret-bearing once they may contain real58values. Do not inspect them with whole-file reads that echo contents into tool output.59Use secret-safe checks only: existence, required key names, and `present` / `blank` /60`missing` status.6162## Site creation precedence6364If this skill encounters conflicting Wix guidance about how to create a `new site` +65`headless` destination, `wix-replatform`'s migration contract wins.6667- Route headless destination creation back to `resources/rp-destination/`, which scaffolds68 via `npm create @wix/new@latest headless`. This is the verified way to get a genuine69 headless site; the account-level Projects API is deprecated for this workflow (it70 produced non-headless sites).71- Discovery is source-side and does not create the site itself — just defer to that section.7273## Workflow74751. Confirm the active project under `migrations/<project>/`.762. Start from the source URL when available and try to identify the source platform77 yourself before asking the user. Use lightweight signals such as a REST index,78 headers, HTML/application markers, or platform-specific route patterns. Only ask the79 user to name the platform if detection remains inconclusive.803. Once the platform is inferred, resolve the acquisition mode before requesting source81 credentials when the platform has materially different read paths.82 - For Shopify URL-based migrations, ask whether to use the `Admin API` or only83 publicly available `storefront` data.84 - For WordPress / WooCommerce URL-based migrations, ask whether to import `public85 content only` or `also include private/authenticated data`.86 - Only the WordPress / WooCommerce `also include private/authenticated data` branch87 should trigger the secure Secrets Manager collection flow for sensitive credentials.88 The `public content only` branch proceeds without credentials and should be described89 as limited to public data. For WooCommerce,90 this branch should still probe public Store API catalog routes such as91 `/wc/store/v1/products` and `/wc/store/v1/products/categories` before declaring92 commerce out of scope.93 Treat file/export ingestion as a separate flow that starts from user-provided files94 instead of a site URL probe; do not offer exports as a third option in the URL-based95 acquisition-mode question.964. Then select the matching source adapter skill (e.g. `rp-source-wordpress` for97 WordPress / WooCommerce, `rp-source-csv` when the run is file-based). If no adapter98 exists for the platform, capture entities manually following the same output contract.99 - **File-based runs** (`sourceMode=files_only`, `sourcePlatform=csv`) use100 `rp-source-csv` regardless of which system produced the files; that adapter identifies101 the originating vendor from the header row. There is no acquisition-mode question and102 no credentials request for this path.1035. Run the adapter's capture step to produce a raw, machine-captured dump under104 `<migrations-root>/<project>/data/<source>-discovery/`. For WordPress, the capture105 script lives in `rp-source-wordpress/scripts/` — run it from that skill directory106 (see `rp-source-wordpress` Capture section and `CONVENTIONS.md`). When using107 project-local secret-bearing config, prefer the script's deterministic `--env-file`108 path over shell sourcing. The adapter owns the capture mechanics, auth model, and109 platform quirks; this skill consumes its output.110 For long runs, pass `--progress-log <path>` and poll it per111 `CONVENTIONS.md#progress-log-polling`.112 - Distinguish **supported** entities (advertised by the source) from **used** entities113 (those with `recordCount > 0`). Entities advertised but empty should be flagged, not114 mapped as if they hold data.115 - A capture made without credentials is usually incomplete (gated entities, private116 fields, PII return 401/403). Do not treat an unauthenticated capture as117 authoritative — the adapter documents what auth a complete run requires.118 - For WordPress / WooCommerce captures, read `data/wp-discovery/skipped-routes.json`119 when present. Treat it as the canonical route-scope audit trail: skipped routes are120 evidence, not source entities, unless they were explicitly force-included by an121 audited override.122 - For WordPress / WooCommerce captures, also read123 `data/wp-discovery/plugin-coverage.json` and `data/wp-discovery/plugin-inventory.json`.124 These are the plugin-tier evidence: which plugins were detected, which are installed but125 unrecognized, which entities were derived generically, and what each capability's126 coverage status is. Do not re-derive plugin knowledge by reasoning about route names.127 - For CSV captures, the capture script lives in `rp-source-csv/scripts/csv-discovery.js`128 and takes the **whole file set in one run** (`--file` is repeatable) so roles and split129 files resolve together. Read `data/csv-discovery/fileset.json` — it is the canonical130 machine capture, and `source-schema.json` is synthesized from it:131 - carry `sourceFiles[]` (with `role`, `vendor`, `partOf`), `vendor`, `dialect`, `drift`,132 `mappingHints`, and `csvInputRoot` into `sourceMeta`, keeping file paths **relative**133 to `csvInputRoot` so the project stays movable;134 - give every entity an `origin` (`file-rows` | `row-group` | `column-values`) with the135 parameters that origin needs, and set `hierarchical: true` on nested derived entities136 so the mapper's faithfulness-ledger rule fires;137 - surface `drift.unmappedColumns` as `unknowns` so the mapper handles them explicitly;138 - **honor `halt: true`.** An ambiguous layout, an unknown file role, conflicting139 split-file headers, or a near-miss vendor detection is a question for the user, not140 something to resolve by picking the highest-scoring candidate. The warning text names141 the decision to put to them.1426. Capture field-level schema details, including type, cardinality, requiredness, and example values.1437. When bundled Wix domain knowledge recognizes a source route or source entity, annotate144 the discovered entity with `sourceMeta.candidateTargetRefs[]` such as145 `["stores/product"]`. Discovery must still record source facts only; these refs are146 mapper hints, not target decisions.1478. Note operational constraints such as pagination, rate limits, auth model, and incremental sync options.148 If the source base URL or discovered media/file URLs use `localhost`, `127.0.0.1`, or149 another private-only host, record a **media reachability note** in `source-profile.md`.150 Localhost is fine for discovery and local source reads, but Wix Media import is151 URL-based and Wix servers cannot fetch the user's localhost. This is an optional152 preparation step and, as far as we know today, only affects media import. State the two153 acceptable choices:154 - expose the source with a public HTTPS tunnel such as ngrok before live media import155 - skip/defer media import while continuing non-media entities156157 Include concise ngrok setup instructions when relevant:158159 ```bash160 brew install ngrok161 ngrok config add-authtoken "<YOUR_AUTHTOKEN>"162 ngrok http 8090163 export WP_BASE_URL=https://<id>.ngrok-free.app164 ```1659. Synthesize the raw capture into the normalized artifacts below.166167## Artifacts to create or update168169- `migrations/<project>/discovery/run.json`170- `migrations/<project>/discovery/entities/`171- `migrations/<project>/discovery/warnings.json`172- `migrations/<project>/discovery/llm-handoff.json`173- `migrations/<project>/discovery/plugin-coverage.json`174- `migrations/<project>/discovery/review/plugin-coverage.md`175- `migrations/<project>/orchestration/checkpoints.json`176177- `migrations/<project>/data/<source>-discovery/`: raw machine-captured output from the source adapter. Treated as evidence, not a hand-off artifact — downstream skills reference it for traceability but do not read it wholesale.178- `migrations/<project>/source-profile.md`: source platform, access method, limits, auth, and operational notes. Synthesized from the raw capture. Capture the operational facts the adapter documents (auth model, pagination, rate limits) so `rp-import-codegen` has them without re-deriving.179- `migrations/<project>/source-schema.json`: machine-readable schema for entities and fields. **Synthesized from the raw capture** — this and `source-profile.md` are the canonical hand-off to `rp-mapper`. Include traceability pointers so the mapper can drill into a specific entity's raw file when needed:180 - top-level `rawDiscovery`: relative path to the raw capture dir, e.g. `data/wp-discovery/`.181 - per-entity `rawFile`: file name within that dir, e.g. `wp-v2--posts.md`.182 - per-entity `recordCount` and `inUse` so consumers can distinguish supported vs. actually-used entities.183 - per-entity `relations` derived from the source-declared relationships in the raw capture, so relationships are evidence-backed rather than guessed. Each relation should carry an `evidence` pointer back to the source signal it came from.184 - For WordPress / WooCommerce, synthesize entities only from sampled `backend_data` and185 accepted `backend_metadata` route artifacts. Do not synthesize entities from routes186 listed in `skipped-routes.json` unless the skipped-route record has187 `includedByOverride: true`; in that case, include `originalDiscoveryCategory`,188 `includedByOverride: true`, and `overrideReason` when present in the entity189 `sourceMeta`.190 - Follow the adapter's `source-schema.example.json` for the shape (e.g. `rp-source-wordpress/source-schema.example.json`). It is a template to follow, not a strict schema to validate against — keep the platform-agnostic core stable and push platform quirks into each entity's open `sourceMeta` blob.191- Optional supporting notes under `migrations/<project>/research/` if needed.192193## Plugin coverage (source adapters that support it)194195When the source adapter produces plugin evidence — WordPress / WooCommerce does — promote it196into the canonical artifacts rather than leaving it in the raw capture:197198- Copy the adapter's coverage rows into199 `migrations/<project>/discovery/plugin-coverage.json` (one artifact: capability rows plus200 the per-plugin projection), and render a short user-facing201 `discovery/review/plugin-coverage.md` grouped by the four statuses — *Migration planned* ·202 *No need to migrate* · *Pending* · *Requires development*. The statuses are already203 customer-readable; phrase the rest in user terms ("your events will come across as a CMS204 collection"), never internal jargon.205- Emit plugin-derived entities into `source-schema.json` like any other entity, with206 `sourceMeta.plugin`, `sourceMeta.capability`, `sourceMeta.channel`,207 `sourceMeta.recognized` (a profile matched) and `sourceMeta.candidateTargetRefs[]`.208- Derived (unrecognized) entities carry209 `sourceMeta.origin: "generic-post-type" | "generic-taxonomy"`210 and, when the source taxonomy is nested, `"hierarchical": true` so the mapper's mandatory211 hierarchy-lossiness rule fires.212- Entities read from a property embedded in a parent record carry213 `sourceMeta.origin: "embedded"` plus the parent route, so codegen extracts them from the214 parent fetch instead of issuing a second request.215- Record in `source-profile.md`: whether the plugin list was available, how many plugins were216 detected/unrecognized, and the counts by status. Downstream stages must not have to217 parse the raw capture to learn whether plugin coverage was complete.218219**Classifying an unrecognized plugin is a judgement, not a lookup.**220For every installed plugin with no profile, you — not the `[js]` layer — answer the only221question that matters: *is there anything here to migrate at all?* The no-migration-needed222list (`plugins/no-migration-needed.json`) is an input to that answer: a slug hit is strong223evidence and not by itself the answer, because the list says nothing about what this224particular installation is holding. Add your own reading of the registered types, taxonomies225and data-shaped routes, and record the reasoning either way. Three exits, and only three:226227- **Nothing to move** → *No need to migrate*, with `basis: list` (a list entry you confirmed)228 or `basis: proposed` (your own reading) and the `rationale` filled in — a list hit with no229 recorded confirmation is a failure.230- **It holds data** → propose a Wix capability; the row is *Migration planned*231 as `proposed`, decided at the mapping review.232- **Cannot tell** → leave the row *Pending* with `reason: cannot-tell`. An honest "cannot233 tell" is the point of Pending — it is what stops this step from becoming a silent way to234 drop data. Never resolve it yourself; the mapping review is the only exit.235236You may never conclude that Wix cannot do something — *Requires development* is reachable237only from the human-signed register or from the human at the gate.238239A **recognized** (profiled) plugin is not yours to re-decide: its rows come from the profile240and the registers. That includes a *No need to migrate* row with `basis: decision` — a241human-signed per-capability entry in `no-migration-needed.json` (`capabilities[]`), settled242and carrying its `decidedBy` / `decidedOn`. Report it; do not re-open it as Pending.243244- Collect every `blocked[]` entry across rows (a missing credential, a file only the user245 has, a changed surface — *Blocked — recoverable*, never a status) and ask the user246 **once**, as a single batched request with each item individually skippable. Record each247 answer in `orchestration/decisions.json` under `pluginBlocker:<capability>:<kind>` with248 value `provided` or `declined` — the discovery script reads these back so a declined ask249 renders as declined, not as unanswered. Never block the run on a skipped capability.250251## Output quality rules252253- Separate confirmed facts from assumptions.254- Record per-entity volume (record counts) so downstream skills know what the site actually uses, not just what it supports.255- Preserve source-specific identifiers exactly.256- Include enough detail for downstream mapping and code generation.257- Flag unknowns explicitly instead of inventing structure.