AIPM
Theme

Templates

Start with a template, then edit it.

Templates create starter files for common AI tasks. They are only a starting point. Edit the SKILL.md, manifest, and .aipmignore file before you publish.

blank

Blank

custom skills when you already know what files you need

aipm publish init --name @team/my-skill --template blank

Starts with

  • minimal SKILL.md
  • manifest
  • .aipmignore

code-review

Code review

pull request reviews and code quality checks

aipm publish init --name @team/review-helper --template code-review

Starts with

  • review goals
  • checklist
  • format for findings

issue-summary

Issue summary

bug triage, Sentry summaries, support tickets, and handoff notes

aipm publish init --name @team/issue-summary --template issue-summary

Starts with

  • impact
  • evidence
  • likely cause
  • next action

release-notes

Release notes

release summaries, upgrade notes, and known issues

aipm publish init --name @team/release-notes --template release-notes

Starts with

  • highlights
  • fixes
  • upgrade notes
  • known issues

Install the CLI first

Templates are created by the AIPM CLI, so install it before running template commands.

npm install -g @aipm-registry/cli
aipm --version

After you choose a template

cd review-helper
aipm publish add .
aipm publish preview # (optional)
aipm publish validate # (optional)
AIPM_TOKEN=<5-minute-token> aipm publish push --yes