What's New
Converted from a Superpowers skill to a Claude Code plugin — the standard distribution format for sharing Claude Code extensions.
Plugin architecture
Restructured the project to follow the Claude Code plugin convention:
.claude-plugin/
└── plugin.json # Plugin manifest
skills/
└── awesome-epub-translator/ # Skill package (unchanged workflow)
├── SKILL.md
├── references/
└── rules/
The translation workflow (all 10 steps) is unchanged — this is purely a packaging/distribution upgrade.
Marketplace installation
Users can now install via the plugin marketplace in two commands:
/plugin marketplace add ludengz/claude-plugins
/plugin install awesome-epub-translator@ludengz-pluginsNo more manual file copying or claude skill add. Works across CLI, VS Code extension, and Desktop app.
Also in this release
- Rewrote README with clearer feature presentation and real-world benchmark section
- Added marketplace install instructions (Option A) alongside git clone (Option B)
- Updated project structure documentation to reflect plugin layout
Migration from v0.3.0
If you previously installed as a standalone skill, remove the old version:
rm -rf ~/.claude/skills/awesome_epub_translator_skill/Then install the plugin via marketplace (see above) or claude --plugin-dir ./.
Full Changelog: v0.3.0...v1.0.0