{"id":"26d28809-e36e-443b-9fbd-a3bbfbb3e979","shortId":"HvNU5D","kind":"skill","title":"craft-content-modeling","tagline":"Craft CMS 5 content modeling — sections, entry types, fields, Matrix, relations, project config, and content architecture strategy. Covers everything editors and developers need to structure content in Craft: choosing section types, designing entry types and field layouts, select","description":"# Craft CMS 5 — Content Modeling\n\nHow to structure content in Craft CMS 5. Sections, entry types, fields, Matrix,\nrelations, asset management, and strategic patterns for real projects.\n\nThis skill covers **content architecture** — what goes in the CP, how it's\norganized, and how templates access it. For extending Craft with PHP\n(plugins, modules, custom element types), see the `craftcms` skill.\n\n## Companion Skills — Always Load Together\n\nWhen this skill triggers, also load:\n\n- **`craft-site`** — Template architecture, component patterns, routing. Required when content decisions affect how templates render data.\n- **`craft-twig-guidelines`** — Twig coding standards. Required when writing any Twig examples or template code alongside content modeling.\n- **`ddev`** — All commands run through DDEV. Required for running project config commands, Craft CLI, and content migrations.\n\n## Documentation\n\n- Entries: https://craftcms.com/docs/5.x/reference/element-types/entries.html\n- Sections: https://craftcms.com/docs/5.x/reference/element-types/entries.html#sections\n- Fields: https://craftcms.com/docs/5.x/system/fields.html\n- Field types: https://craftcms.com/docs/5.x/reference/field-types/\n- Matrix: https://craftcms.com/docs/5.x/reference/field-types/matrix.html\n- Relations: https://craftcms.com/docs/5.x/system/relations.html\n- Eager loading: https://craftcms.com/docs/5.x/development/eager-loading.html\n- Project config: https://craftcms.com/docs/5.x/system/project-config.html\n\nUse `WebFetch` on specific doc pages when a reference file doesn't cover enough detail.\n\n## The Craft 5 Mental Model\n\n**Everything is becoming an entry.** Entry types are global (shared across sections and\nMatrix fields). Fields come from a global pool. This is the \"entrification\" of Craft — categories, tags, and globals are being unified into entries over a three-version arc:\n\n- **Craft 4.4** — `entrify` CLI commands added to convert categories, tags, and globals to entries\n- **Craft 5** — Creating new category groups, tag groups, or global sets is no longer possible in the CP. Existing ones continue to work. A unified \"Content\" section replaces the fragmented entries view. Custom entry index pages (5.9.0) solve the sidebar organization concern.\n- **Craft 6** — Categories, tags, and global sets will be removed entirely\n\nFor **new projects**, always use entries: Structure sections for hierarchical taxonomy, Channel sections for flat taxonomy, Singles for site-wide settings. For **existing projects**, migrate at your own pace using the `entrify` commands.\n\nThree decisions define your content architecture:\n\n1. **Which section type** organizes the content (Single, Channel, Structure)\n2. **Which entry types** define its shape (global, reusable across contexts)\n3. **Which relation strategy** connects content together (Entries fields, Matrix, CKEditor nested entries, or a combination)\n\n## CMS Editions\n\nCraft CMS has four editions (Solo, Team, Pro, Enterprise) that affect content modeling. The key distinction: if any section needs per-group edit/view restrictions, you need **Pro or Enterprise** (user groups and permissions are Pro+ only). See `references/users-and-permissions.md` for the full editions table and permissions architecture.\n\nChoose the edition before modeling — it determines whether you can scope content access by user group, which affects section and field architecture.\n\n## Section Type Decision\n\n| Need | Section Type | URI Example |\n|------|-------------|-------------|\n| One-off page (homepage, about, contact) | **Single** | `__home__`, `about` |\n| Site-wide settings (footer, header config) | **Single** (no URI, `preloadSingles`) | — |\n| Flat collection (blog, news, events) | **Channel** | `blog/{slug}` |\n| Hierarchical pages (docs, services) | **Structure** | `{parent.uri}/{slug}` |\n| Taxonomy (topics, categories) | **Structure** (replaces categories) | `topics/{slug}` |\n| Flat tags | **Channel** (replaces tags) | — |\n\n### Section Properties\n\nBeyond the type, sections have settings that matter for content architecture:\n\n- **`maxAuthors`** (default 1) — allows multiple authors per entry (new in 5.0.0). Set higher for collaborative content.\n- **`enableVersioning`** (default true) — version history for entries\n- **`defaultPlacement`** — `'beginning'` or `'end'` for new entries in structures\n- **`previewTargets`** — array of `{label, urlFormat}` objects defining where entries can be previewed. Default: primary entry page. Add custom targets for headless frontends, staging URLs, or PDF previews.\n\n### Singles replace globals\n\nSet `preloadSingles => true` in `config/general.php` to access singles as global\nTwig variables by handle — identical to the old globals behavior but with drafts,\nrevisions, live preview, and scheduling.\n\n```twig\n{# With preloadSingles enabled #}\n{{ siteSettings.footerText }}\n{{ siteSettings.socialLinks.all() }}\n```\n\n**Caveat:** Singles always propagate to all sites. This is hard-coded.\n\n### Structure queries for navigation\n\n```twig\n{% set topLevel = craft.entries.section('pages').level(1).all() %}\n{% set children = craft.entries.descendantOf(entry).descendantDist(1).all() %}\n{% set breadcrumbs = craft.entries.ancestorOf(entry).all() %}\n{% set siblings = craft.entries.siblingOf(entry).all() %}\n```\n\n## Entry Types in Craft 5\n\nEntry types are defined globally (Settings → Entry Types), then attached to\nsections and Matrix fields. One entry type can serve multiple contexts.\n\nKey implications:\n- Changing an entry type's field layout affects **every** section and Matrix field using it\n- Fields come from the global pool — same field definition reused everywhere\n- Per-context name/handle/description overrides available (5.6.0+) — useful when the same entry type serves different purposes in different sections\n- The global pool demands careful field naming — use specific handles\n\n### Entry Type Visual Identity (Craft 5 new)\n\nEntry types have visual properties that improve the editorial experience:\n\n- **`icon`** — custom icon identifier, shown in entry type selectors and Matrix \"+\" menus\n- **`color`** — one of 20 options (red, orange, amber, yellow, lime, green, emerald, teal, cyan, sky, blue, indigo, violet, purple, fuchsia, pink, rose, white, gray, black)\n- **`description`** (5.8.0) — help text explaining what this entry type is for\n- **`group`** (5.8.0) — collapsible grouping in section/Matrix entry type assignments\n- **`uiLabelFormat`** (5.9.0) — customize the label shown in element indexes (default `'{title}'`)\n- **`hasTitleField`** / **`titleFormat`** — disable the title field and auto-generate from other fields\n- **`showSlugField`** (5.0.0) / **`showStatusField`** (4.5.0) — hide slug or status from editors\n- **`allowLineBreaksInTitles`** (5.9.0) — for long-form titles\n\nThese settings are configured in Settings → Entry Types and affect all contexts where the entry type is used.\n\n### Reserved handles — check every proposed field handle against this list\n\nCraft has **83+ reserved handles** across all element types via `Field::RESERVED_HANDLES`. Validation is case-insensitive. Using any of these as a custom field handle will cause a validation error or silent template collision where the native attribute shadows the custom field.\n\n**Before proposing any field handle in a content model, check it against the lists below.** When a user asks for a field that matches a native attribute name, always use a domain-specific synonym. For example: user says \"I need a title field\" — the entry already has a native `title`, so use `heading`, `headline`, or `pageTitle` depending on context.\n\n**Most commonly collided (the ones you'll actually try to use):**\n\n| Reserved | Use Instead | Why |\n|----------|-------------|-----|\n| `title` | `heading`, `headline`, `label`, `pageTitle` | Native element title |\n| `slug` | `urlSlug`, `handle` | Native URL slug |\n| `status` | `state`, `phase`, `condition` | Native element status |\n| `url` | `externalUrl`, `targetUrl`, `websiteUrl` | Native element URL |\n| `link` | `targetLink`, `ctaLink`, `primaryLink` | Native `getLink()` method |\n| `icon` | `entryIcon`, `menuIcon`, `featureIcon` | Native element icon (5.0.0) |\n| `parent` | `parentEntry`, `parentItem`, `belongsTo` | Native structure parent |\n| `children` | `childEntries`, `subItems`, `nestedItems` | Native structure children |\n| `owner` | `entryOwner`, `ownerElement` | Native nested entry owner |\n| `site` | `location`, `branch`, `region` | Native site object |\n| `level` | `depth`, `tier`, `nestingLevel` | Native structure level |\n| `ancestors` | `parentChain`, `breadcrumbEntries` | Native structure ancestors |\n| `siblings` | `peerEntries`, `relatedSiblings` | Native structure siblings |\n| `enabled` | `isActive`, `isPublished`, `isVisible` | Native enabled/disabled state |\n| `language` | `locale`, `contentLanguage` | Native site language |\n| `localized` | `translations`, `localizedVersions` | Native localized entries query |\n| `next` / `prev` | `nextEntry` / `prevEntry` | Native structure navigation |\n| `ref` | `reference`, `referenceCode` | Native reference tag |\n| `type` | `entryType`, `category`, `variant` | Native entry type |\n| `author` / `authors` | `writer`, `creator`, `contributor` | Native entry author(s) |\n| `postDate` | `publishDate`, `releaseDate`, `goLiveDate` | Native entry post date |\n\n**Full list of reserved handles shared across ALL element types** (from `Field::RESERVED_HANDLES`):\n\n`ancestors`, `archived`, `attributes`, `behaviors`, `canonical`, `children`, `contentTable`, `dateCreated`, `dateDeleted`, `dateLastMerged`, `dateUpdated`, `descendants`, `draftId`, `enabled`, `enabledForSite`, `error`, `errors`, `fieldLayoutId`, `fieldValue`, `fieldValues`, `firstSave`, `icon`, `id`, `language`, `level`, `lft`, `link`, `localized`, `next`, `nextSibling`, `owner`, `parent`, `parents`, `prev`, `prevSibling`, `ref`, `revisionId`, `rgt`, `root`, `searchScore`, `siblings`, `site`, `siteId`, `siteSettingsId`, `slug`, `sortOrder`, `status`, `structureId`, `title`, `trashed`, `uid`, `uri`, `url`, `viewMode`\n\n**Additional per-element-type reserved handles:**\n\n| Element Type | Additional Reserved |\n|---|---|\n| **Entries** | `author`, `authorId`, `authorIds`, `authors`, `section`, `sectionId`, `type`, `postDate` |\n| **Assets** | `alt`, `extension`, `filename`, `folder`, `height`, `kind`, `size`, `volume`, `width` |\n| **Users** | `active`, `addresses`, `admin`, `affiliatedSiteId`, `email`, `firstName`, `friendlyName`, `fullName`, `groups`, `lastName`, `locked`, `name`, `password`, `pending`, `photo`, `suspended`, `username` |\n| **Categories** | `group` |\n| **Tags** | `group` |\n| **Addresses** | `address`, `countryCode`, `fullName`, `latLong`, `organization`, `organizationTaxId` |\n\n**Also globally reserved** (from `HandleValidator::$baseReservedWords`, applies to ALL handles): `attribute`, `attributeLabels`, `attributeNames`, `attributes`, `dateCreated`, `dateUpdated`, `errors`, `false`, `fields`, `handle`, `id`, `n`, `name`, `no`, `rules`, `this`, `true`, `uid`, `y`, `yes`\n\n## Field Instances — Reuse Over Duplication\n\nFields are defined once globally, then **instanced** into field layouts. Each instance can override four properties without affecting the global definition:\n\n- **Label** — different display name per context\n- **Handle** — different template handle per context (5.0.0+)\n- **Instructions** — context-specific help text\n- **Required** — required in one layout, optional in another\n\nThis means a single `heroImage` Assets field can be placed in a Blog Post, a Service Page, and a Project entry type — each with different labels (\"Hero Image\", \"Banner\", \"Cover Photo\") and different required settings. The field definition, type, and settings are shared.\n\n**The rule: reuse field definitions via instances. Only create a new field when the type or settings differ** (e.g., different allowed volumes, different source restrictions, different character limits). Don't create `blogHeroImage`, `serviceHeroImage`, `projectHeroImage` — create one `heroImage` and instance it.\n\n### Multi-Instance vs Single-Instance Fields\n\nA field's `isMultiInstance()` method controls whether it can appear **multiple times in the same layout** with different handles. This is determined by `dbType()` — fields that return `null` are single-instance.\n\n| Category | Field Types | Multi-Instance | Reusable Across Layouts |\n|----------|-------------|:--------------:|:-----------------------:|\n| **Relational** | Entries, Assets, Categories, Tags, Users | Yes | Yes |\n| **Simple** | Plain Text, Number, Email, URL, Color, Lightswitch, Money, Range, Time, Date/Time | Yes | Yes |\n| **Option** | Dropdown, Checkboxes, Multi-Select, Radio Buttons, Button Group | Yes | Yes |\n| **Structured** | Table, Link, Icon, Country | Yes | Yes |\n| **Nested element** | Matrix, Content Block, Addresses | **No** | Yes (with caveats) |\n\n**Single-instance caveats:** Matrix, Content Block, and Addresses fields CAN be reused across different entry types (placed in multiple field layouts), but they can only appear **once per layout** and their configuration is fully shared — changing the entry types or settings on a Matrix field affects every entry type using it. Reuse these when contexts genuinely share the same structure. Create separate fields when different contexts need different nested entry types or settings.\n\n## Adding Fields to an Entry Type — Reuse-First Workflow\n\nBefore proposing any field in a content model change, you MUST:\n\n1. **Enumerate the existing field pool.** Read `config/project/fields/` (or CP Settings → Fields). List every field with its type, handle, and key settings.\n2. **For each proposed field, classify into one of three categories:**\n   - **Reuse** — existing field with matching type and compatible settings. Instance it into the layout; optionally override label, handle, instructions, or required.\n   - **Reuse with settings review** — existing field of the correct type but slightly different settings (e.g., different allowed volumes, different character limit). Propose whether settings can be unified so one definition serves both contexts. Flag this as a decision for the user.\n   - **Create new** — no existing field matches by type or functional purpose. Justify why a new field is needed.\n3. **For single-instance fields** (Matrix, Content Block, Addresses) — if an existing field shares the same nested structure, reuse it. If the contexts need different nested entry types or settings, creating a new field is justified — note the shared-config caveat in your reasoning.\n4. **Present the plan as a table** — one row per proposed field, showing the reuse decision, the existing field being reused (if applicable), and the rationale for any new field. Do not create a new field without this table.\n\nCreating a field that duplicates an existing field's functionality is the most common content modeling mistake — it pollutes the global pool, confuses editors, and makes future refactoring harder.\n\n## Entrification — Migrating Legacy Content\n\n### CLI Commands\n\n```bash\nddev craft entrify/categories <categoryGroupHandle>   # → Structure section\nddev craft entrify/tags <tagGroupHandle>               # → Channel section\nddev craft entrify/global-set <globalSetHandle>        # → Single section\n```\n\nAll three accept `--section` and `--entry-type` to target an existing section/entry type instead of creating new ones. `entrify/categories` and `entrify/tags` also accept `--author`.\n\nAs of 5.9.0, these commands are interactive — the handle argument is optional.\n\n### What the commands do\n\n- Convert the element type to entries\n- Migrate all content and field data\n- Convert Categories/Tags fields to Entries fields\n- Preserve existing relations\n- Assign newly created sections to appropriate entry index pages\n\n### Entries field for hierarchical selection\n\nWhen replacing a Categories field with an Entries field, enable **Maintain Hierarchy** on the Entries field. This auto-selects ancestors when a nested entry is chosen — replicating the category field behavior.\n\n### Tags replacement caveat\n\nFor flat taxonomies where editors created terms on-the-fly, the on-the-fly creation UX is not yet available for Entries fields. This is the one area where the legacy Tags field still has a UX advantage. Use a Channel section and accept the two-step workflow (create entry separately, then relate it).\n\n## CKEditor vs Matrix vs Content Block\n\nThree tools for structured content within an entry — choose based on editing experience:\n\n- **Matrix** — reorderable blocks, page builders, data grids, media galleries. Multiple view modes (blocks, cards, cards-grid, index).\n- **CKEditor** with nested entries — rich text with occasional structured content inline (image blocks, code blocks, CTAs). Natural writing flow.\n- **Content Block** (5.8.0) — single non-repeatable nested entry for reusable field groups (SEO metadata, banner config).\n\nFor the full decision table, nested entry type patterns, and the CKEditor chunks rendering pattern, read `references/content-patterns.md`.\n\n## Common Pitfalls\n\n- **Over-using Matrix** — if content needs its own URL, independent querying, or permissions, it should be a separate section with an Entries relation field, not a Matrix block.\n- **Creating new fields without checking the global pool** — before adding any field, run the Reuse-First Workflow above. Enumerate existing fields via `config/project/fields/` and default to reusing via instance. The only justification for a new field is a different type or genuinely incompatible settings.\n- **Vague or reserved field handles** — `image`, `text`, `link` are too generic (and `link` is actually reserved). For every field handle in a content model, follow this check: (1) is the handle in the reserved list? If yes, use a synonym from the table. (2) Is the handle too generic for the global field pool? If yes, add domain context: `featuredImage`, `bodyContent`, `primaryLink`. (3) Don't over-specify — `blogFeaturedImage` creates a new field when you could instance `featuredImage` with a label override.\n- **Not planning multi-site from the start** — propagation method, field translation methods, and site settings must be configured before content exists. Changing propagation later resaves all entries.\n- **Using categories/tags/globals in new projects** — new creation is disabled in Craft 5 CP and they will be removed in Craft 6. Use entries instead.\n- **Forgetting `preloadSingles`** — without it, singles aren't available as global variables and you need explicit queries.\n- **Matrix for everything** — 15+ entry types in one Matrix field is a red flag. Deeply nested Matrix hits `max_input_vars` limits and degrades CP performance.\n- **Not using `.eagerly()`** — every relational field access inside a loop should use `.eagerly()` to prevent N+1 queries.\n- **Editing project config YAML manually** — let Craft manage `config/project/`. Use `ddev craft project-config/rebuild` to regenerate from DB if needed.\n- **Using database IDs in URI formats** — IDs differ across environments. Use `{slug}`, `{canonicalUid}`, or custom fields.\n- **Not setting `allowAdminChanges => false` in production** — without this, production schema changes won't sync back to dev.\n- **Using `@web` in filesystem URLs** — `@web` is auto-detected from the HTTP request and can be spoofed or empty in console/queue contexts. Use environment variables (`$ASSETS_URL`) for filesystem URLs. `@webroot` for paths is less risky but env vars are still preferred.\n- **Ignoring entry type visual identity** — editors navigate by icon, color, and description. Investing in these settings makes the CP usable as the content model grows.\n- **Not planning for CMS edition** — if you need per-group content permissions, you need Pro or Enterprise. This affects section and field architecture.\n\n## Reference Files\n\nRead the relevant reference file(s) for your task.\n\n**Task examples:**\n- \"Add fields to an existing entry type\" → Reuse-First Workflow in this SKILL.md\n- \"Modify an entry type's field layout\" → Reuse-First Workflow in this SKILL.md\n- \"Plan a blog content architecture\" → read `content-patterns.md`\n- \"Which field type should I use for X?\" → read `field-types.md`\n- \"Set up relatedTo queries\" → read `relations-and-eager-loading.md`\n- \"Configure Matrix with nested entries\" → read `field-types.md` (Matrix section)\n- \"Plan a multi-site content model\" → read `content-patterns.md` + `infrastructure.md` (propagation)\n- \"Set up users, groups, and permissions\" → read `users-and-permissions.md`\n- \"Understand project config workflow\" → read `infrastructure.md` (Project Config Essentials)\n- \"How does Craft store content internally?\" → read `infrastructure.md` (Storage Model)\n- \"Set up asset volumes and filesystems\" → read `infrastructure.md` (Assets section)\n- \"Configure URI format for a structure section\" → read `object-templates.md` (Structure URI Patterns)\n- \"Set up dynamic asset upload subpath\" → read `object-templates.md` (Asset Subpath Patterns)\n- \"Asset subpath broken after moving field into Matrix\" → read `object-templates.md` (The Matrix Gotcha)\n\n| Reference | Scope |\n|-----------|-------|\n| `references/field-types.md` | All built-in field types: settings, Twig access patterns, query syntax, gotchas. Matrix configuration, view modes, nesting. |\n| `references/relations-and-eager-loading.md` | relatedTo() shapes (4 forms), .with() eager loading, .eagerly() lazy eager loading, nested eager loading, native eager-loadable attributes. |\n| `references/content-patterns.md` | Strategic patterns for blog, portfolio, multi-site corporate. Section/field/relation architecture per pattern. Entrification migration. CKEditor vs Matrix decisions. |\n| `references/users-and-permissions.md` | Users, user groups, CMS editions, addresses, permissions architecture, field layout UI elements. |\n| `references/infrastructure.md` | Multi-site propagation methods, field translation methods, project config workflow, how Craft stores content (five-table model, JSON field values, relations, nested sets), asset volumes/filesystems/transforms. |\n| `references/object-templates.md` | Object template syntax: `{attribute}` vs `{{ twig }}`, URI formats, asset subpaths, preview targets, owner/rootOwner nesting, structure patterns, the Matrix gotcha. |","tags":["craft","content","modeling","craftcms","claude","skills","michtio","agent-skills","claude-code","claude-code-plugin","claude-code-skills","claude-skills"],"capabilities":["skill","source-michtio","skill-craft-content-modeling","topic-agent-skills","topic-claude-code","topic-claude-code-plugin","topic-claude-code-skills","topic-claude-skills","topic-content-modeling","topic-craft-cms","topic-craft-cms-5","topic-craftcms","topic-ddev","topic-php","topic-twig"],"categories":["craftcms-claude-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/michtio/craftcms-claude-skills/craft-content-modeling","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add michtio/craftcms-claude-skills","source_repo":"https://github.com/michtio/craftcms-claude-skills","install_from":"skills.sh"}},"qualityScore":"0.469","qualityRationale":"deterministic score 0.47 from registry signals: · indexed on github topic:agent-skills · 39 github stars · SKILL.md body (22,317 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-05-01T18:56:48.321Z","embedding":null,"createdAt":"2026-04-18T22:19:32.308Z","updatedAt":"2026-05-01T18:56:48.321Z","lastSeenAt":"2026-05-01T18:56:48.321Z","tsv":"'+1':2443 '/docs/5.x/development/eager-loading.html':197 '/docs/5.x/reference/element-types/entries.html':171 '/docs/5.x/reference/element-types/entries.html#sections':175 '/docs/5.x/reference/field-types/':184 '/docs/5.x/reference/field-types/matrix.html':188 '/docs/5.x/system/fields.html':179 '/docs/5.x/system/project-config.html':202 '/docs/5.x/system/relations.html':192 '/rebuild':2460 '1':372,552,668,675,1668,2278 '15':2404 '2':382,1690,2294 '20':803 '3':393,1781,2313 '4':1827,2773 '4.4':266 '4.5.0':872 '5':7,45,55,220,280,691,776,2372 '5.0.0':560,870,1075,1375 '5.6.0':748 '5.8.0':826,837,2143 '5.9.0':315,846,880,1944 '6':322,2381 '83':916 'accept':1919,1940,2073 'access':87,470,618,2433,2760 'across':233,391,919,1186,1520,1586,2475 'activ':1279 'actual':1025,2265 'ad':270,1647,2215 'add':598,2307,2605 'addit':1248,1257 'address':1280,1300,1301,1568,1581,1790,2816 'admin':1281 'advantag':2067 'affect':126,421,475,723,895,1359,1619,2587 'affiliatedsiteid':1282 'allow':553,1453,1738 'allowadminchang':2485 'allowlinebreaksintitl':879 'alongsid':147 'alreadi':1004 'also':112,1307,1939 'alt':1269 'alway':105,335,648,986 'amber':807 'ancestor':1111,1116,1194,2013 'anoth':1389 'appear':1490,1599 'appli':1313 'applic':1849 'appropri':1984 'arc':264 'architectur':20,74,118,371,457,479,549,2591,2637,2801,2818 'archiv':1195 'area':2057 'aren':2390 'argument':1951 'array':583 'ask':976 'asset':62,1268,1395,1524,2526,2705,2711,2728,2733,2736,2849,2860 'assign':844,1979 'attach':701 'attribut':953,984,1196,1317,1320,2789,2855 'attributelabel':1318 'attributenam':1319 'author':555,1163,1164,1170,1260,1263,1941 'authorid':1261,1262 'auto':864,2011,2508 'auto-detect':2507 'auto-gener':863 'auto-select':2010 'avail':747,2049,2392 'back':2497 'banner':1418,2156 'base':2100 'basereservedword':1312 'bash':1901 'becom':225 'begin':574 'behavior':631,1197,2024 'belongsto':1079 'beyond':539 'black':824 'block':1567,1579,1789,2090,2106,2116,2134,2136,2142,2205 'blog':511,515,1402,2635,2794 'blogfeaturedimag':2319 'blogheroimag':1464 'blue':815 'bodycont':2311 'branch':1099 'breadcrumb':678 'breadcrumbentri':1113 'broken':2738 'builder':2108 'built':2754 'built-in':2753 'button':1551,1552 'canon':1198 'canonicaluid':2479 'card':2117,2119 'cards-grid':2118 'care':765 'case':930 'case-insensit':929 'categori':250,273,283,323,526,529,1158,1296,1513,1525,1700,1996,2022 'categories/tags':1971 'categories/tags/globals':2362 'caus':942 'caveat':646,1572,1576,1823,2027 'chang':716,1609,1665,2355,2493 'channel':343,380,514,534,1910,2070 'charact':1459,1741 'check':906,967,2210,2277 'checkbox':1546 'childentri':1084 'children':671,1083,1089,1199 'choos':33,458,2099 'chosen':2019 'chunk':2170 'ckeditor':403,2085,2122,2169,2806 'classifi':1695 'cli':163,268,1899 'cms':6,44,54,409,412,2571,2814 'code':136,146,657,2135 'collabor':564 'collaps':838 'collect':510 'collid':1020 'collis':949 'color':800,1536,2552 'combin':408 'come':239,732 'command':152,161,269,365,1900,1946,1956 'common':1019,1879,2175 'companion':103 'compat':1708 'compon':119 'concern':320 'condit':1050 'config':17,160,199,504,1822,2157,2447,2459,2686,2691,2833 'config/general.php':616 'config/project':2453 'config/project/fields':1675,2229 'configur':889,1605,2351,2656,2713,2766 'confus':1888 'connect':397 'console/queue':2521 'contact':494 'content':3,8,19,30,46,51,73,124,148,165,304,370,378,398,422,469,548,565,965,1566,1578,1663,1788,1880,1898,1966,2089,2095,2131,2141,2182,2273,2353,2565,2579,2636,2670,2697,2838 'content-patterns.md':2639,2673 'contentlanguag':1132 'contentt':1200 'context':392,713,744,897,1017,1368,1374,1378,1628,1639,1754,1804,2309,2522 'context-specif':1377 'continu':299 'contributor':1167 'control':1486 'convert':272,1958,1970 'corpor':2799 'correct':1730 'could':2326 'countri':1560 'countrycod':1302 'cover':22,72,215,1419 'cp':79,296,1677,2373,2425,2561 'craft':2,5,32,43,53,91,115,132,162,219,249,265,279,321,411,690,775,914,1903,1908,1913,2371,2380,2451,2456,2695,2836 'craft-content-model':1 'craft-sit':114 'craft-twig-guidelin':131 'craft.entries.ancestorof':679 'craft.entries.descendantof':672 'craft.entries.section':665 'craft.entries.siblingof':684 'craftcm':101 'craftcms.com':170,174,178,183,187,191,196,201 'craftcms.com/docs/5.x/development/eager-loading.html':195 'craftcms.com/docs/5.x/reference/element-types/entries.html':169 'craftcms.com/docs/5.x/reference/element-types/entries.html#sections':173 'craftcms.com/docs/5.x/reference/field-types/':182 'craftcms.com/docs/5.x/reference/field-types/matrix.html':186 'craftcms.com/docs/5.x/system/fields.html':177 'craftcms.com/docs/5.x/system/project-config.html':200 'craftcms.com/docs/5.x/system/relations.html':190 'creat':281,1441,1463,1467,1634,1763,1812,1859,1866,1933,1981,2033,2079,2206,2320 'creation':2044,2367 'creator':1166 'ctalink':1063 'ctas':2137 'custom':96,311,599,789,847,938,956,2481 'cyan':813 'data':130,1969,2109 'databas':2468 'date':1179 'date/time':1541 'datecr':1201,1321 'datedelet':1202 'datelastmerg':1203 'dateupd':1204,1322 'db':2464 'dbtype':1504 'ddev':150,155,1902,1907,1912,2455 'decis':125,367,482,1759,1842,2161,2809 'deepli':2415 'default':551,567,594,854,2231 'defaultplac':573 'defin':368,386,588,695,1344 'definit':739,1362,1427,1437,1751 'degrad':2424 'demand':764 'depend':1015 'depth':1105 'descend':1205 'descendantdist':674 'descript':825,2554 'design':36 'detail':217 'detect':2509 'determin':464,1502 'dev':2499 'develop':26 'differ':756,759,1364,1370,1414,1422,1450,1452,1455,1458,1498,1587,1638,1641,1734,1737,1740,1806,2245,2474 'disabl':858,2369 'display':1365 'distinct':426 'doc':207,519 'document':167 'doesn':213 'domain':990,2308 'domain-specif':989 'draft':634 'draftid':1206 'dropdown':1545 'duplic':1341,1870 'dynam':2727 'e.g':1451,1736 'eager':193,2429,2439,2776,2778,2780,2783,2787 'eager-load':2786 'edit':410,415,453,460,2102,2445,2572,2815 'edit/view':434 'editor':24,878,1889,2032,2548 'editori':786 'element':97,852,921,1039,1052,1059,1073,1188,1251,1255,1564,1960,2822 'email':1283,1534 'emerald':811 'empti':2519 'enabl':643,1123,1207,2002 'enabled/disabled':1128 'enabledforsit':1208 'enablevers':566 'end':576 'enough':216 'enterpris':419,440,2585 'entir':331 'entri':11,37,57,168,227,228,258,278,309,312,337,384,400,405,557,572,579,590,596,673,680,685,687,692,698,708,718,753,771,778,794,832,842,892,900,1003,1095,1141,1161,1169,1177,1259,1410,1523,1588,1611,1621,1643,1651,1808,1923,1963,1974,1985,1988,2000,2007,2017,2051,2080,2098,2125,2149,2164,2199,2360,2383,2405,2544,2610,2621,2660 'entrif':247,1895,2804 'entrifi':267,364 'entrify/categories':1904,1936 'entrify/global-set':1914 'entrify/tags':1909,1938 'entry-typ':1922 'entryicon':1069 'entryown':1091 'entrytyp':1157 'enumer':1669,2225 'env':2538 'environ':2476,2524 'error':945,1209,1210,1323 'essenti':2692 'event':513 'everi':724,907,1620,1681,2268,2430 'everyth':23,223,2403 'everywher':741 'exampl':143,487,994,2604 'exist':297,355,1671,1702,1726,1766,1793,1844,1872,1928,1977,2226,2354,2609 'experi':787,2103 'explain':829 'explicit':2399 'extend':90 'extens':1270 'externalurl':1055 'fals':1324,2486 'featuredimag':2310,2328 'featureicon':1071 'field':13,40,59,176,180,237,238,401,478,706,721,728,731,738,766,861,868,909,924,939,957,961,979,1001,1191,1325,1337,1342,1350,1396,1426,1436,1444,1480,1482,1505,1514,1582,1593,1618,1636,1648,1660,1672,1679,1682,1694,1703,1727,1767,1778,1786,1794,1815,1838,1845,1856,1862,1868,1873,1968,1972,1975,1989,1997,2001,2008,2023,2052,2062,2152,2201,2208,2217,2227,2242,2254,2269,2303,2323,2343,2410,2432,2482,2590,2606,2624,2641,2741,2756,2819,2829,2844 'field-types.md':2649,2662 'fieldlayoutid':1211 'fieldvalu':1212,1213 'file':212,2593,2598 'filenam':1271 'filesystem':2503,2529,2708 'first':1655,2222,2614,2628 'firstnam':1284 'firstsav':1214 'five':2840 'five-t':2839 'flag':1755,2414 'flat':346,509,532,2029 'fli':2038,2043 'flow':2140 'folder':1272 'follow':2275 'footer':502 'forget':2385 'form':884,2774 'format':2472,2715,2859 'four':414,1356 'fragment':308 'friendlynam':1285 'frontend':603 'fuchsia':819 'full':452,1180,2160 'fulli':1607 'fullnam':1286,1303 'function':1772,1875 'futur':1892 'galleri':2112 'generat':865 'generic':2261,2299 'genuin':1629,2248 'getlink':1066 'global':231,242,253,276,288,326,389,611,621,630,696,735,762,1308,1346,1361,1886,2212,2302,2394 'goe':76 'golived':1175 'gotcha':2748,2764,2870 'gray':823 'green':810 'grid':2110,2120 'group':284,286,433,442,473,836,839,1287,1297,1299,1553,2153,2578,2679,2813 'grow':2567 'guidelin':134 'handl':625,770,905,910,918,926,940,962,1043,1184,1193,1254,1316,1326,1369,1372,1499,1686,1718,1950,2255,2270,2281,2297 'handlevalid':1311 'hard':656 'hard-cod':655 'harder':1894 'hastitlefield':856 'head':1011,1034 'header':503 'headless':602 'headlin':1012,1035 'height':1273 'help':827,1380 'hero':1416 'heroimag':1394,1469 'hide':873 'hierarch':341,517,1991 'hierarchi':2004 'higher':562 'histori':570 'hit':2418 'home':496 'homepag':492 'http':2512 'icon':788,790,1068,1074,1215,1559,2551 'id':1216,1327,2469,2473 'ident':626,774,2547 'identifi':791 'ignor':2543 'imag':1417,2133,2256 'implic':715 'improv':784 'incompat':2249 'independ':2187 'index':313,853,1986,2121 'indigo':816 'infrastructure.md':2674,2689,2700,2710 'inlin':2132 'input':2420 'insensit':931 'insid':2434 'instanc':1338,1348,1353,1439,1471,1475,1479,1512,1518,1575,1710,1785,2235,2327 'instead':1031,1931,2384 'instruct':1376,1719 'interact':1948 'intern':2698 'invest':2555 'isact':1124 'ismultiinst':1484 'ispublish':1125 'isvis':1126 'json':2843 'justif':2238 'justifi':1774,1817 'key':425,714,1688 'kind':1274 'label':585,849,1036,1363,1415,1717,2331 'languag':1130,1135,1217 'lastnam':1288 'later':2357 'latlong':1304 'layout':41,722,1351,1386,1496,1521,1594,1602,1714,2625,2820 'lazi':2779 'legaci':1897,2060 'less':2535 'let':2450 'level':667,1104,1110,1218 'lft':1219 'lightswitch':1537 'lime':809 'limit':1460,1742,2422 'link':1061,1220,1558,2258,2263 'list':913,971,1181,1680,2285 'live':636 'll':1024 'load':106,113,194,2777,2781,2784 'loadabl':2788 'local':1131,1136,1140,1221 'localizedvers':1138 'locat':1098 'lock':1289 'long':883 'long-form':882 'longer':292 'loop':2436 'maintain':2003 'make':1891,2559 'manag':63,2452 'manual':2449 'match':981,1705,1768 'matrix':14,60,185,236,402,705,727,798,1565,1577,1617,1787,2087,2104,2180,2204,2401,2409,2417,2657,2663,2743,2747,2765,2808,2869 'matter':546 'max':2419 'maxauthor':550 'mean':1391 'media':2111 'mental':221 'menuicon':1070 'menus':799 'metadata':2155 'method':1067,1485,2342,2345,2828,2831 'migrat':166,357,1896,1964,2805 'mistak':1882 'mode':2115,2768 'model':4,9,47,149,222,423,462,966,1664,1881,2274,2566,2671,2702,2842 'modifi':2619 'modul':95 'money':1538 'move':2740 'multi':1474,1517,1548,2336,2668,2797,2825 'multi-inst':1473,1516 'multi-select':1547 'multi-sit':2335,2667,2796,2824 'multipl':554,712,1491,1592,2113 'must':1667,2349 'n':1328,2442 'name':767,985,1290,1329,1366 'name/handle/description':745 'nativ':952,983,1007,1038,1044,1051,1058,1065,1072,1080,1087,1093,1101,1108,1114,1120,1127,1133,1139,1147,1153,1160,1168,1176,2785 'natur':2138 'navig':661,1149,2549 'need':27,430,437,483,998,1640,1780,1805,2183,2398,2466,2575,2582 'nest':404,1094,1563,1642,1798,1807,2016,2124,2148,2163,2416,2659,2769,2782,2847,2865 'nesteditem':1086 'nestinglevel':1107 'new':282,333,558,578,777,1443,1764,1777,1814,1855,1861,1934,2207,2241,2322,2364,2366 'newli':1980 'news':512 'next':1143,1222 'nextentri':1145 'nextsibl':1223 'non':2146 'non-repeat':2145 'note':1818 'null':1508 'number':1533 'object':587,1103,2852 'object-templates.md':2721,2732,2745 'occasion':2129 'old':629 'on-the-fli':2035,2040 'one':298,489,707,801,1022,1385,1468,1697,1750,1834,1935,2056,2408 'one-off':488 'option':804,1387,1544,1715,1953 'orang':806 'organ':83,319,376,1305 'organizationtaxid':1306 'over-specifi':2316 'over-us':2177 'overrid':746,1355,1716,2332 'owner':1090,1096,1224 'owner/rootowner':2864 'ownerel':1092 'pace':361 'page':208,314,491,518,597,666,1406,1987,2107 'pagetitl':1014,1037 'parent':1076,1082,1225,1226 'parent.uri':522 'parentchain':1112 'parententri':1077 'parentitem':1078 'password':1291 'path':2533 'pattern':66,120,2166,2172,2724,2735,2761,2792,2803,2867 'pdf':607 'peerentri':1118 'pend':1292 'per':432,556,743,1250,1367,1373,1601,1836,2577,2802 'per-context':742 'per-element-typ':1249 'per-group':431,2576 'perform':2426 'permiss':444,456,2190,2580,2681,2817 'phase':1049 'photo':1293,1420 'php':93 'pink':820 'pitfal':2176 'place':1399,1590 'plain':1531 'plan':1830,2334,2569,2633,2665 'plugin':94 'pollut':1884 'pool':243,736,763,1673,1887,2213,2304 'portfolio':2795 'possibl':293 'post':1178,1403 'postdat':1172,1267 'prefer':2542 'preloadsingl':508,613,642,2386 'present':1828 'preserv':1976 'prev':1144,1227 'prevent':2441 'preventri':1146 'preview':593,608,637,2862 'previewtarget':582 'prevsibl':1228 'primari':595 'primarylink':1064,2312 'pro':418,438,446,2583 'product':2488,2491 'project':16,69,159,198,334,356,1409,2365,2446,2458,2685,2690,2832 'project-config':2457 'projectheroimag':1466 'propag':649,2341,2356,2675,2827 'properti':538,782,1357 'propos':908,959,1658,1693,1743,1837 'publishd':1173 'purpl':818 'purpos':757,1773 'queri':659,1142,2188,2400,2444,2653,2762 'radio':1550 'rang':1539 'rational':1852 'read':1674,2173,2594,2638,2648,2654,2661,2672,2682,2688,2699,2709,2720,2731,2744 'real':68 'reason':1826 'red':805,2413 'ref':1150,1229 'refactor':1893 'refer':211,1151,1154,2592,2597,2749 'referencecod':1152 'references/content-patterns.md':2174,2790 'references/field-types.md':2751 'references/infrastructure.md':2823 'references/object-templates.md':2851 'references/relations-and-eager-loading.md':2770 'references/users-and-permissions.md':449,2810 'regener':2462 'region':1100 'relat':15,61,189,395,1522,1978,2083,2200,2431,2846 'relateds':1119 'relatedto':2652,2771 'relations-and-eager-loading.md':2655 'released':1174 'relev':2596 'remov':330,2378 'render':129,2171 'reorder':2105 'repeat':2147 'replac':306,528,535,610,1994,2026 'replic':2020 'request':2513 'requir':122,138,156,1382,1383,1423,1721 'resav':2358 'reserv':904,917,925,1029,1183,1192,1253,1258,1309,2253,2266,2284 'restrict':435,1457 'return':1507 'reus':740,1339,1435,1585,1625,1654,1701,1722,1800,1841,1847,2221,2233,2613,2627 'reusabl':390,1519,2151 'reuse-first':1653,2220,2612,2626 'review':1725 'revis':635 'revisionid':1230 'rgt':1231 'rich':2126 'riski':2536 'root':1232 'rose':821 'rout':121 'row':1835 'rule':1331,1434 'run':153,158,2218 'say':996 'schedul':639 'schema':2492 'scope':468,2750 'searchscor':1233 'section':10,34,56,172,234,305,339,344,374,429,476,480,484,537,542,703,725,760,1264,1906,1911,1916,1920,1982,2071,2196,2588,2664,2712,2719 'section/entry':1929 'section/field/relation':2800 'section/matrix':841 'sectionid':1265 'see':99,448 'select':42,1549,1992,2012 'selector':796 'seo':2154 'separ':1635,2081,2195 'serv':711,755,1752 'servic':520,1405 'serviceheroimag':1465 'set':289,327,353,501,544,561,612,663,670,677,682,697,887,891,1424,1430,1449,1614,1646,1678,1689,1709,1724,1735,1745,1811,2250,2348,2484,2558,2650,2676,2703,2725,2758,2848 'shadow':954 'shape':388,2772 'share':232,1185,1432,1608,1630,1795,1821 'shared-config':1820 'show':1839 'shown':792,850 'showslugfield':869 'showstatusfield':871 'sibl':683,1117,1122,1234 'sidebar':318 'silent':947 'simpl':1530 'singl':348,379,495,505,609,619,647,1393,1478,1511,1574,1784,1915,2144,2389 'single-inst':1477,1510,1573,1783 'site':116,351,499,652,1097,1102,1134,1235,2337,2347,2669,2798,2826 'site-wid':350,498 'siteid':1236 'sitesettings.footertext':644 'sitesettings.sociallinks.all':645 'sitesettingsid':1237 'size':1275 'skill':71,102,104,110 'skill-craft-content-modeling' 'skill.md':2618,2632 'sky':814 'slight':1733 'slug':516,523,531,874,1041,1046,1238,2478 'solo':416 'solv':316 'sortord':1239 'sourc':1456 'source-michtio' 'specif':206,769,991,1379 'specifi':2318 'spoof':2517 'stage':604 'standard':137 'start':2340 'state':1048,1129 'status':876,1047,1053,1240 'step':2077 'still':2063,2541 'storag':2701 'store':2696,2837 'strateg':65,2791 'strategi':21,396 'structur':29,50,338,381,521,527,581,658,1081,1088,1109,1115,1121,1148,1556,1633,1799,1905,2094,2130,2718,2722,2866 'structureid':1241 'subitem':1085 'subpath':2730,2734,2737,2861 'suspend':1294 'sync':2496 'synonym':992,2290 'syntax':2763,2854 'tabl':454,1557,1833,1865,2162,2293,2841 'tag':251,274,285,324,533,536,1155,1298,1526,2025,2061 'target':600,1926,2863 'targetlink':1062 'targeturl':1056 'task':2602,2603 'taxonomi':342,347,524,2030 'teal':812 'team':417 'templat':86,117,128,145,948,1371,2853 'term':2034 'text':828,1381,1532,2127,2257 'three':262,366,1699,1918,2091 'three-vers':261 'tier':1106 'time':1492,1540 'titl':855,860,885,1000,1008,1033,1040,1242 'titleformat':857 'togeth':107,399 'tool':2092 'topic':525,530 'topic-agent-skills' 'topic-claude-code' 'topic-claude-code-plugin' 'topic-claude-code-skills' 'topic-claude-skills' 'topic-content-modeling' 'topic-craft-cms' 'topic-craft-cms-5' 'topic-craftcms' 'topic-ddev' 'topic-php' 'topic-twig' 'toplevel':664 'translat':1137,2344,2830 'trash':1243 'tri':1026 'trigger':111 'true':568,614,1333 'twig':133,135,142,622,640,662,2759,2857 'two':2076 'two-step':2075 'type':12,35,38,58,98,181,229,375,385,481,485,541,688,693,699,709,719,754,772,779,795,833,843,893,901,922,1156,1162,1189,1252,1256,1266,1411,1428,1447,1515,1589,1612,1622,1644,1652,1685,1706,1731,1770,1809,1924,1930,1961,2165,2246,2406,2545,2611,2622,2642,2757 'ui':2821 'uid':1244,1334 'uilabelformat':845 'understand':2684 'unifi':256,303,1748 'upload':2729 'uri':486,507,1245,2471,2714,2723,2858 'url':605,1045,1054,1060,1246,1535,2186,2504,2527,2530 'urlformat':586 'urlslug':1042 'usabl':2562 'use':203,336,362,729,749,768,903,932,987,1010,1028,1030,1623,2068,2179,2288,2361,2382,2428,2438,2454,2467,2477,2500,2523,2645 'user':441,472,975,995,1278,1527,1762,2678,2811,2812 'usernam':1295 'users-and-permissions.md':2683 'ux':2045,2066 'vagu':2251 'valid':927,944 'valu':2845 'var':2421,2539 'variabl':623,2395,2525 'variant':1159 'version':263,569 'via':923,1438,2228,2234 'view':310,2114,2767 'viewmod':1247 'violet':817 'visual':773,781,2546 'volum':1276,1454,1739,2706 'volumes/filesystems/transforms':2850 'vs':1476,2086,2088,2807,2856 'web':2501,2505 'webfetch':204 'webroot':2531 'websiteurl':1057 'whether':465,1487,1744 'white':822 'wide':352,500 'width':1277 'within':2096 'without':1358,1863,2209,2387,2489 'won':2494 'work':301 'workflow':1656,2078,2223,2615,2629,2687,2834 'write':140,2139 'writer':1165 'x':2647 'y':1335 'yaml':2448 'yellow':808 'yes':1336,1528,1529,1542,1543,1554,1555,1561,1562,1570,2287,2306 'yet':2048","prices":[{"id":"470b03b6-6047-405a-9b5b-09da0202c465","listingId":"26d28809-e36e-443b-9fbd-a3bbfbb3e979","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"michtio","category":"craftcms-claude-skills","install_from":"skills.sh"},"createdAt":"2026-04-18T22:19:32.308Z"}],"sources":[{"listingId":"26d28809-e36e-443b-9fbd-a3bbfbb3e979","source":"github","sourceId":"michtio/craftcms-claude-skills/craft-content-modeling","sourceUrl":"https://github.com/michtio/craftcms-claude-skills/tree/main/skills/craft-content-modeling","isPrimary":false,"firstSeenAt":"2026-04-18T22:19:32.308Z","lastSeenAt":"2026-05-01T18:56:48.321Z"}],"details":{"listingId":"26d28809-e36e-443b-9fbd-a3bbfbb3e979","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"michtio","slug":"craft-content-modeling","github":{"repo":"michtio/craftcms-claude-skills","stars":39,"topics":["agent-skills","claude-code","claude-code-plugin","claude-code-skills","claude-skills","content-modeling","craft-cms","craft-cms-5","craftcms","ddev","php","twig"],"license":"mit","html_url":"https://github.com/michtio/craftcms-claude-skills","pushed_at":"2026-04-30T21:00:38Z","description":"Production-ready Claude Code skills, agents, and project templates for Craft CMS 5 development","skill_md_sha":"dbde2bca58ebfddae75fd0289e2088a49a12df25","skill_md_path":"skills/craft-content-modeling/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/michtio/craftcms-claude-skills/tree/main/skills/craft-content-modeling"},"layout":"multi","source":"github","category":"craftcms-claude-skills","frontmatter":{"name":"craft-content-modeling","description":"Craft CMS 5 content modeling — sections, entry types, fields, Matrix, relations, project config, and content architecture strategy. Covers everything editors and developers need to structure content in Craft: choosing section types, designing entry types and field layouts, selecting field types for specific needs, configuring Matrix and nested entries, setting up relations and eager loading, and planning multi-site propagation. Triggers on: section types (single, channel, structure), entry types, field types, field layout design, field type selection, Matrix configuration, nested entries, relatedTo, eager loading, .with(), .eagerly(), categories, tags, globals, global sets, preloadSingles, propagation, multi-site content, URI format, project config, YAML, content architecture, content strategy, taxonomy, asset volumes, filesystems, image transforms, user groups, content permissions, entries-as-taxonomy, entrify, entrification, CKEditor vs Matrix, CMS editions, site propagation, multi-language, language groups, localization, translation method, field translation, content migration, reserved handles, field instances. Always use when planning content architecture, creating sections/fields, configuring Matrix, setting up relations, choosing field types, designing field layouts, making content modeling decisions, or planning multi-site content propagation. Do NOT trigger for PHP plugin/module development, custom field type code, front-end Twig templates, or buildchain configuration."},"skills_sh_url":"https://skills.sh/michtio/craftcms-claude-skills/craft-content-modeling"},"updatedAt":"2026-05-01T18:56:48.321Z"}}