Clean separation of core vs custom.
Custom skills used to live directly in the repo alongside built-in skills. That meant every update risked conflicts, and user-specific skills mixed with system defaults.
Now custom skills live in ~/.superclaw/skills/, completely separate from the core repo. This makes:
- Upgrades cleaner: No merge conflicts with your custom skills
- Portability better: Custom skills are clearly yours, not repo artifacts
- Debugging easier: Know what’s system vs what’s user-defined
The migration happened automatically, so if you had custom skills, they’re already in the right place.
Reference commit: def7ddc