Skip to content

v3.2.0 - Plugin Structure Fix

Choose a tag to compare

@lackeyjb lackeyjb released this 19 Oct 22:34
· 14 commits to main since this release

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 skills field and corrected author and repository formats 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