Install
openclaw skills install @johnsonbuilds/skillsyncGit-based version control for AI Agent Skills — detect, review, save, and restore Skill changes.
openclaw skills install @johnsonbuilds/skillsyncVersion control for Agent Skills. SkillSync wraps Git to let you track, diff, snapshot, and restore entire Skills — not individual files.
Before executing ANY skillsync command, you MUST ask the user for confirmation.
skillsync commands automatically or silently.init, snapshot, restore, sync, remote add, etc.curl -fsSL https://raw.githubusercontent.com/johnsonbuilds/skillsync/main/install.sh | sh
Or via pip (requires Python 3.12+):
pip install skillsync
After install, initialize:
skillsync init
This auto-detects your agent harness and Skills directory.
skillsync status # which Skills changed
skillsync diff # what exactly changed
skillsync diff <skill> # diff for a specific Skill
skillsync snapshot -m "describe what you did"
skillsync log # all snapshots
skillsync log <skill> # history for one Skill
skillsync restore <skill> # restore to last snapshot
skillsync restore <skill> <commit-hash> # restore to a specific version
skillsync remote add <url> # set up remote (first machine)
skillsync clone <url> <path> # clone to a second machine
skillsync sync # sync across machines
skillsync sync --use-remote # on conflict, accept remote version
SKILL.md file. SkillSync's basic unit of management.sync to protect unsaved local work.