Skip to content

v0.16.15

Choose a tag to compare

@shinpr shinpr released this 29 Apr 23:01
· 172 commits to main since this release
905dbe8

Fix: fresh installs failing with "Path not found" errors

Restructures the marketplace so that fresh installs no longer end up with empty agents/ and skills/ directories. Previously, each plugin lived in a subdirectory (backend/, frontend/, skills-only/) with symlinks to the shared top-level agents/ and skills/. Claude Code's installer drops symlinks whose targets resolve outside the plugin root, which left every declared agent unresolvable on a clean install.

marketplace.json

  • All three in-repo plugins (dev-workflows, dev-workflows-frontend, dev-skills) now use source: "./" with strict: false
  • Per-plugin agents and skills arrays are declared inline, pointing at the shared top-level directories
  • No symlinks involved — the repo's top-level agents/ and skills/ are the only physical copy

Repository layout

  • Removed the backend/, frontend/, and skills-only/ proxy directories along with their per-plugin plugin.json
  • README updated to reflect the flattened structure

Upgrade notes

  • Existing users: run /plugin update (or claude plugin update) once. The version bump invalidates the previous cache and reinstalls a working layout.
  • New users: claude plugin install <plugin>@claude-code-workflows now works on a clean macOS / Linux setup without manual workarounds.