v0.16.15
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 usesource: "./"withstrict: false - Per-plugin
agentsandskillsarrays are declared inline, pointing at the shared top-level directories - No symlinks involved — the repo's top-level
agents/andskills/are the only physical copy
Repository layout
- Removed the
backend/,frontend/, andskills-only/proxy directories along with their per-pluginplugin.json - README updated to reflect the flattened structure
Upgrade notes
- Existing users: run
/plugin update(orclaude plugin update) once. The version bump invalidates the previous cache and reinstalls a working layout. - New users:
claude plugin install <plugin>@claude-code-workflowsnow works on a clean macOS / Linux setup without manual workarounds.