claude-plugin-converter

Convert Claude Code plugins to Hermes plugins via two-phase analysis and generation.

15|3|Updated Jul 8, 2026
One-click install
npx skills add https://github.com/moonlight-lupin/agent-skills --skill claude-plugin-converter
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: claude-plugin-converter
Source: https://github.com/moonlight-lupin/agent-skills/tree/main/agent-ops/claude-plugin-converter
Command: npx skills add https://github.com/moonlight-lupin/agent-skills --skill claude-plugin-converter

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires python, and includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill converts Claude Code plugins into self-contained Hermes plugins, enabling users to leverage Claude plugins with Hermes Agent.

Core Features & Use Cases

  • Plugin Conversion: Converts Claude plugins to Hermes plugins with a two-phase workflow (Discovery and Conversion).
  • Discovery: Analyzes Claude plugins to determine what can and cannot be converted.
  • Conversion: Generates a complete Hermes plugin directory from the Claude plugin.
  • Use Case: A user has a Claude Code plugin they want to use with Hermes Agent. They run the Skill to convert the plugin and integrate it with Hermes.

Quick Start

Run the discovery script:

python3 {SKILL_DIR}/scripts/analyze.py <claude_plugin_dir> --output <output_dir>/analysis.json

After user approval, run the conversion script:

python3 {SKILL_DIR}/scripts/convert.py <claude_plugin_dir> --analysis <output_dir>/analysis.json --output <output_dir>/<plugin_name>

Frequently Asked Questions about claude-plugin-converter

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

FAQPage Schema
How do I convert a Claude Code plugin to a Hermes plugin?

To convert a Claude Code plugin to a Hermes plugin, run the analyze script to assess convertibility, then run the convert script to generate a complete Hermes plugin directory from the source.

What is the workflow for converting Claude plugins to Hermes plugins?

The plugin conversion workflow involves two phases: Discovery, which analyzes Claude plugin components for convertibility, and Conversion, which generates the self-contained Hermes plugin directory after user approval.

Do I need Python to convert Claude Code plugins for Hermes Agent?

Yes, Python is required to execute the analyze and convert scripts that drive the two-phase workflow for transforming Claude Code plugins into self-contained Hermes plugins.

Can I analyze a Claude plugin before converting it to Hermes format?

Yes, the Discovery phase analyzes Claude plugin components to determine exactly what can and cannot be converted, outputting an analysis JSON file for user approval before final conversion.

What gets generated when converting a Claude plugin to a Hermes plugin?

Converting a Claude plugin generates a complete, self-contained Hermes plugin directory from the source plugin, allowing immediate integration with Hermes Agent.

What are the limitations of converting Claude Code plugins to Hermes?

Limitations arise during the Discovery phase, which identifies specific Claude plugin components that cannot be converted, ensuring users know what will be excluded from the final Hermes plugin directory.