/feature-workflow
Phased workflow for delivering a Drupal feature or non-trivial change: plan, implement, review, test, finalize. Use when building a new custom module, adding a route/form/plugin, changing entity structure or schema, or any task touching more than a couple of files. Do NOT use
$ npx -y skills add siva01c/claude-plugins --skill feature-workflow --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/feature-workflow
Context preview
The summary Claude sees to decide when to auto-load this skill.
Phased workflow for delivering a Drupal feature or non-trivial change: plan, implement, review, test, finalize. Use when building a new custom module, adding a route/form/plugin, changing entity structure or schema, or any task touching more than a couple of files. Do NOT use
SKILL.md
feature-workflow.SKILL.mdname: feature-workflow
description: >
Phased workflow for delivering a Drupal feature or non-trivial change:
plan, implement, review, test, finalize. Use when building a new custom
module, adding a route/form/plugin, changing entity structure or schema,
or any task touching more than a couple of files. Do NOT use for typo
fixes, CSS tweaks, or single-line changes — use the tiny-fix skill
instead. Each phase has an exit condition; do not move to the next phase
until it is met.
Feature Workflow
A gated, phased procedure for non-trivial Drupal development tasks. The goal is that no step is skipped and no task is declared done without evidence (passing checks, exported config, green tests).
When this activates
- Building or extending a custom module or theme
- Adding routes, forms, controllers, services, or plugins
- Changing entity structure, fields, or database schema
- Any change spanning multiple files or subsystems
Task classification (do this first)
Before starting, classify the task and adjust rigor:
| Class | Signal | Rigor | |-------|--------|-------| | **tiny-fix** | Typo, comment, CSS tweak, single-line change | Stop — use the `tiny-fix` skill instead | | **standard** | New feature, refactor, multi-file change | All phases below | | **security-sensitive** | Touches routing, forms, user input, DB queries, permissions, file handling | All phases below + mandatory security pass in Phase 3 | | **schema-touching** | Changes entity definitions, fields, or DB schema | All phases below + update hook requirement in Phase 2 |
Phase 1 — Plan
1. Restate the requirement in one or two sentences. If ambiguous, ask before coding. 2. List the files and Drupal subsystems that will change (routing, services, config schema, hooks, plugins). 3. Identify config entities the change will create or modify — these must be exported before the task is done. 4. For multisite codebases: list every site that shares the affected module and note the impact.
**Exit condition:** a short written plan exists in the conversation. No code yet.
Phase 2 — Implement
1. Follow Drupal 11 coding standards. If the `drupal-module-development` skill (drupal-dev-tools plugin) is available, apply it; otherwise follow core conventions: dependency injection over `\Drupal::` static calls in OOP code, typed config schema for new config, `declare(strict_types=1)` where the codebase uses it. 2. **Schema-touching tasks:** every entity/field/schema change ships with a matching `hook_update_N()` or `hook_post_update_NAME()` in the same changeset. An update hook must be idempotent. 3. New config objects get a `config/schema/*.schema.yml` entry. 4. Keep scope: do not refactor code the task did not ask for. Note improvement opportunities instead of applying them.
**Exit condition:** the change is complete, `drush cr` succeeds, and the site loads without new PHP errors in the log (`drush watchdog:show --severity=Error`).
Phase 3 — Review
1. Run coding standards and static analysis if available in the project:
phpcs --standard=Drupal,DrupalPractice web/modules/custom/MODULE
phpstan analyse web/modules/custom/MODULE
2. If the `/drupal-dev-tools:drupal` audit command is installed, run it on the changed module. 3. **Security-sensitive tasks:** if the `owasp-asvs` skill (security-tools plugin) is available, walk the relevant checklist sections (V1 encoding/sanitization at minimum). If it is not installed, verify manually: parameterized queries only, `Xss::filter()` on user-supplied markup, access checks on every new route, CSRF protection on state-changing GET routes.
**Exit condition:** phpcs and phpstan pass (or their absence is noted), and for security-sensitive tasks the security pass is documented in the conversation.
Phase 4 — Test
1. Run existing tests for the affected module: `phpunit` (via DDEV: `ddev exec phpunit ...`). 2. New behavior gets at least one kernel or functional test when the project has a test suite. If the project has no test infrastructure, state this explicitly instead of silently skipping. 3. Manually verify the acceptance criteria from Phase 1.
**Exit condition:** tests pass, or the absence of a test suite is explicitly recorded.
Phase 5 — Finalize
1. Export configuration: `drush cex` — review the diff; only intended changes may be present. 2. Stage the complete changeset: code + update hooks + exported config + tests together. 3. Write a commit message describing what and why. Follow the project's convention (e.g. conventional commits). 4. Summarize: what changed, what evidence exists (checks run, tests passed), and any follow-ups noted in Phase 2.
**Exit condition:** config export is clean, changeset is coherent, summary delivered.
Hard rules
- Never claim a phase is complete without the evidence its exit condition requires.
- Never skip Phase 3 for security-sensitive tasks.
- Never modify production databases or run destructive drush commands (`sql-drop`, `pmu`, `entity:delete`) as part of this workflow without explicit user confirmation.
Read more
name: feature-workflow description: > Phased workflow for delivering a Drupal feature or non-trivial change: plan, implement, review, test, finalize. Use when building a new custom module, adding a route/form/plugin, changing entity structure or schema, or any task touching more than a couple of files. Do NOT use for typo fixes, CSS tweaks, or single-line changes — use the tiny-fix skill instead. Each phase has an exit condition; do not move to the next phase until it is met.
Feature Workflow
A gated, phased procedure for non-trivial Drupal development tasks. The goal is that no step is skipped and no task is declared done without evidence (passing checks, exported config, green tests).
When this activates
- Building or extending a custom module or theme
- Adding routes, forms, controllers, services, or plugins
- Changing entity structure, fields, or database schema
- Any change spanning multiple files or subsystems
Task classification (do this first)
Before starting, classify the task and adjust rigor:
| Class | Signal | Rigor | |-------|--------|-------| | **tiny-fix** | Typo, comment, CSS tweak, single-line change | Stop — use the `tiny-fix` skill instead | | **standard** | New feature, refactor, multi-file change | All phases below | | **security-sensitive** | Touches routing, forms, user input, DB queries, permissions, file handling | All phases below + mandatory security pass in Phase 3 | | **schema-touching** | Changes entity definitions, fields, or DB schema | All phases below + update hook requirement in Phase 2 |
Phase 1 — Plan
1. Restate the requirement in one or two sentences. If ambiguous, ask before coding. 2. List the files and Drupal subsystems that will change (routing, services, config schema, hooks, plugins). 3. Identify config entities the change will create or modify — these must be exported before the task is done. 4. For multisite codebases: list every site that shares the affected module and note the impact.
**Exit condition:** a short written plan exists in the conversation. No code yet.
Phase 2 — Implement
1. Follow Drupal 11 coding standards. If the `drupal-module-development` skill (drupal-dev-tools plugin) is available, apply it; otherwise follow core conventions: dependency injection over `\Drupal::` static calls in OOP code, typed config schema for new config, `declare(strict_types=1)` where the codebase uses it. 2. **Schema-touching tasks:** every entity/field/schema change ships with a matching `hook_update_N()` or `hook_post_update_NAME()` in the same changeset. An update hook must be idempotent. 3. New config objects get a `config/schema/*.schema.yml` entry. 4. Keep scope: do not refactor code the task did not ask for. Note improvement opportunities instead of applying them.
**Exit condition:** the change is complete, `drush cr` succeeds, and the site loads without new PHP errors in the log (`drush watchdog:show --severity=Error`).
Phase 3 — Review
1. Run coding standards and static analysis if available in the project:
phpcs --standard=Drupal,DrupalPractice web/modules/custom/MODULE phpstan analyse web/modules/custom/MODULE
2. If the `/drupal-dev-tools:drupal` audit command is installed, run it on the changed module. 3. **Security-sensitive tasks:** if the `owasp-asvs` skill (security-tools plugin) is available, walk the relevant checklist sections (V1 encoding/sanitization at minimum). If it is not installed, verify manually: parameterized queries only, `Xss::filter()` on user-supplied markup, access checks on every new route, CSRF protection on state-changing GET routes.
**Exit condition:** phpcs and phpstan pass (or their absence is noted), and for security-sensitive tasks the security pass is documented in the conversation.
Phase 4 — Test
1. Run existing tests for the affected module: `phpunit` (via DDEV: `ddev exec phpunit ...`). 2. New behavior gets at least one kernel or functional test when the project has a test suite. If the project has no test infrastructure, state this explicitly instead of silently skipping. 3. Manually verify the acceptance criteria from Phase 1.
**Exit condition:** tests pass, or the absence of a test suite is explicitly recorded.
Phase 5 — Finalize
1. Export configuration: `drush cex` — review the diff; only intended changes may be present. 2. Stage the complete changeset: code + update hooks + exported config + tests together. 3. Write a commit message describing what and why. Follow the project's convention (e.g. conventional commits). 4. Summarize: what changed, what evidence exists (checks run, tests passed), and any follow-ups noted in Phase 2.
**Exit condition:** config export is clean, changeset is coherent, summary delivered.
Hard rules
- Never claim a phase is complete without the evidence its exit condition requires.
- Never skip Phase 3 for security-sensitive tasks.
- Never modify production databases or run destructive drush commands (`sql-drop`, `pmu`, `entity:delete`) as part of this workflow without explicit user confirmation.
A curated collection of Claude Code plugins for Drupal development, security, and deployment. Each plugin covers one topic — Drupal itself, DDEV, Docker, CI/CD, git workflows, and security verification — so you install only what you need.
Other skills on claude-plugins.
- /github-actions
Use this skill when authoring or debugging GitHub Actions workflows (.github/workflows/*.yml) — e.g. "add CI for this Drupal project on GitHub", "run phpcs/phpstan/phpunit on pull requests", "cache composer dependencies", "deploy over SSH when main is pushed", "why didn't my
Open skill - /gitlab-ci
Use this skill when authoring or debugging GitLab CI/CD pipelines (.gitlab-ci.yml) — e.g. "add a CI pipeline for this Drupal project", "run phpcs/phpstan/phpunit in GitLab CI", "deploy with drush from a pipeline", "why is my job not running", "cache composer dependencies", or
Open skill - /drupal-ddev-operations
Use for operational Drupal 11 workflows in DDEV environments, including safe updates, backup-first procedures, and troubleshooting commands.
Open skill - /docker-compose
Use this skill when authoring or editing Docker Compose files (compose.yaml / docker-compose.yml), running multi-container stacks, or containerizing a Drupal/PHP application — e.g. "set up a local Drupal stack with nginx and MariaDB", "add Redis to my compose file", "why won't
Open skill - /docker-model
Use this skill when running local AI models with Docker Model Runner — the `docker model` CLI — e.g. "run an LLM locally with Docker", "pull a model from the ai/ namespace", "connect my app to a local model", "use a local model as backend for the Drupal AI module", or when
Open skill - /drupal-module-development
Use when creating or extending Drupal 11 custom modules, including scaffolding, service architecture, and dependency injection best practices.
Open skill

