Get a list of plugins
$ wp plugin list
List active plugins on the site.
$ wp plugin list --status=active --format=json
List plugins on each site in a network.
$ wp site list --field=url | xargs -I % wp plugin list --url=%
Activate plugin
$ wp plugin activate hello-dolly
Deactivate plugin
$ wp plugin deactivate hello-dolly
Delete plugin
$ wp plugin delete hello-dolly
Install the latest version from wordpress.org and activate
$ wp plugin install bbpress --activate