v3.2.0 - Plugin Structure Fix
What's Changed
This release fixes the plugin structure to properly comply with Claude Code's plugin schema requirements.
Structural Changes
- Fixed plugin.json schema - Removed invalid
skillsfield and correctedauthorandrepositoryformats to match Claude Code validation requirements - Reorganized directory structure - Moved skill files into
skills/playwright-skill/subdirectory following standard Claude Code plugin conventions - Updated documentation - README now reflects the new nested directory structure for both manual and plugin installations
Installation
Via Plugin System (Recommended):
```bash
/plugin marketplace add lackeyjb/playwright-skill
/plugin install playwright-skill@playwright-skill
cd ~/.claude/plugins/marketplaces/playwright-skill/skills/playwright-skill
npm run setup
```
Manual Installation:
```bash
cd ~/.claude/skills
git clone https://github.com/lackeyjb/playwright-skill.git
cd playwright-skill/skills/playwright-skill
npm run setup
```
Breaking Changes
- Directory structure has changed - manual installers should reinstall or adjust paths
- Skill files now located in `skills/playwright-skill/` subdirectory
Bug Fixes
- Fixed plugin.json validation errors preventing installation via Claude Code plugin system
- Corrected plugin structure to match official Claude Code schema
Full Changelog: v3.1.0...v3.2.0