Official plugin marketplace for Envio's Claude Code plugins. These plugins enhance Claude Code with specialized knowledge and capabilities for Envio development.
| Plugin | Description | Version |
|---|---|---|
| envio-hyperindex | HyperIndex blockchain indexer development | 1.0.0 |
Add this marketplace to Claude Code:
/plugin marketplace add enviodev/envio-pluginsThis makes all Envio plugins available for installation.
Once the marketplace is added, install plugins:
/plugin install envio-hyperindex@envio-pluginsOr browse interactively:
/pluginClone and add locally for development:
git clone https://github.com/enviodev/envio-plugins.git
cd envio-plugins
# Add local marketplace
/plugin marketplace add ./envio-pluginsOnce installed, plugins activate automatically based on context. For example:
- HyperIndex Development: Ask Claude to "create an indexer", "write event handlers", or mention HyperIndex/Envio
- Subgraph Migration: Ask Claude to "migrate from subgraph" or "convert thegraph indexer"
/envio-hyperindex:init Initialize a new HyperIndex project
| Skill | Triggers |
|---|---|
| HyperIndex Development | "create indexer", "event handlers", "config.yaml", "schema.graphql" |
| Subgraph Migration | "migrate from subgraph", "convert thegraph", "subgraph to hyperindex" |
| Agent | Purpose |
|---|---|
| HyperIndex Helper | Debug indexers, explain patterns, review code |
envio-plugins/
├── .claude-plugin/
│ └── marketplace.json # Marketplace registry
├── plugins/
│ └── envio-hyperindex/ # Individual plugin
│ ├── .claude-plugin/
│ │ └── plugin.json
│ ├── skills/
│ ├── commands/
│ ├── agents/
│ └── README.md
├── README.md
├── CONTRIBUTING.md
└── LICENSE
We welcome contributions! See CONTRIBUTING.md for guidelines.
- Create plugin directory under
plugins/ - Add required
.claude-plugin/plugin.jsonmanifest - Add skills, commands, or agents as needed
- Update this README's plugin table
- Submit a pull request
Source Available - see LICENSE for details.