Initialize a project
This writes an aipm.package.json file with the registry URL.
node apps/cli/dist/bin.js init --registry <registry-url>
Install a skill
Choose a package from the registry and install it for the target tool.
node apps/cli/dist/bin.js add @team/sample-skill@1.0.0 --target cursor --ci
List installed skills
node apps/cli/dist/bin.js list
Where files go
AIPM writes tool-specific files into project locations that adapters understand. For Cursor, installed skill files are placed under the project Cursor skill area.
Updating a skill
Install the newer package version with the same add
command. Versions are explicit, so project changes stay reviewable.