The most comprehensive Drupal 11 development toolkit for Claude Code. Module scaffolding, theme development, configuration management, migration, security auditing, testing, deployment, and more.
Designs Drupal 11 module and feature architectures. Proposes service structure, plugin choices, entity design, and API patterns with implementation blueprints. Use when designing a new feature, choosing between implementation approaches, or planning module architecture. Design a custom content entity for tracking user…
Deep Drupal codebase analysis agent. Traces service definitions, plugin discovery, routing, hook implementations, entity relationships, and module dependencies. Use when exploring how a Drupal feature works, understanding service wiring, or tracing execution paths through Drupal core or contrib modules. Analyze how…
Analyzes source data and designs Drupal migration strategies. Maps source schemas to Drupal entities, identifies required process plugins, and creates migration YAML configurations. Use when planning a data migration into Drupal. Plan a migration from a legacy MySQL database to Drupal content types Analyze CSV files…
Reviews Drupal code for coding standards compliance, Drupal API best practices, deprecated API usage, and Drupal-specific anti-patterns. Use after writing Drupal code to ensure it follows conventions and avoids common pitfalls. Review the custom module I just created for coding standards issues Check my entity access…
Performs deep security audits of Drupal code checking for XSS vulnerabilities, SQL injection, access bypass, CSRF issues, insecure file handling, and permission misconfigurations. Use when reviewing security or before deploying to production. Run a security audit on all custom modules before production deployment…
Runs and analyzes Drupal tests, identifies failures, and suggests fixes. Handles PHPUnit (unit, kernel, functional, browser), PHPStan, PHPCS, and Drupal Check. Use when running tests, debugging test failures, or setting up test infrastructure. Run PHPUnit tests for my custom module and fix any failures Set up PHPStan…