drupal-fields

Installation
SKILL.md

Drupal Fields

Creating Fields (Drush — CLI First)

Always use drush field:create instead of manually creating field config files.

# Interactive (recommended first time)
drush field:create

# Non-interactive
drush field:create node article \
  --field-name=field_subtitle \
  --field-label="Subtitle" \
  --field-type=string \
  --field-widget=string_textfield \
  --is-required=0 \
  --cardinality=1
Installs
29
GitHub Stars
71
First Seen
Apr 17, 2026
drupal-fields — edutrul/drupal-ai