Example 1
Code review helper for Cursor
Maya leads a small backend team. Every pull request gets different review comments because each developer prompts Cursor differently. She packages the team's PR checklist as a skill so every project installs the same review standards.
Publish
1. Create the skill folder
Creates a new package folder with a manifest, starter SKILL.md, and .aipmignore. The --targets cursor flag means this skill is for Cursor only.
aipm publish init --name @team/review-helper --template code-review --targets cursor2. Open the folder
Move into the folder AIPM just created so the next commands run in the right place.
cd review-helper3. Stage your files
Adds the skill files in this folder to the publish bundle. Run this after you edit SKILL.md or add other files.
aipm publish add .4. Preview what will be published (optional)
Shows the file list and package size before you push. Use this to catch secrets or extra files early.
aipm publish preview5. Publish to the registry
Sign in on the website, reserve the package name, create a 5-minute token in the dashboard, then paste it here and push.
AIPM_TOKEN=<5-minute-token> aipm publish push --yesInstall
Install into a project
Adds the published skill to your project and writes the Cursor skill file. --ci skips prompts in scripts or CI.
aipm add @team/review-helper@1.0.0 --target cursor --ci- Good for pull request reviews
- Installs into .cursor/aipm/skills/<skill>.md