Deploy workflow
Skill siva01c/claude-plugins/workflow-tools/skills/deploy-workflow
Claude Code plugin marketplace: Drupal development, DDEV, Docker, CI/CD, git workflows, and OWASP ASVS security
npx -y skills add siva01c/claude-plugins --skill deploy-workflowAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 17 stars17 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Safe deployment workflow for Drupal 10/11 sites: pre-flight checks, backup, the correct update sequence (composer install, database updates, config import, cache rebuild), verification, and rollback plan. Use when deploying to any environment, releasing to production, or when the user asks to "push changes live", "update the server", or run a release. Also use for multisite releases where each site needs its own database update pass.
SKILL.md
4.2 KB, as published. Nobody here has run it
Deploy Workflow
Deployment of a Drupal site has a fixed order of operations. Skipping a step or reordering it produces failures that only surface at runtime. This skill enforces the sequence and its preconditions.
When this activates
- Deploying a Drupal codebase to staging or production
- Running a release on a multisite platform
- Applying core or contrib updates on a server
- The user asks to push changes live or update an environment
Phase 0 — Pre-flight (before touching the target)
- Confirm the target: which environment, which drush alias or SSH host. Never assume production.
- Verify the working tree being deployed is clean and on the intended tag/branch.
- Check config status on the target:
drush config:status. Unexpected overrides on the target mean someone changed config in the UI — resolve before deploying, or the import will silently destroy their changes. - Maintenance window: for schema-changing releases, ask whether maintenance mode is required (
drush state:set system.maintenance_mode 1).
Exit condition: target confirmed by the user, config status reviewed.
Phase 1 — Backup
drush @TARGET sql:dump --result-file=auto --gzip
Also snapshot the current codebase reference (deployed tag/commit) so rollback is a known state, not a guess.
Exit condition: a restorable database dump exists and its location is recorded.
Phase 2 — Deploy sequence
The canonical order:
git fetch && git checkout TAG # or the platform's deploy mechanism
composer install --no-dev --optimize-autoloader
drush deploy # = updb + cim + cr + deploy:hook (Drush 10.3+)
If drush deploy is not available or the project needs explicit control:
drush updb -y # database updates first — update hooks may rely on old config
drush cim -y # import configuration
drush cr # rebuild caches
drush deploy:hook -y # post-deploy hooks, if used
Notes:
- If an update hook depends on new config being present, that is a design smell — prefer
hook_post_updateorhook_deploy_NAME(); do not hand-reorder cim before updb as a workaround without understanding why. - Multisite: run the update sequence per site:
drush -l SITE updb -y && drush -l SITE cim -y && drush -l SITE crfor every site sharing the codebase. A release is not done until every site has been updated.
Exit condition: every command exited 0. A non-zero exit stops the workflow — do not continue past a failed updb or cim.
Phase 3 — Verify
drush config:status— must report no differences.drush core:requirements --severity=2— no new errors.drush watchdog:show --severity=Error --count=20— no new runtime errors.- Load the front page and one or two critical paths (login, key form) — HTTP 200 and visually sane.
- Disable maintenance mode if it was enabled.
Exit condition: all checks pass. If any fails, go to Phase 4 instead of debugging live under pressure — unless the fix is obvious and low-risk.
Phase 4 — Rollback (only when verification fails)
- Restore the codebase to the previous tag/commit.
- Restore the Phase 1 database dump.
drush cr, re-verify, and communicate the failed release.
Hard rules
- No deployment without a Phase 1 backup. No exceptions, including "small" releases.
- Never run
drush sql:drop,sql:synctoward production, or destructive commands against the production alias as part of a deploy. - Never mark a multisite release complete while any site is un-updated.
- If the DDEV-based local flow is what the user needs (local update, not a server deploy), prefer the
drupal-ddev-operationsskill (ddev-tools plugin) when available.