From agent-flow
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.
npx claudepluginhub timgranlundmarsden/claude-agent-flowThis skill uses the workspace's default tool permissions.
Sync third-party plugin skills from the local plugin cache into this repo.
Installs, updates, lists, and removes Claude Code skills from GitHub repos/subdirs or .skill zips. Supports user-global and project-local locations.
Syncs locally developed Skills to ClawHub platform via CLI. Handles batch or single skill sync with .gitignore filtering, whitelisting, semantic version checks, license validation (MIT only), and dry-run previews. Use for publishing, incremental updates, or status checks.
Share bugs, ideas, or general feedback.
Sync third-party plugin skills from the local plugin cache into this repo.
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)"
To preview without writing files:
bash "$CLAUDE_PROJECT_DIR/.claude/skills/sync-plugin-skills/sync.sh" --dry-run