Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
adobe avatar

Content Driven Development

  • 1.1k installs
  • 158 repo stars
  • Updated August 4, 2026
  • adobe/skills

content-driven-development is an Adobe AEM Edge Delivery Services skill that orchestrates content-first block development so developers shape components, blocks, and authoring interfaces from real content and author need

About

content-driven-development is an Adobe AEM Edge Delivery Services orchestration skill (release v2.0.1) that makes content structure the starting point before any block or component code ships. Bundled inside the aem-edge-delivery-services plugin alongside skills like analyze-and-plan, building-blocks, testing-blocks, and content-modeling, it enforces a sequence: discover or create test content, model author-friendly structures, implement blocks, then validate in the browser. Adobe documentation requires invoking content-driven-development for all EDS development involving blocks, core scripts, or site functionality to avoid wasted cycles. Reach for it when adding or modifying AEM.live blocks on an existing site—not for greenfield non-AEM stacks. The skill delegates to building-blocks for JavaScript decoration and CSS conventions and to testing-blocks before pull requests, keeping author experience in the document editor aligned with delivered markup. Install via aem-edge-delivery-services@adobe-skills in Claude Code or Codex plugin marketplaces.

  • Prioritizes author needs as the primary users of content structures
  • Aligns content models, block structures, and authoring patterns directly to content reality
  • Integrates DA auth into the CDD workflow
  • Follows current best practices for EDS skill intros
  • Produces content-first specifications that reduce downstream rework

Content Driven Development by the numbers

  • 1,078 all-time installs (skills.sh)
  • +63 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #243 of 1,879 Documentation skills by installs in the Skillselion catalog
  • Security screen: HIGH risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/adobe/skills --skill content-driven-development

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1.1k
repo stars158
Security audit2 / 3 scanners passed
Last updatedAugust 4, 2026
Repositoryadobe/skills

How do you build AEM EDS blocks content-first?

Ensure every component, block, and authoring interface is shaped by real content and author needs instead of abstract code-first assumptions.

Who is it for?

Developers building or modifying Adobe AEM Edge Delivery Services blocks who must align code with author workflows and real document content.

Skip if: Teams outside AEM.live or Edge Delivery Services who do not need block-based content authoring pipelines.

When should I use this skill?

The user starts AEM EDS block development, asks for content-driven development on AEM.live, or needs to model test content before writing block JavaScript.

What you get

Author-friendly content models, test content, implemented EDS blocks, and browser-validated components ready for pull request.

  • Content models and test content
  • Implemented EDS blocks
  • Browser-validated components

By the numbers

  • Release version 2.0.1 documented in adobe/skills changelog
  • Orchestrates at least three sibling skills: analyze-and-plan, building-blocks, testing-blocks

Files

SKILL.mdMarkdownGitHub ↗

Content Driven Development (CDD)

Orchestrate the Content Driven Development workflow for AEM Edge Delivery Services. This workflow ensures code is built against real content with author-friendly content models.

CRITICAL: Never start writing or modifying code without first identifying or creating the content you will use to test your changes.

When to Use This Skill

Use CDD for ALL AEM development tasks:

  • ✅ Creating new blocks
  • ✅ Modifying existing blocks (structural or functional changes)
  • ✅ Changes to core decoration functionality
  • ✅ Bug fixes that require validation
  • ✅ Any code that affects how authors create or structure content

Do NOT use for:

  • Documentation-only changes
  • Configuration changes that don't affect authoring
  • Research tasks that don't require making any code changes yet

Philosophy

Content Driven Development prioritizes creating or identifying test content before writing code. This ensures:

  • Code is built against real content
  • Author-friendly content models
  • Validation throughout development

Optional: Understanding CDD Principles

Read references/cdd-philosophy.md if:

  • User asks "why" questions about content-first approach
  • You need to understand reasoning behind CDD decisions
  • You're unsure whether to prioritize author vs developer experience

Otherwise: Follow the workflow steps below

Step 0: Create TodoList

FIRST STEP: Use the TodoWrite tool to create a todo list with the following 8 tasks:

