response-to-domain-flow
Installation
SKILL.md
Where each stage of the pipeline lives
Five stages, each in exactly one module:
| Stage | Lives in | Visibility |
|---|---|---|
| Transport model — the response as sent | the integration's own service module | public to the data module |
| Parser — response object → domain model | the data module, parser/ package |
internal |
| Domain model, repository interface, envelope | the domain module | public |
| Repository implementation — calls, wraps, maps | the data module | internal |
| Collection — envelope → screen state | the presentation module | — |
The repository method is where four of the five meet, and it stays this short because the parsing is somewhere else: