install-local

Build a plugin and install it into the local Clubhouse plugins directory.

2|2|Updated Feb 17, 2026
One-click install
npx skills add https://github.com/Agent-Clubhouse/Clubhouse-Workshop --skill install-local
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: install-local
Source: https://github.com/Agent-Clubhouse/Clubhouse-Workshop/tree/main/.claude/skills/install-local
Command: npx skills add https://github.com/Agent-Clubhouse/Clubhouse-Workshop --skill install-local

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Build a plugin locally and install it to the user's Clubhouse plugins directory for testing without publishing.

Core Features & Use Cases

  • Identify the plugin to install from provided arguments or available plugins
  • Build the plugin locally and verify the built output
  • Copy manifest.json and dist/main.js into the local Clubhouse plugins directory and validate installation

Quick Start

Run the install-local workflow to build the chosen plugin and copy it to your local Clubhouse plugins directory for testing.

Frequently Asked Questions about install-local

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

FAQPage Schema
How do I build and test a plugin locally before publishing?

To build and test a plugin locally, you can automate the npm install and build steps, then copy manifest.json and dist/main.js directly into the local Clubhouse plugins directory for validation.

How can I install a local plugin into the Clubhouse plugins directory on macOS?

Installing a local plugin into the Clubhouse plugins directory on macOS is done by running npm build steps and copying the manifest.json and dist/main.js files to the installation path with built-in validation.

Does the local plugin build process support Windows and Linux environments?

Yes, the local plugin build and install process supports Windows and Linux environments, automatically handling the npm install steps and file copying across different operating systems.

What files are required to install a plugin locally for testing?

Installing a plugin locally requires the manifest.json and dist/main.js files generated after running npm install and npm run build, which are then copied and validated in the target directory.

How do I select which plugin to build when multiple plugins exist in the repository?

You can select which plugin to build by providing the target plugin name through ARGUMENTS, or the process can automatically scan the plugins directory to identify and build the available plugin.

Why does my local Clubhouse plugin installation fail after building?

Local Clubhouse plugin installation may fail if the npm run build step does not generate the expected dist/main.js output, which the process validates before copying files to the install location.