superpowers-sage:install-plugin

Install WordPress plugins into Roots Bedrock projects via Lando and Composer.

13|Updated Mar 19, 2026
One-click install
npx skills add https://github.com/hekivo/superpowers-sage --skill superpowers-sage-install-plugin-hekivo
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: superpowers-sage:install-plugin
Source: https://github.com/hekivo/superpowers-sage/tree/main/skills/install-plugin
Command: npx skills add https://github.com/hekivo/superpowers-sage --skill superpowers-sage-install-plugin-hekivo

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Installing WordPress plugins in Bedrock projects often becomes error-prone when you mix theme vs project composer contexts, rely on ad-hoc CLI commands, or fail to register plugin packages correctly for Composer to fetch and WordPress to recognize.

Core Features & Use Cases

  • Composer-only plugin installs in Bedrock: Uses lando composer require at the correct project-root composer.json to install plugins from WP Packagist sources.
  • Handles multiple input formats: Accepts a plugin slug, a composer package name, or a local ZIP file (including mu-plugins) and wires repository metadata when needed.
  • Optional activation verification: Can activate the plugin with lando wp plugin activate after installation, and always verifies via composer show and lando wp plugin list.
  • Use case: You have a Bedrock project and need to install a new plugin from wp-packages.org (or a local ZIP you received from a vendor) and ensure it’s discoverable by WordPress without using wp plugin install.

Quick Start

Ask the skill to install the plugin inside your Lando Bedrock project using Composer: “Install-plugin for my Bedrock project from a ZIP at /path/to/my-plugin.zip and activate it after install.”

Frequently Asked Questions about superpowers-sage:install-plugin

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I install a WordPress plugin in a Bedrock project using Composer?▼

Run lando composer require with the plugin slug or package name from the project root composer.json, then verify the installation using lando composer show and lando wp plugin list.

Can I install a local plugin ZIP file into a Bedrock setup via Lando?▼

Yes, the skill handles local plugin ZIP files and mu-plugins by wiring repository metadata into the root composer.json and installing the package via Lando.

Do I need to use Lando to run Composer commands in a Bedrock project?▼

Yes, the skill enforces running composer via lando to guarantee the correct project-root composer.json context and ensure WordPress can detect the installed plugins.

What is the best way to verify a Bedrock plugin installation after using Composer?▼

Verify plugin installation by running lando composer show to confirm the package exists and lando wp plugin list to ensure WordPress detects the newly installed plugin.

How do I activate a plugin after installing it via Composer in Bedrock?▼

After installing via Composer, optionally activate the plugin by running lando wp plugin activate, ensuring it is operational within your WordPress site.

Why should I avoid using wp plugin install for Bedrock projects?▼

Using wp plugin install bypasses the root composer.json, preventing Composer from fetching and registering plugin packages correctly and causing WordPress recognition issues in Bedrock.