blank
Blank
custom skills when you already know what files you need
aipm publish init --name @team/my-skill --template blankStarts with
- minimal SKILL.md
- manifest
- .aipmignore
Templates
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. Install the AIPM CLI once before running template commands — see the install guide.
Short answer: a SKILL.md file gives an AI agent a name, a clear purpose, and step-by-step instructions for one reusable task. Start small, test the steps, and add only the files the task needs.
blank
custom skills when you already know what files you need
aipm publish init --name @team/my-skill --template blankcode-review
pull request reviews and code quality checks
aipm publish init --name @team/review-helper --template code-reviewissue-summary
bug triage, Sentry summaries, support tickets, and handoff notes
aipm publish init --name @team/issue-summary --template issue-summaryrelease-notes
release summaries, upgrade notes, and known issues
aipm publish init --name @team/release-notes --template release-notesThis small example reviews a change and reports the most important problems first.
---
name: code-review
description: Review code changes for bugs, security risks, and missing tests.
---
# Code review
1. Read the changed files and nearby tests.
2. Find problems that can change real behavior.
3. Explain each problem with a file and line number.
4. Put serious problems first.
5. Say clearly when no problem is found.The exact supported fields can differ by AI tool. Check the AI agent file support table before sharing the skill.
Edit the generated files, then follow the publishing guide to stage, preview, validate, and push your package.