A collection of reusable AI agent skills. Each skill lives in its own
directory under skills/ and can be installed to
$HOME/.agents/skills/<skill name> with a single command.
| Skill | Description |
|---|---|
| code-review | Review code changes for correctness, security, and style issues |
| summarize-pr | Summarize a pull request into a concise, human-readable description |
# Clone the repository
git clone https://github.com/idjohnson/aiskills.git
cd aiskills
# Install all skills
./install.sh
# Or install a specific skill
./install.sh code-reviewSkills are copied to $HOME/.agents/skills/<skill name>/.
aiskills/
├── install.sh # Installer script
├── INSTALL.md # Detailed installation instructions
├── README.md # This file
└── skills/
├── code-review/
│ ├── skill.md # Skill description and prompt
│ └── skill.yaml # Metadata (name, version, tags)
└── summarize-pr/
├── skill.md
└── skill.yaml
- Create a directory:
skills/<your-skill-name>/ - Add
skill.md— describe the skill and the prompt it uses. - Add
skill.yaml— provide metadata (name, version, description, tags). - Run
./install.sh <your-skill-name>to install it.
See INSTALL.md for full installation documentation.