.claude/skills/sync-plugin-cache/SKILL.md
Synchronize all marketplace bundles to the Claude plugin cache
npx skillsauth add cuioss/plan-marshall sync-plugin-cacheInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Synchronizes all bundles from marketplace/bundles/ to the Claude plugin cache at ~/.claude/plugins/cache/plan-marshall/.
None - Synchronizes all bundles automatically.
/sync-plugin-cache
Syncs all bundles after making changes to marketplace components.
Find all bundles and extract their versions from plugin.json:
for bundle in marketplace/bundles/*/; do
name=$(basename "$bundle")
version=$(python3 -c "import json; print(json.load(open('${bundle}.claude-plugin/plugin.json'))['version'])" 2>/dev/null || echo "unknown")
echo "$name:$version"
done
This outputs bundle:version pairs like {bundle}:{version}.
The plugin cache location is: ~/.claude/plugins/cache/plan-marshall/
Each bundle is cached at: ~/.claude/plugins/cache/plan-marshall/{bundle}/{version}/
IMPORTANT: The version folder is required to match Claude Code's installation structure.
CRITICAL: Execute ALL rsync commands in PARALLEL using separate Bash tool calls in a single message. Do NOT use a for loop or sequential execution.
For each bundle found, invoke a separate Bash tool call using the version from Step 1:
rsync -av --delete marketplace/bundles/{bundle}/ ~/.claude/plugins/cache/plan-marshall/{bundle}/{version}/
The --delete flag ensures removed files are also removed from cache.
NOTE: Always use the version from each bundle's plugin.json, not a hardcoded value.
Show sync results listing each bundle synchronized and the cache location.
--delete to ensure cache matches source exactly/marshall-steward - Project configuration including cache regenerationtesting
A test skill for README generation
testing
A test skill with existing references
tools
Skill without references directory
development
Test skill with table-format references