AIPM
Theme

Use AIPM

Install AI skills into your project.

AIPM adds the files an AI tool needs directly to your repo. Your prompts, rules, and skill files stay with the code instead of living in scattered notes.

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 init

Install 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 --ci

List installed skills

aipm list

Search and update installed skills

aipm search sentry
aipm update

Where 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.