Manifest
skills-package-manager uses skills.json as the single user-maintained configuration file.
skills.json
skills.json describes which skills a project needs, where they should be installed, and which agent directories should receive symlinks.
Field descriptions:
installDir: The directory where managed skills are written.linkTargets: Target directories where symbolic links should be created.selfSkill: Whether to auto-install the bundledskills-package-manager-cliskill during install. Defaults tofalse.patchedSkills: Optional mapping from skill name to a committed patch file path.skills: A mapping from skill name to specifier.
Pinning Model
Remote versions are pinned in skills.json:
addresolves git refs to commits and npm packages to versions before writing the manifest.updatemoves git skills to the latestmaincommit and npm skills to the registrylatestversion.installresolves the manifest into an in-memory install plan and does not write a separate lock file.
Recommended Practices
- Commit
skills.json. - Ignore generated skill directories such as
.agents/skillsand.claude/skills. - Prefer explicit
github:or git specifiers withpath:for external skills. - Use
local:*for existing user-owned skills that live under${installDir}/${skillName}.