← Back to list

julien-cmd-sync
by theflysurfer
Personal marketplace for developing and sharing custom Claude skills
⭐ 1🍴 0📅 Jan 21, 2026
SKILL.md
name: julien-cmd-sync description: Sync core skills, commands, and scripts from marketplace to ~/.claude/ author: Julien version: 1.0.0 category: infrastructure type: command triggers:
- sync skills
- synchronize marketplace
- update global skills
- sync core
- mettre à jour les skills
- synchroniser le marketplace
- sync commands
- sync scripts
- marketplace sync
Sync Marketplace to Global
Synchronize skills, commands, and scripts from the marketplace to your global ~/.claude/ folder.
What to sync
Read registry/sync-config.json for the list of:
home_files_to_sync: Files to copy to~/.claude/root (settings.json)skills_to_sync: Skills to copy to~/.claude/skills/commands_to_sync: Commands to copy to~/.claude/commands/scripts_to_sync: Scripts to copy to~/.claude/scripts/configs_to_sync: Configs to copy to~/.claude/registry/
Execute
# 0. Generate skill-triggers.json from SKILL.md YAML frontmatter
python scripts/generate-triggers.py && echo "✓ triggers regenerated"
# 1. Create directories
mkdir -p ~/.claude/skills ~/.claude/commands ~/.claude/scripts ~/.claude/configs
# 2. Sync skills
for skill in $(cat registry/sync-config.json | jq -r '.skills_to_sync[]'); do
cp -r "skills/$skill" ~/.claude/skills/ 2>/dev/null && echo "✓ skill: $skill"
done
# 3. Sync commands
for cmd in $(cat registry/sync-config.json | jq -r '.commands_to_sync[]'); do
cp ".claude/commands/$cmd" ~/.claude/commands/ 2>/dev/null && echo "✓ cmd: $cmd"
done
# 4. Sync scripts
for script in $(cat registry/sync-config.json | jq -r '.scripts_to_sync[]'); do
cp "scripts/$script" ~/.claude/scripts/ 2>/dev/null && echo "✓ script: $script"
done
# 5. Sync configs
for cfg in $(cat registry/sync-config.json | jq -r '.configs_to_sync[]'); do
cp "registry/$cfg" ~/.claude/registry/ 2>/dev/null && echo "✓ config: $cfg"
done
# 6. Sync home files (settings.json, etc.)
for file in $(cat registry/sync-config.json | jq -r '.home_files_to_sync[]'); do
cp "home/$file" ~/.claude/ 2>/dev/null && echo "✓ home: $file"
done
After sync
- Skills available globally in all projects
- Commands available with
/syncand/list-resources - Scripts available for hooks (semantic-router, tracking)
- MCP registry available for
discover-mcps.pyandmcp-auto-install.py
MCP Management
After syncing, you can use these MCP tools:
# Discover installed vs available MCPs
python ~/.claude/scripts/discover-mcps.py
# Install a specific MCP globally
python ~/.claude/scripts/mcp-auto-install.py notion
# Install in project only
python ~/.claude/scripts/mcp-auto-install.py playwright --project
# Install all recommended MCPs
python ~/.claude/scripts/mcp-auto-install.py --recommended
# List available MCPs
python ~/.claude/scripts/mcp-auto-install.py --list
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon