Agent skill

sync-profiles

Use when the user wants to list, create, switch, delete, compare, or inspect config sync profiles.

intentsolutions.io2,596★ · 1 repos on radarProfile →
claude-coderead-onlyMIT
Install
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill sync-profiles --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 2 KB
Bundled scripts: none
Version: 0.2.0
Declared author: Rohit Hazra
Allowed tools: Bash(bash${CLAUDE_PLUGIN_ROOT}/scripts/*")Bash(gh*)Bash(git*)Read
Path: plugins/productivity/claudebase/skills/sync-profiles/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,630
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Config Sync Profiles Manage multiple configuration profiles stored in your GitHub backup repo. ## Available actions ### List profiles ```bash bash "${CLAUDE_PLUGIN_ROOT}/scripts/profile-manager.sh" list ``` Shows all profiles with file counts, last push time, and which is active. ### Create a profile ```bash # Empty profile bash "${CLAUDE_PLUGIN_ROOT}/scripts/profile-manager.sh" create NAME # Clone from existing profile bash "${CLAUDE_PLUGIN_ROOT}/scripts/profile-manager.sh" create NAME --from EXISTING ``` Creates a new profile. Use `--from` to clone an existing profile as a starting point. ### Switch to a profile Switching means pulling a different profile's config: ```bash bash "${CLAUDE_PLUGIN_ROOT}/scripts/sync-pull.sh" --profile NAME ``` This backs up current config, then applies the target profile. The active profile is updated automatically. ### Delete a profile ```bash bash "${CLAUDE_PLUGIN_ROOT}/scripts/profile-manager.sh" delete NAME ``` Cannot delete the active profile. Switch to a different one first. ### Compare two profiles ```bash bash "${CLAUDE_PLUGIN_ROOT}/scripts/profile-manager.sh" diff NAME1 NAME2 ``` Shows files that exist in only one profile or differ betwee

What's inside
Steps it walks through
  1. Available actions
  2. List profiles
  3. Create a profile
  4. Switch to a profile
  5. Delete a profile
  6. Compare two profiles
  7. Profile info
  8. Instructions
  9. User Arguments
Commands it runs
bash "${CLAUDE_PLUGIN_ROOT}/scripts/profile-manager.sh" list
Empty profile
bash "${CLAUDE_PLUGIN_ROOT}/scripts/profile-manager.sh" create NAME
Clone from existing profile
bash "${CLAUDE_PLUGIN_ROOT}/scripts/profile-manager.sh" create NAME --from EXISTING
bash "${CLAUDE_PLUGIN_ROOT}/scripts/sync-pull.sh" --profile NAME
bash "${CLAUDE_PLUGIN_ROOT}/scripts/profile-manager.sh" delete NAME
bash "${CLAUDE_PLUGIN_ROOT}/scripts/profile-manager.sh" diff NAME1 NAME2
bash "${CLAUDE_PLUGIN_ROOT}/scripts/profile-manager.sh" info NAME
More from claude-code-plugins-plus-skills
All skills →
About this skill
What does the sync-profiles skill do?

Use when the user wants to list, create, switch, delete, compare, or inspect config sync profiles.

How do I install it?

Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill sync-profiles --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From jeremylongshore/claude-code-plugins-plus-skills, a repository with 2,630 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going