CS

DevOps Delivery Workflows

Three linked skills covering safe deployment, phased feature delivery, and low-ceremony tiny fixes for Drupal projects.
This is a real, installable Claude Code skill (workflow-tools). View source on GitHub →

What this skill does

workflow-tools is a set of three skills that match the delivery process to the size of the change, instead of applying one heavyweight process to everything:

  • deploy-workflow — pre-flight checks, backup, the correct update sequence (composer install, database updates, config import, cache rebuild), verification, and rollback plan for pushing to any environment, including multisite releases.
  • feature-workflow — a phased plan → implement → review → test → finalize process for a non-trivial change (new module, new route/form/plugin, schema change) — anything touching more than a couple of files.
  • tiny-fix — a low-ceremony path for trivial, low-risk changes (typos, CSS tweaks, single-line fixes with no logic impact), so those don’t get slowed down by the full feature process.

When to use it

  • Releasing or deploying to production, or “pushing changes live”
  • Starting a new feature or non-trivial change
  • Making a small, safe edit that shouldn’t trigger a full review cycle

Source

These are real, installable Claude Code skills. The maintained versions live in the workflow-tools plugin of the siva01c/claude-plugins marketplace repository. This page is a summary; the linked skills are the source of truth.