This repository is structured as a standalone Claude Code plugin named eigi.
It connects Claude Code to the hosted Eigi MCP server and adds Eigi conversation prompt rules as a Claude Code skill.
It also includes .claude-plugin/marketplace.json so the same repository can be added directly as a marketplace without introducing an extra plugin folder.
eigi-plugins/
├── .claude-plugin/
│ └── plugin.json
├── .mcp.json
├── README.md
└── skills/
└── conversation-rules/
└── SKILL.md
- MCP server:
https://mcp.eigi.ai/mcp - Skill:
/eigi:conversation-rules
From this repository root, validate the plugin:
claude plugin validate .Load the plugin directly during development:
claude --plugin-dir .After Claude Code starts, reload plugin components if needed:
/reload-plugins
Then use the skill:
/eigi:conversation-rules
Check the MCP connection from inside Claude Code:
/mcp
This repo works in two ways:
- As a direct plugin source for local development with
claude --plugin-dir . - As a self-hosted marketplace repo with
/plugin marketplace add eigi-ai/eigi-plugins
To install from the GitHub marketplace repo:
/plugin marketplace add eigi-ai/eigi-plugins
/plugin install eigi@eigi-plugins
For Anthropic's community marketplace submission:
- Push this repository to GitHub.
- Run
claude plugin validate .locally. - Submit the plugin through the Claude plugin submission form.
- Wait for automated validation and safety review.
- The Eigi MCP server uses Claude Code's remote HTTP MCP transport.
- If the MCP server later requires authentication, add plugin
userConfigto.claude-plugin/plugin.jsonand reference it from.mcp.jsonheaders. - Agents and hooks are intentionally not included in this first scaffold. They can be added later under
agents/andhooks/at the plugin root.