Track skills per project
AIPM keeps an aipm.package.json file in your project. It lists the skills you installed and their versions.
Install the CLI
Install the AIPM command once on your machine.
npm install -g @aipm-registry/cli
aipm --version
aipm doctor # (optional)Initialize a project
This creates aipm.package.json and points it at the public registry.
aipm initInstall a skill
Choose a package from the registry and install it for the AI tool you use.
To install for one tool, choose a target like Cursor or Claude. See supported targets for the folders AIPM writes to.
aipm add @scope/name@1.0.0 --target cursor --ciList installed skills
aipm listSearch and update installed skills
aipm search sentry
aipm updateWhere files go
AIPM writes files into the folder your AI tool expects. For Cursor, skill files go into the project Cursor skill area. For Claude, AIPM writes a project skill folder.
See the targets guide for exact folders and supported tools.
Updating a skill
Install the newer version with the same add command. The version is written down, so your team can review what changed.