A command line tool for interfacing with Drupal.org. Uses the Drupal.org REST API.
- PHP 8.1 or higher, with cURL support
- Git - Currently required to apply and create patches. Very useful for contributing patches back to an issue.
-
Download the
drupalorg.pharfile from the latest release.curl -OL https://github.com/mglaman/drupalorg-cli/releases/latest/download/drupalorg.phar
-
Rename the file to
drupalorg, ensure it is executable, and move it into a directory in your PATH (useecho $PATHto see your options).chmod +x drupalorg.phar mv drupalorg.phar /usr/local/bin/drupalorg
-
Run
drupalorgand verify you can see the list of available commands.
Use the following command to install the command line tool via Composer:
composer global require mglaman/drupalorg-cli
drupalorg comes with completion support for all commands, excluding options.
To activate it, either source the completion file or add it to the system-wide completion directory, normally /etc/bash_completion.d/.
In your .bashrc (or .profile) add
source [...]/vendor/mglaman/drupalorg-cli/drupalorg-cli-completion.bash
drupalorg comes with namespace-aware completion out of the box. If jq is installed, the Zsh completion script upgrades itself to use drupalorg list --format=json once per shell session and can complete:
- commands and namespace-prefixed commands
- documented long and short options (i.e. flags)
- command aliases such as
isandpi - positional argument placeholders such as
<nid>
In those placeholders, angle brackets mean the argument is required, and square brackets mean it is optional. For example, <nid> is required and [nid] is optional.
Without jq, the script falls back to the original command and namespace completion behavior.
Copy the Zsh completion file to ~/.zsh/completions/_drupalorg:
mkdir -p ~/.zsh/completions
curl -L https://raw.githubusercontent.com/mglaman/drupalorg-cli/refs/heads/main/drupalorg-cli-completion.zsh -o ~/.zsh/completions/_drupalorgIn your ~/.zshrc add (if not already present):
fpath=(~/.zsh/completions $fpath)
autoload -Uz compinit
compinitRestart your shell or run source ~/.zshrc.
Automatic updating is not yet supported. You will need to manually download new releases.
Use the 'list' command to see available commands.
drupalorg list
Available commands:
help Displays help for a command
list Lists commands
cache
cache:clear (cc) Clears caches
issue
issue:apply Applies the latest patch from an issue.
issue:branch Creates a branch for the issue.
issue:interdiff Generate an interdiff for the issue from local changes.
issue:link Opens an issue
issue:patch Generate a patch for the issue from committed local changes.
maintainer
maintainer:issues (mi) Lists issues for a user, based on maintainer.
maintainer:release-notes (rn, mrn) Generate release notes.
project
project:issues (pi) Lists issues for a project.
project:kanban Opens project kanban
project:link Opens project page
project:release-notes (prn) View release notes for a release
project:releases Lists available releases
skill
skill:install Installs all drupalorg-cli agent skills into .claude/skills/ in the current directory.
If you want to use this to generate patches that you can contribute back to a Drupal project, it's best to work within a cloned repo of that project. To get instructions for cloning a project's repo, visit the "Version Control" tab on the project page.
From within the directory of the project we're working on:
drupalorg issue:apply [issue number]- Create a new branch for the given issue, apply the latest patch on the issue to the new branch, then commit the changes locally.drupalorg issue:patch [issue number]- Create a new patch for the given issue from the changes committed locally.
- Clone the repository
- In the drupalorg-cli directory, run
composer install - Run the script with
./drupalorg