📦
Skills Sync
AI skills and MCP configuration management for development environments.
0 installs
Trust: 34 — Low
Devtools
Ask AI about Skills Sync
Powered by Claude · Grounded in docs
I know everything about Skills Sync. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Loading tools...
Reviews
Documentation
skills-sync
skills-sync is a profile-driven CLI for managing local skills, imported skills, upstreams, and MCP servers across supported AI agents.
Define an environment once, keep it in a local workspace, and sync it to tools like Codex, Cursor, Gemini, Copilot, and Claude Code.
What It Manages
- profiles with skills and MCP configuration
- local skills plus imported skills from git repos, repo subdirectories, or local paths
- upstreams and sources for discovery, attachment, refresh, and provenance tracking
- inventory, lock, and manifest state for inspecting what is installed and where it came from
- local agent drift checks so you can compare expected state with what is actually installed
Supported Agents
Installation
npm i -g @ryanreh99/skills-sync
Quick Start
skills-sync init --seed
skills-sync use personal
skills-sync sync
Core Ideas
Profile: a named environment with skills and MCP configuration.Upstream: a registered skill source you can browse, attach, refresh, and track.Source: a raw git repo, repo subdirectory, or local path.Sync: the recommended workflow that prepares runtime artifacts and updates supported agents.
The workspace also keeps lock and manifest state so imported content stays inspectable and refreshable.
Demo Workflows
Register an upstream

skills-sync profile add-upstream --source matlab/skills
Add skills from an upstream

skills-sync profile add-upstream --source matlab/skills
skills-sync list upstream-content --upstream matlab_skills
skills-sync profile add-skill --upstream matlab_skills --path skills/matlab-test-generator
Import directly from a source

skills-sync profile add-skill personal \
--source https://github.com/openai/skills/tree/main/skills/.curated \
--upstream-id openai_curated \
--all
List and search skills

skills-sync list skills --profile personal --detail full
skills-sync search skills --query matlab --scope discoverable
skills-sync search skills --query spreadsheet --profile personal --scope installed
Inspect and refresh imported state

skills-sync profile inspect personal
skills-sync profile refresh personal --dry-run
skills-sync profile refresh personal --upstream matlab_skills
Check agent drift

skills-sync agents inventory
skills-sync agents drift --dry-run
Export and reconcile workspace state

skills-sync workspace export
skills-sync workspace diff --format json
skills-sync workspace sync --dry-run
