da-content
Reference for producing Adobe Document Authoring (DA, da.live) and Edge Delivery Services (EDS, aka aem.live/Helix) compatible content. Use whenever generating HTML for DA upload, uploading media binaries to DA, publishing to aem.live, or driving the DA admin API (auth, source PUT, preview/publish). Covers block HTML format (canonical div-class form and accepted table alternate), section structure, page/section metadata, icons, links, images, default content, document skeleton constraints, block cell content normalization, the DA Source API contract, IMS auth, media storage, supported formats, Media Bus vs Content Bus delivery, and silent-failure rules that corrupt content.
What this skill does
# DA + EDS content reference
A reference skill — not a workflow. Use it whenever you need to know **what
the rules are** for generating, uploading, or delivering content through
Adobe Document Authoring (DA) and Edge Delivery Services (EDS).
This skill consolidates rules from three primary surfaces. Load the
reference for the task at hand:
| Doing | Read |
|---|---|
| Generating HTML for DA upload | [references/html-content.md](./references/html-content.md) |
| Uploading images, video, PDFs, fonts | [references/media.md](./references/media.md) |
| Hitting the DA admin API, auth, preview/publish | [references/platform.md](./references/platform.md) |
| Re-verifying asset boundary behavior empirically | [references/fixtures/README.md](./references/fixtures/README.md) |
Every factual claim in the references is tagged `[verified]` (read from
code or observed empirically) or `[assumed]` (inferred from documentation
without direct verification).
## When to use this skill
Invoke this skill whenever you are:
- Generating HTML that will be uploaded to DA (`admin.da.live/source/...`).
- Uploading any binary (PNG, JPG, SVG, MP4, PDF, WOFF2) to DA.
- Calling `admin.da.live` (Source API) or `admin.hlx.page` (preview /
publish API) directly.
- Reading a DA-stored HTML document and modifying it before re-upload.
- Diagnosing why a generated page renders incorrectly on `aem.page` /
`aem.live` (silent failures: `about:error` images, missing meta tags,
blocks rendering as plain HTML without their JS or CSS).
### When NOT to use this skill
- Writing block JS or CSS for a project — use **building-blocks**.
This skill covers the *content* side, not the *code* side.
- Universal Editor, structured-content authoring, or AEM Cloud Service
(Java / OSGi / JCR). Out of scope.
## Related Skills
- **da-auth** — Obtain the IMS token needed for every `admin.da.live`
and `admin.hlx.page` call. Invoke before any operation in this skill
that needs `DA_TOKEN`.
- **generate-import-html** — Generates DA-compliant HTML for imported
pages; this skill is the rule reference for what that HTML must
look like.
- **page-import** — Orchestrates full page imports into canonical
EDS block format. Reads this skill for the DA-side rules.
- **snowflake** — Static-to-EDS overlay conversion. Loads this skill
alongside its own methodology for DA HTML and admin API rules.
## Minimal upload example
The most common operation — upload an HTML document to DA. Shows the
non-obvious rules in one place: multipart/form-data body, field name
`data`, blob with `text/html` type, Bearer IMS token, then a separate
preview call to make the page reachable at `aem.page`. See
[references/platform.md](./references/platform.md) for the full contract
and [references/html-content.md](./references/html-content.md) for what
the HTML payload must look like.
```bash
# Use $DA_TOKEN from the da-auth skill, or read a cached token file directly.
# See platform.md §3 for the cache locations the various Adobe DA tools use.
TOKEN="${DA_TOKEN:?invoke the da-auth skill to obtain a DA admin token}"
# 1. Upload HTML — note multipart with field name "data" (other names silently fail)
curl -X PUT \
-H "Authorization: Bearer $TOKEN" \
-F "data=@./page.html;type=text/html" \
"https://admin.da.live/source/{org}/{repo}/path/to/page.html"
# 2. Trigger preview — required separate step, path WITHOUT .html extension
curl -X POST \
-H "Authorization: Bearer $TOKEN" \
"https://admin.hlx.page/preview/{org}/{repo}/main/path/to/page"
# 3. Optional: publish to aem.live
curl -X POST \
-H "Authorization: Bearer $TOKEN" \
"https://admin.hlx.page/live/{org}/{repo}/main/path/to/page"
```
Image binaries upload the same way (PUT to `admin.da.live/source/...`)
but do NOT need their own preview/publish call — they're served
directly from `content.da.live` once uploaded. They DO get pulled into
Media Bus (content-addressed, with responsive variants) when a
*document* that references them is previewed — see
[references/media.md §2](./references/media.md) for the asset lifecycle.
## The 11 silent-failure rules
These rules, if violated, produce broken content without any error from DA,
the pipeline, or the renderer. Memorize them; verify them in generated
output before upload.
1. **DA HTML is a body fragment.** No `<!DOCTYPE>`, no `<html>`, no `<head>`,
no `<script>`, no `<style>`, no inline `style=` attributes. The pipeline
injects head/scripts/styles from Code Bus at delivery.
→ [html-content.md §1](./references/html-content.md)
2. **Block class encodes block identity (canonical div form).** The
outermost `<div>` carries `class="<block-name> [<variant>…]"`. The
first class token is the block name and resolves to
`/blocks/<name>/<name>.{js,css}`. For the accepted table-form
alternate, the header is `<tr><td colspan="N">Name</td></tr>` where
`N` matches the cell count of the widest content row; single-column
blocks may omit `colspan`. Misshapen blocks (missing div class,
multi-column table missing `colspan`, empty header cell) render as
plain HTML without block JS or CSS.
→ [html-content.md §3](./references/html-content.md)
3. **Block names use alphanumeric + single hyphens only.** No underscores,
no double dashes, no digit-first names. Variants in div form: extra
class tokens after the name (`class="hero cta center"`). Variants in
table form: parentheses after the name (`Hero (cta, center)`). Both
normalize identically via `toBlockCSSClassNames`.
→ [html-content.md §3](./references/html-content.md)
4. **Page Metadata block name is exactly `metadata`.** Div form:
`class="metadata"` (single lowercase token). Table form: header text
`Metadata` (case-insensitive). Misspellings on either side are
silently ignored — no `<meta>` tags emitted.
→ [html-content.md §5](./references/html-content.md)
5. **`<img src>` URLs must be reachable from EDS preview infrastructure.**
The preview step fetches every `<img src>` and `<source srcset>` URL,
content-hashes the bytes, and stores them in Media Bus — that's how
the delivered page gets responsive `<picture>` variants. Any URL that
doesn't return image bytes (DNS failure, 4xx/5xx, HTML response,
timeout > 5s) produces `<img src="about:error">`. Host-less paths
(repo-relative `/path/foo.png`, document-relative `./foo.png`) also
fail because the ingester has nothing to fetch. External URLs work
fine and are sideloaded on first preview.
→ [media.md §2](./references/media.md), [html-content.md §9](./references/html-content.md)
6. **Pre-upload binaries only when you need URL stability.** Sideloading
means you do NOT need to upload an image to DA before referencing it
from your HTML — any reachable URL works. Pre-upload (to
`/media/<scope>/<file>`) when you want the binary under DA's control:
immune to third-party host changes, addressable by a stable
`content.da.live` URL, and re-fetched into Media Bus on each preview.
→ [media.md §2.5](./references/media.md), [media.md §13.2](./references/media.md)
7. **DA Source API requires `multipart/form-data` with field name `data`.**
Other field names (`file`, `image`) return 200 OK with no file written.
→ [platform.md §2](./references/platform.md)
8. **SVG hard cap is 40 KB.** PNG/JPG/AVIF/WEBP cap is 20 MB. MP4 cap is
36 MB. Over-cap SVGs cause the preview POST to fail with
`409 AEM_BACKEND_FETCH_FAILED` ("Images N have failed validation");
pre-check sizes before upload.
→ [media.md §6.1](./references/media.md)
9. **Preview / publish is a required separate step.** Uploading to DA does
NOT make the document visible at `aem.page` / `aem.live`. POST to
`admin.hlx.page/preview/...` then `/live/...` after upload.
→ [platform.md §6](./references/platform.md)
10. **IMS tokens expire silently with 401 + empty body.** Dev tokens last
24 hours. Always pre-flight expiry against `expires_at` in the cacheRelated in Web Dev
generating-lwc-components
IncludedLightning Web Components with PICKLES methodology and 165-point scoring. Use this skill when the user creates or edits LWC components, builds wire service patterns, or writes Jest tests for LWC. TRIGGER when: user creates/edits LWC components, touches lwc/**/*.js, .html, .css, .js-meta.xml files, or asks about wire service, SLDS, or Jest LWC tests. DO NOT TRIGGER when: Apex classes (use generating-apex), Aura components, or Visualforce.
tanstack-query
IncludedManage server state in React with TanStack Query v5. Set up queries with useQuery, mutations with useMutation, configure QueryClient caching strategies, implement optimistic updates, and handle infinite scroll with useInfiniteQuery. Use when: setting up data fetching in React projects, migrating from v4 to v5, or fixing object syntax required errors, query callbacks removed issues, cacheTime renamed to gcTime, isPending vs isLoading confusion, keepPreviousData removed problems.
document-processor-api
IncludedProcess documents with Nutrient DWS. Use when the user wants to generate PDFs from HTML or URLs, convert Office/images/PDFs, assemble or split packets, OCR scans, extract text/tables/key-value pairs, redact PII, watermark, sign, fill forms, optimize PDFs, or produce compliance outputs like PDF/A or PDF/UA. Triggers include convert to PDF, merge these PDFs, OCR this scan, extract tables, redact PII, sign this PDF, make this PDF/A, or linearize for web delivery.
nutrient-document-processing
IncludedProcess documents with Nutrient DWS. Use when the user wants to generate PDFs from HTML or URLs, convert Office/images/PDFs, assemble or split packets, OCR scans, extract text/tables/key-value pairs, redact PII, watermark, sign, fill forms, optimize PDFs, or produce compliance outputs like PDF/A or PDF/UA. Triggers include convert to PDF, merge these PDFs, OCR this scan, extract tables, redact PII, sign this PDF, make this PDF/A, or linearize for web delivery.
tanstack-query
IncludedManage server state in React with TanStack Query v5. Covers useMutationState, simplified optimistic updates, throwOnError, network mode (offline/PWA), and infiniteQueryOptions. Use when setting up data fetching, fixing v4→v5 migration errors (object syntax, gcTime, isPending, keepPreviousData), or debugging SSR/hydration issues with streaming server components.
accelint-nextjs-best-practices
IncludedNext.js performance optimization and best practices. Use when writing Next.js code (App Router or Pages Router); implementing Server Components, Server Actions, or API routes; optimizing RSC serialization, data fetching, or server-side rendering; reviewing Next.js code for performance issues; fixing authentication in Server Actions; or implementing Suspense boundaries, parallel data fetching, or request deduplication.