From drupal-boost
Scaffold a Drupal Recipe for automating module installation and configuration.
npx claudepluginhub abderrahimghazali/drupal-boost<recipe purpose># Drupal Recipe Scaffolding You are creating a Drupal Recipe. Follow these steps: ## Step 1: REQUIREMENTS Ask the user: - What is the recipe's purpose? (e.g., "Set up a blog", "Configure media handling") - What modules should be installed? - What themes should be installed/set as default? - What configuration should be applied? - Should this recipe depend on other recipes? ## Step 2: SCAFFOLD Create the recipe directory: ### recipe.yml structure: ## Step 3: VALIDATE Check that: - All referenced modules exist in composer.json - All referenced recipes exist - Config actions use val...
You are creating a Drupal Recipe. Follow these steps:
Ask the user:
Create the recipe directory:
recipes/RECIPE_NAME/
├── recipe.yml
└── config/ # Optional: config files to import
name: 'Recipe Name'
description: 'What this recipe sets up.'
type: 'Category'
install:
- module_one
- module_two
recipes:
- core/recipes/standard # Optional: base recipes
config:
actions:
# Create or update config as needed
Check that:
drush recipe recipes/RECIPE_NAMEProvide:
drush recipe recipes/RECIPE_NAME