What problem does it solve?
Creating a new Drupal AI Automator Type plugin usually takes a lot of repetitive setup work to define IDs, base-class inheritance, applicability (field_rule), and the required method structure.
Core Features & Use Cases
- Automator scaffolding: Generates the plugin skeleton using the proper Drush generator so the new type is discoverable by the Drupal AI Automators module.
- Correct base-class selection: Guides you to choose
RuleBase (AI provider–driven) or ExternalBase (deterministic), including recommended convenience subclasses like SimpleTextChat, ComplexTextChat, NumericRule, or TextToImage.
- Implementation-ready structure: Produces the class with the correct base inheritance and method stubs so you can focus on
generate(), verifyValue(), and storeValues() logic.
Quick Start
Use the create-automator-type skill to generate a new automator type plugin by running drush generate plugin:ai:automator-type and then implementing generate(), verifyValue(), and storeValues() in the created class.