1. Start dev server (if not running)

  • Success: Dev server running, can access http://localhost:3000

2. Analyze & plan

  • Success: Clear understanding documented + acceptance criteria defined

3. Design content model

  • Success: Content structure documented and validated

4. Identify/create test content

  • Success: Test content accessible covering all scenarios

5. Implement

  • Success: Functionality works across all viewports

6. Lint & test

  • Success: All checks pass

7. Final validation

  • Success: All acceptance criteria met, everything works

8. Ship it

  • Success: PR created with preview link for validation

Mark todo complete when: Todo list created with all 8 tasks

---

Step 1: Start Dev Server

Check if dev server is running:

curl -s -o /dev/null -w "%{http_code}" http://localhost:3000

Expected: 200 (server running) or connection error (server not running)

If not running, start it:

aem up --no-open --forward-browser-logs

Notes:

  • Run in background if possible (dev server needs to stay running)
  • Requires AEM CLI installed globally: npm install -g @adobe/aem-cli
  • Alternative: npx -y @adobe/aem-cli up --no-open --forward-browser-logs

IMPORTANT: Check the command output for errors. Common issues:

  • Port 3000 already in use
  • AEM CLI not installed
  • Configuration errors

After starting, verify it's running:

curl -s -o /dev/null -w "%{http_code}" http://localhost:3000

Expected: 200

Success criteria:

  • ✅ Dev server running
  • ✅ http://localhost:3000 returns 200
  • ✅ No errors in server startup output

Mark todo complete when: Dev server confirmed running and accessible

---

Step 2: Analyze & Plan

Invoke: analyze-and-plan skill

Provide:

  • Task description from user
  • Screenshots, design files, or existing URLs to match design from (if available)

The analyze-and-plan skill will:

  • Guide you through task-specific analysis
  • Help define acceptance criteria
  • Optionally analyze visual designs/mockups if provided
  • Create documented analysis for reference

Success criteria:

  • ✅ Requirements analyzed
  • ✅ Acceptance criteria defined
  • ✅ Analysis documented to file for later steps

Mark todo complete when: Analysis documented and acceptance criteria defined

---

Step 3: Design Content Model

Skip if: CSS-only changes that don't affect content structure

Invoke: content-modeling skill

Provide:

  • Analysis from Step 2 (content requirements, author inputs)
  • Block name and purpose

The content-modeling skill will:

  • Design table structure (rows, columns, semantic formatting)
  • Validate against best practices (4 cells/row, semantic formatting)
  • Document content model for authors

Success criteria:

  • ✅ Content model designed (table structure defined)
  • ✅ Validated against best practices
  • ✅ Content model documented

Mark todo complete when: Content model designed and documented

---

Step 4: Identify/Create Test Content

Goal: End this step with accessible test content URL(s) covering all test scenarios

Choose the best path based on your situation:

---

Option A: User Provided Test URL(s)

When to use: User already has content and provided URL(s)

What to do: 1. Validate URL loads: curl -s -o /dev/null -w "%{http_code}" http://localhost:3000/path 2. Expected: 200 status 3. Document URL(s) 4. Mark complete

---

Option B: New Block (No Existing Content)

When to use: Building a brand new block that doesn't exist yet

What to do: 1. Skip search (nothing exists yet to find) 2. Create test content using one of these approaches:

Approach 1: CMS Content (Recommended) 1. Ask user to create content in their CMS (Google Drive/SharePoint/DA/Universal Editor) 2. Provide content model from Step 3 as reference 3. Wait for user to provide URL(s) 4. Validate: curl -s -o /dev/null -w "%{http_code}" http://localhost:3000/path 5. Expected: 200 status

