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…
Use when auditing Drupal 11 custom modules/themes for security issues such as unsafe input handling, XSS risks, SQL injection, and access control gaps.
$ npx -y skills add siva01c/claude-plugins --skill drupal-security-review --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/drupal-security-reviewContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when auditing Drupal 11 custom modules/themes for security issues such as unsafe input handling, XSS risks, SQL injection, and access control gaps.
name: drupal-security-review description: Use when auditing Drupal 11 custom modules/themes for security issues such as unsafe input handling, XSS risks, SQL injection, and access control gaps.
Use this skill to perform focused security reviews for Drupal 11 custom modules and themes.
1. **Input handling**: Validate and sanitize all external input. 2. **Output escaping**: Escape output in Twig and PHP render logic. 3. **Database safety**: Use query builder or placeholders in all SQL operations. 4. **Access control**: Confirm route, entity, and operation permissions are enforced. 5. **Secrets and config**: Ensure credentials are never committed and sensitive config is protected.
rg "(var_dump|dpm\(|kint\()" web/modules/custom web/themes/custom rg "\$_(GET|POST|REQUEST)" web/modules/custom web/themes/custom
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.
Use this skill when authoring or debugging GitHub Actions workflows (.github/workflows/*.yml) — e.g. "add CI for this Drupal project on GitHub", "run…
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…
Use for operational Drupal 11 workflows in DDEV environments, including safe updates, backup-first procedures, and troubleshooting commands.
Use this skill when authoring or editing Docker Compose files (compose.yaml / docker-compose.yml), running multi-container stacks, or containerizing a…
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…
Use when creating or extending Drupal 11 custom modules, including scaffolding, service architecture, and dependency injection best practices.