Thanks for helping improve SkillSync.
Requirements:
- Node.js 20 or newer
- Git
Run:
git clone https://github.com/AksharP5/skillsync.git
cd skillsync
npm install
npm test
npm pack --dry-run- Open an issue first for behavior or data-model changes that affect existing vaults.
- Create a focused branch from
main. - Add or update tests for every behavior change.
- Preserve backward compatibility for existing
registry.json,vault.json, and legacydevices/*.jsonfiles. - Run
npm test,npm pack --dry-run, andgit diff --check. - Explain user-visible behavior, migration impact, and safety boundaries in the pull request.
Use conventional commits because releases are automated:
fix:for a patchfeat:for a minor releasefeat!:orBREAKING CHANGE:for a major release
SkillSync manages user-authored directories and private Git repositories. Changes must:
- never overwrite an unmanaged local path silently;
- respect each target's auto-adoption setting and baseline existing local skills before adoption;
- keep controller-owned desired assignments separate from device-owned reported state;
- preserve a recoverable copy before replacing user-owned content;
- avoid periodic repository writes when no meaningful state changed;
- keep destructive vault deletion explicit or policy-controlled and covered by tests;
- protect a vault skill from automatic cleanup when any device assigns it or reports a detected local copy;
- never replace an unmanaged global instructions file without explicit conflict resolution and a recoverable backup.