Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Um comando direto ignora o prompt de revisão. Verifique a origem antes de executá-lo.
Instruções da origem · Visualização somente leitura
name
ecos-plugin-management
description
Use when installing, configuring, or validating Claude Code plugins. Trigger with plugin install, update, or validation requests.
user-invocable
false
license
Apache-2.0
compatibility
Requires access to Claude Code CLI, plugin directories, and understanding of plugin manifest format and hooks configuration. Requires AI Maestro installed.
metadata
{"author":"Emasoft","version":"1.0.0"}
context
fork
agent
ecos-main
workflow-instruction
Step 4
procedure
proc-create-team
Emasoft Chief of Staff - Plugin Management Skill
Overview
Plugin management enables the Chief of Staff to install, configure, and maintain Claude Code plugins across projects. This skill teaches you how to install plugins from marketplaces, configure local plugin directories, manage plugin settings, and validate plugin installations.
Learn PROCEDURE 1: Install plugin from marketplace
Learn PROCEDURE 2: Configure local plugin directory
Learn PROCEDURE 3: Validate plugin installation
Learn PROCEDURE 4: Manage plugins on remote agents
Practice adding a marketplace
Practice installing a plugin
Practice setting up a local plugin
Practice validating a plugin
Practice installing plugin on remote agent
Practice restarting agent after plugin install
Examples
Example 1: Installing from Marketplace
# Step 1: Add marketplace (first time only)
claude plugin marketplace add https://github.com/Emasoft/emasoft-plugins
# Step 2: Install plugin
claude plugin install perfect-skill-suggester@emasoft-plugins
# Step 3: Verify installation
claude plugin list | grep perfect-skill-suggester
# Step 4: RESTART Claude Code (required!)# Exit and relaunch claude
Example 2: Local Plugin Development
# Launch Claude Code with local plugin
claude --plugin-dir {baseDir}/OUTPUT_SKILLS/my-plugin
# Launch with multiple local plugins
claude --plugin-dir /path/to/plugin-a --plugin-dir /path/to/plugin-b
Detailed step-by-step runbook for installing a plugin from a registered marketplace, including marketplace registration, installation, and restart verification.
When to Use: Setting up new agent, adding capabilities, installing before team creation, updating versions
4.2.3 Automatic restart - Agent auto-restarts after install
4.3 Remote plugin operations - Other management tasks
4.3.1 List plugins - View agent's installed plugins
4.3.2 Enable/disable - Toggle plugins remotely
4.3.3 Uninstall - Remove plugins remotely
4.3.4 Clean cache - Fix corrupt installations
4.4 Examples - Remote management scenarios
4.5 Troubleshooting - Remote management issues
Example 5: Install Plugin on Remote Agent
Use the ai-maestro-agents-management skill for each step:
Add marketplace to remote agent backend-api with source github:Emasoft/emasoft-plugins (auto-restarts agent)
Install pluginperfect-skill-suggester on agent backend-api (auto-restarts agent)
List plugins on agent backend-api to verify installation
Uninstall pluginmy-old-plugin from agent backend-api if no longer needed
Clean plugin cache on agent backend-api if installation is corrupt
Verify: plugin appears in the agent's plugin list after installation.
Example 6: Restart Agent After Plugin Changes
After installing on the current agent (self), a manual restart is required (exit and relaunch Claude Code).
For remote agents, restart is automatic after plugin operations. If a manual restart is needed, use the ai-maestro-agents-management skill to restart agent backend-api.
Verify: agent comes back online with the new plugin active.
Key Takeaways
Always restart after install - Claude Code caches plugin state
Use --plugin-dir for development - Fastest local testing method
Validate before publishing - Catch errors early
Components at root, not in .claude-plugin - Common structure mistake
Scripts must be executable - chmod +x for hook scripts
Remote agents auto-restart - the ai-maestro-agents-management skill handles restart for remote installs
Current agent needs manual restart - Exit and relaunch claude for self-install
Remote Plugin Management Reference
All remote plugin operations are performed using the ai-maestro-agents-management skill. Specify the target agent and the operation:
Operation
Description
List marketplaces
List registered marketplaces on a remote agent
Add marketplace
Register a marketplace on a remote agent
Update marketplace
Refresh marketplace cache on a remote agent
Remove marketplace
Unregister a marketplace from a remote agent
Install plugin
Install a plugin from a marketplace on a remote agent
Uninstall plugin
Remove a plugin from a remote agent
List plugins
List installed plugins on a remote agent
Enable plugin
Enable a disabled plugin on a remote agent
Disable plugin
Disable a plugin on a remote agent without uninstalling
Validate plugin
Validate a plugin's structure on a remote agent
Clean cache
Clear corrupt plugin cache on a remote agent
Reinstall plugin
Uninstall and reinstall a plugin on a remote agent
Verify: after each operation, confirm the expected state using the list plugins operation.