Maintaining, sharing, and updating skills can get messy when a team grows. People copy files around, different agents end up with different versions, and small process improvements get lost in chat. We can make easier with the skills package: a small CLI you can run with npx to install, list, update, and remove skills across different coding agents. The idea is simple: put a skill in a GitHub repo, and anyone can install it with one command. It looks like the skill was published to npm, but that is not what is happening. When you run: npx skills@latest add owner/repo --skill my-skill Enter fullscreen mode Exit fullscreen mode the flow is roughly: npx runs the "skills" CLI skills reads the GitHub repo skills looks for SKILL.md files skills installs the skill into the agent Enter fullscreen mode Exit fullscreen mode So you do not need to publish an npm package, create your own registry, or ask someone to copy files by hand.…