| name | sync-plugin-skills |
| description | Sync installed Claude Code plugin skills into the repo so they work in web environments. Run this from a local CLI session where plugins are installed.
|
Sync third-party plugin skills from the local plugin cache into this repo.
Instructions
- Run the sync script:
bash "$CLAUDE_PROJECT_DIR/.claude/skills/sync-plugin-skills/sync.sh"
-
If the script reports missing plugins, install them first using the /plugin install command shown in the output, then re-run the script.
-
If the script succeeds, review what was synced — it prints each skill and writes a manifest to .claude/skills/.vendored.json.
-
Stage the new/updated skill files and the manifest, commit, and push:
git add .claude/skills/
git commit -m "Sync vendored plugin skills for web environment"
git push -u origin "$(git rev-parse --abbrev-ref HEAD)"
- Report what was synced.
Dry run
To preview without writing files:
bash "$CLAUDE_PROJECT_DIR/.claude/skills/sync-plugin-skills/sync.sh" --dry-run