| name | ddev |
| description | DDEV local development environment for Craft CMS projects. ALWAYS load this skill when running any ddev command, configuring .ddev/config.yaml, or troubleshooting local container issues. Covers: config.yaml settings (project type, PHP/Node versions, database, docroot), shorthand commands (ddev composer, ddev craft, ddev npm), add-ons (ddev add-on get for Redis; built-in Mailpit), custom commands (.ddev/commands/), Vite dev server exposure (web_extra_exposed_ports, web_extra_daemons), database import/export (ddev import-db, ddev export-db, ddev craft db/backup), Xdebug toggling (ddev xdebug on/off), sharing local sites (ddev share, temporary public URLs), and troubleshooting (ddev poweroff, ddev logs, ddev describe, ddev delete, port conflicts, container restart issues). Triggers on: ddev start/stop/restart, ddev craft, ddev composer, ddev npm, ddev ssh, ddev import-db, ddev export-db, ddev xdebug, ddev share, ddev add-on, ddev poweroff, ddev describe, ddev logs, .ddev/config.yaml, web_extra_exposed_ports, web_extra_daemons, PHP version or Node version in local dev, database backup/restore locally, ran npm/composer on host instead of ddev, wrong node_modules architecture, local dev environment for Craft CMS, ddev-injected PRIMARY_SITE_URL, .ddev/.env.web regenerated on restart, CRAFT_ env var overriding config/general.php, general-config edit has no effect. NOT for production deployment, CI/CD pipelines, GitHub Actions, or server configuration. NOT for Docker/container usage outside of DDEV. |
DDEV for Craft CMS Development
Companion Skills — Always Load Together
When this skill triggers, also load:
craftcms — Plugin/module development. Required when DDEV commands involve Craft CLI (ddev craft make, ddev craft migrate, ddev craft project-config).
craft-php-guidelines — PHP coding standards. Required when DDEV commands involve code quality tooling (ddev composer check-cs, ddev composer phpstan, ddev craft pest/test).
Documentation
When unsure about a DDEV feature, WebFetch the relevant docs page.
Common Pitfalls
- Using
ddev exec composer install instead of ddev composer install — DDEV shorthand commands handle path resolution and environment setup. Always use the shorthand.
- Forgetting
ddev craft up does both migrate/all and project-config/apply — no need to run them separately after pulls or deploys.
- Exposing the Vite dev server with
ports instead of web_extra_exposed_ports — ports causes conflicts when running multiple DDEV projects. web_extra_exposed_ports routes through Traefik and works with HTTPS.
- Running
ddev composer global require — global packages install inside the container and vanish on restart. Install project-level dependencies only.
- Setting
nodejs_version but running npm install on the host — Node must run inside the container via ddev npm to match the configured version.
- Editing
.ddev/config.yaml while containers are running without restarting — changes to config require ddev restart to take effect.
- Using
ddev import-db without --target-db=db on multi-database setups — the default target is db, but if you've configured additional databases, be explicit.
- Adding
#ddev-generated to custom commands you've customized — DDEV overwrites files with this comment during updates. Only use it for add-on-managed commands. Custom commands you maintain should omit it.
- Running
composer install on the host then ddev composer check-cs/ddev composer phpstan — if the host PHP version differs from DDEV's (e.g., host PHP 8.4, DDEV PHP 8.3), vendor/composer/platform_check.php fails. Always run ddev composer install so vendor/ matches the container's PHP version.
Craft CLI First, Raw SQL Last
Always prefer Craft CLI commands over raw database queries:
ddev craft users/list-admins
ddev craft project-config/get system
ddev craft resave/entries
ddev craft elements/delete
Only fall back to ddev mysql when no CLI equivalent exists (e.g., checking table schemas, debugging specific rows, TRUNCATE cache for stuck mutex locks). Craft CLI commands handle project config, search index updates, and event firing that raw SQL skips.
Shorthand Commands
Always use DDEV shorthand over ddev exec:
ddev composer install
ddev craft up
ddev npm install
ddev craft make service
Craft CMS Project Type
name: my-craft-site
type: craftcms
docroot: web
php_version: "8.3"
database:
type: mysql
version: "8.0"
nodejs_version: "20"
DDEV auto-injects: CRAFT_DB_SERVER, CRAFT_DB_USER, CRAFT_DB_PASSWORD, CRAFT_DB_DATABASE, PRIMARY_SITE_URL. These are injected into the container via .ddev/.env.web and can be opted out of with disable_settings_management: true in .ddev/config.yaml.
New Project Bootstrap
The canonical flow for a fresh DDEV + Craft project:
mkdir my-craft-site && cd my-craft-site
ddev config --project-type=craftcms --docroot=web
ddev start
ddev composer create-project craftcms/craft
ddev composer create-project launches Craft's interactive install wizard on completion. If it doesn't run (or you need to re-run it), use ddev craft install. Swap craftcms/craft for a community starter project to bootstrap from one instead.
Common Commands
ddev start
ddev stop
ddev restart
ddev ssh
ddev describe
ddev launch
ddev launch -m
ddev logs
ddev import-db --file=dump.sql
ddev export-db --file=dump.sql
ddev xdebug on
ddev craft db/backup
Post-Install Auto-Run
Composer scripts auto-run craft up after install/update:
{
"scripts": {
"post-craft-update": [
"@php craft install/check && php craft up --interactive=0 || exit 0"
],
"post-update-cmd": "@post-craft-update",
"post-install-cmd": "@post-craft-update"
}
}
No need to manually run ddev craft migrate/all or ddev craft project-config/apply — ddev craft up does both, and it auto-runs after ddev composer install/update.
Add-ons
ddev add-on get ddev/ddev-redis
ddev add-on list
ddev add-on remove ddev/ddev-redis
Mailpit is built into DDEV core — no add-on installation needed. Outgoing mail is captured automatically. Access the web UI with ddev mailpit, or ddev describe shows its URL (e.g. https://{project}.ddev.site:8026).
Sharing a Local Site
ddev share
ddev share defaults to the ngrok provider, which requires a free ngrok.com account and a configured ngrok auth token. (cloudflared is an alternative provider via --provider=cloudflared, no account required, but ngrok is the default.)
Custom Commands
Place scripts in .ddev/commands/web/ (container) or .ddev/commands/host/ (host):
#!/usr/bin/env bash
cd /var/www/html && composer check-cs
Note: omit #ddev-generated on custom commands you maintain — DDEV overwrites files with that comment during updates. Only add-on-managed commands should include it.
Composer Path Repos and Volume Mounts
When developing plugins locally, Composer path repos symlink the plugin into vendor/. For this to work inside DDEV's Docker container, the host path must be volume-mounted so the symlink resolves.
Setup
- composer.json — use the local host path:
{
"repositories": [
{
"type": "path",
"url": "/Users/Shared/dev/craft-plugins/v5/*"
}
]
}
- docker-compose override — mount the same path into the container. Create
.ddev/docker-compose.mounts.yaml:
services:
web:
volumes:
- /Users/Shared/dev/craft-plugins:/Users/Shared/dev/craft-plugins
The mount path inside the container must match the host path exactly — Composer creates absolute symlinks that must resolve in both contexts. Replace /Users/Shared/dev/craft-plugins with your actual plugin directory path.
- Require the plugin:
ddev composer require vendor/plugin-handle:@dev
Common mistakes
- Using a Docker-internal path in
composer.json url — the path must be the host filesystem path, not /var/www/...
- Forgetting the volume mount —
ddev composer install succeeds but the symlink points nowhere inside the container
- Setting
"platform": {"php": "8.3"} in composer.json config — don't. DDEV handles the PHP version via .ddev/config.yaml. Platform overrides cause dependency resolution mismatches between host and container, and prevent DDEV from managing version upgrades cleanly.
Browser Debugging with Chrome DevTools MCP
The Chrome DevTools MCP server gives Claude Code direct browser access — inspect pages, read console logs, check network requests, capture screenshots, and interact with the DOM.
Installation
claude mcp add chrome-devtools -- npx chrome-devtools-mcp@latest
Quit and reopen Claude Code to load the new MCP server. Requires Chrome or Chromium running — the MCP server handles the DevTools Protocol connection automatically.
What it enables
| Capability | Use Case |
|---|
| Page inspection | Check rendered HTML, verify template output, inspect meta tags |
| Console logs | Catch Twig errors, JS exceptions, Garnish initialization failures |
| Network requests | Debug 404 assets, failed AJAX calls, Sprig/htmx swaps |
| DOM queries | Verify form markup, check field rendering, validate ARIA attributes |
| Screenshots | Visual verification of CP templates, responsive testing |
| Navigation & login | Authenticate into the CP, navigate to plugin settings/edit pages |
When to use
- Front-end template debugging — 404s, missing assets, broken layouts, SEOmatic meta tag verification
- CP template verification — plugin settings pages render correctly, editable tables work, slideout editors load
- Garnish/JS debugging — modals, drag-sort, disclosure menus initialize without console errors
- Sprig/htmx debugging — watch network requests for htmx swaps, verify response HTML fragments
- Auth flow testing — walk through login, registration, password reset end-to-end
- Read-only mode verification — confirm settings pages display correctly with
allowAdminChanges off
- Visual regression — screenshot before/after template changes
CP authentication pattern
DDEV sites are accessible at https://{project}.ddev.site. To inspect CP pages:
- Navigate to
https://{project}.ddev.site/{cpTrigger}
- Log in with admin credentials
- Navigate to the plugin/settings page to inspect
- Check console for JS errors, inspect DOM for correct markup
Project setup
The craft-project-setup skill offers to install Chrome DevTools MCP during scaffolding. If installed later, run claude mcp add chrome-devtools -- npx chrome-devtools-mcp@latest from the project root — this writes to the project's .claude.json, keeping it project-level.
Troubleshooting
ddev poweroff
ddev debug router
ddev debug capabilities
ddev delete --omit-snapshot
A general-config edit isn't taking effect (ddev-injected env var wins)
DDEV auto-injects Craft env vars (including PRIMARY_SITE_URL, and CRAFT_DB_*) into the container via .ddev/.env.web, and regenerates that file on every ddev start/restart unless disable_settings_management: true is set in .ddev/config.yaml. Because a real container environment variable beats a cms/.env dotenv value, and CRAFT_* env vars beat config/general.php (see the craftcms skill's config-bootstrap.md), a value you edit in .env or general.php can be silently overridden by what ddev injected.
Two symptoms and fixes:
- Wrong site URL / scheme.
PRIMARY_SITE_URL follows ddev's primary URL, whose scheme is often http; if Craft resolves an unexpected base URL, that injected var is the likely source. Point Craft's site URL at a differently-named env var (e.g. SITE_URL) in your site config so ddev's PRIMARY_SITE_URL doesn't shadow it, or override PRIMARY_SITE_URL deliberately.
- A
.env change reverts after restart. If you edited .ddev/.env.web by hand, it's regenerated on restart — put durable overrides in .ddev/config.yaml (web_environment) or set disable_settings_management: true to own the file yourself.
When a config value "won't change," check the resolved environment (ddev exec printenv | grep CRAFT_, and .ddev/.env.web) before editing PHP again.