Using DA: If you need to push HTML content programmatically to DA (rather than asking the user to author it), invoke the da-auth skill first to obtain a valid DA_TOKEN, then use the DA Admin API (POST https://admin.da.live/source/{org}/{repo}/{path}) to push the content and trigger a preview.

Approach 2: Local HTML (Temporary) 1. Create HTML file in drafts/tmp/{block-name}.plain.html 2. Follow structure from Step 3 content model 3. Read references/html-structure.md for local HTML file format guidance 4. Restart dev server: aem up --html-folder drafts --no-open --forward-browser-logs 5. Validate: curl -s -o /dev/null -w "%{http_code}" http://localhost:3000/drafts/tmp/{block-name} 6. Expected: 200 status 7. Note: User must create CMS content before PR (required for preview link)

---

Option C: Existing Block

When to use: Modifying, fixing, or styling an existing block

What to do:

First: Search for existing content 1. Invoke find-test-content skill 2. Provide: block name, dev server URL (optional, defaults to localhost:3000)

What find-test-content will do:

  • Search for existing content pages containing the block
  • Automatically detect and report all variants found
  • Report: URLs with instance counts and variant info

Then: Assess search results

If sufficient content found: 1. Document URL(s) 2. Validate URLs load: curl -s -o /dev/null -w "%{http_code}" http://localhost:3000/path 3. Expected: 200 status 4. Mark complete

If no content found OR insufficient coverage: 1. Create additional test content using approaches from Option B 2. Validate URLs load 3. Mark complete

---

Success criteria:

  • ✅ Test content accessible at known URL(s)
  • ✅ Content covers all test scenarios (variants, edge cases)
  • ✅ URLs validated (return 200)

Mark todo complete when: Test content identified/created and validated

---

Step 5: Implement

Invoke: building-blocks skill

Provide:

  • Content model from Step 3 (if applicable)
  • Test content URL(s) from Step 4
  • Analysis/requirements from Step 2
  • Type of changes: new block, existing block modification, CSS-only, etc.

The building-blocks skill will:

  • Guide implementation approach based on change type
  • Handle JavaScript decoration (if needed)
  • Handle CSS styling (mobile-first, responsive)
  • Ensure iterative testing in browser throughout development

Success criteria:

  • ✅ Code implementation complete
  • ✅ Functionality works across all viewports (mobile, tablet, desktop)
  • ✅ No console errors

Mark todo complete when: building-blocks skill reports implementation complete and working across viewports

---

Step 6: Lint & Test

What to do:

npm run lint

If lint errors: 1. Fix issues (use npm run lint:fix for auto-fixable problems) 2. Re-run lint until clean

Run existing tests:

npm test

Note: Unit tests are optional and only needed for logic-heavy utilities. The testing-blocks skill (invoked by building-blocks in Step 5) handles browser testing. This step catches any remaining lint issues and runs the project's test suite.

Success criteria:

  • npm run lint passes with no errors
  • npm test passes (if tests exist)

Mark todo complete when: All lint and test checks pass

---

Step 7: Final Validation

What to do:

1. Review acceptance criteria from Step 2

  • Read the analysis document created in Step 2
  • Check each acceptance criterion is met

2. Final browser sanity check

  • Load test content URL(s) in browser
  • Check mobile, tablet, and desktop viewports
  • Verify no console errors
  • Confirm no visual regressions

3. Verify no regressions

  • If modifying existing block: test existing variants still work
  • If modifying core functionality: spot-check a few pages

Success criteria:

  • ✅ All acceptance criteria from Step 2 met
  • ✅ Works across all viewports
  • ✅ No console errors
  • ✅ No regressions on existing functionality

Mark todo complete when: All acceptance criteria verified and no regressions found

---

Step 8: Ship It

What to do:

1. Create feature branch (if not already on one):

   git checkout -b block-name

2. Stage specific files only:

   git add blocks/{block-name}/{block-name}.js blocks/{block-name}/{block-name}.css
   # Add only files you worked on - NEVER use `git add .`

3. Commit with conventional commit format:

   git commit -m "feat(block-name): add new block"

Include relevant details in commit message and agent attribution in footer (agent adds Co-authored-by: cursor <noreply@cursor.com>)

4. Push to feature branch:

   git push origin HEAD

5. Create PR with preview link:

  • Branch preview URL format: https://{branch}--{repo}--{owner}.aem.page/{path}
  • Example: https://carousel--aem-skills-demo--shsteimer.aem.page/
  • REQUIRED: Include preview link in PR description (used for automated PSI checks)
  • Add multiple preview links if needed (e.g., different variants, edge cases)

Determining if you need a draft PR:

Create a draft PR when:

  • ✅ Only local test content exists for NEW functionality/variants
  • ✅ Test content demonstrates new features not yet in CMS
  • ✅ You need user to create CMS content before final validation

Create a regular PR when:

  • ✅ All test content exists in CMS and is previewable
  • ✅ Changes only affect existing content (regressions can be tested with existing CMS content)

Workflow for draft PRs: 1. Create the PR as a draft using gh pr create --draft 2. Include existing content preview links (for regression testing if applicable) 3. Include next steps in PR description (see template below):

  • Describe the test content used locally and what scenarios it covered
  • Suggest that same/similar content be created and previewed, and links added to PR
  • Keep steps brief but actionable for any reviewer

4. Instruct the user to create CMS content following the steps:

  • Open local test content in browser: http://localhost:3000/drafts/tmp/[test-file]
  • Right-click AEM Sidekick extension
  • Click "View document source" option
  • Use the copy button to copy the document content
  • Paste into Word/Google Docs/Document Authoring (for UE: use as guide, copy/paste won't work directly)
  • Preview the CMS content

5. User adds preview URL(s) to PR description and marks PR ready for review (or agent does with user's input)

PR Description Template:

Use this template for all PRs, including all relevant preview links and adapting as needed:

## Description
Brief description of changes

[If an issue exists]
Fix #<gh-issue-id>

Test URLs:

[Repeat for all relevant test urls]
- Before: https://main--{repo}--{owner}.aem.page/{path}
- After: https://{branch}--{repo}--{owner}.aem.page/{path} 

[If only local test content (draft PR):]

This PR is currently a **draft** pending creation of CMS test content.

### Next Steps to Complete PR:

[add relevant steps here]

Success criteria:

  • ✅ Changes committed with proper message format and attribution
  • ✅ Pushed to feature branch (not main)
  • ✅ PR created with preview link in description

Mark todo complete when: PR created and ready for review

---

Related Skills

  • analyze-and-plan: Invoked in Step 2 for requirements analysis and acceptance criteria
  • content-modeling: Invoked in Step 3 for designing content models
  • da-auth: Obtain a valid Adobe IMS token before pushing content to DA or triggering DA previews programmatically — invoke at the start of Step 4 when using DA
  • find-test-content: Invoked in Step 4, Option C for finding existing content
  • building-blocks: Invoked in Step 5 for implementation
  • testing-blocks: Invoked by building-blocks for browser testing
  • block-collection-and-party: Used to find similar blocks and reference implementations

Anti-Patterns to Avoid

Common mistakes that violate CDD principles:

  • ❌ Starting with code before understanding the content model
  • ❌ Making assumptions about content structure without seeing real examples
  • ❌ Creating developer-friendly but author-hostile content models
  • ❌ Skipping content creation "to save time" (costs more time later)

Resources

  • Philosophy: references/cdd-philosophy.md - Why content-first matters
  • HTML Structure: references/html-structure.md - Guide for creating local HTML test files

Related skills

How it compares

Pick content-driven-development over generic frontend planning skills when the target stack is Adobe AEM Edge Delivery Services blocks with document-author workflows.

FAQ

What does content-driven-development orchestrate?

content-driven-development runs the AEM Edge Delivery Services CDD sequence: content discovery and modeling, block implementation via building-blocks, and browser validation via testing-blocks before code review.

When is content-driven-development required?

Adobe AGENTS.md requires content-driven-development for all AEM EDS development involving blocks, core scripts, or functionality, because skipping it wastes cycles on code misaligned with author content.

Which plugin bundles content-driven-development?

content-driven-development ships in the aem-edge-delivery-services plugin from adobe/skills alongside analyze-and-plan, building-blocks, testing-blocks, and content-modeling skills.

Is Content Driven Development safe to install?

skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

Documentationdocsintegrations

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.