https://github.com/apinstein/skills
Agent skills library.
https://github.com/apinstein/skills
Last synced: 2 months ago
JSON representation
Agent skills library.
- Host: GitHub
- URL: https://github.com/apinstein/skills
- Owner: apinstein
- License: mit
- Created: 2026-03-10T14:36:57.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-04-09T22:46:36.000Z (3 months ago)
- Last Synced: 2026-04-10T00:17:28.621Z (3 months ago)
- Language: Python
- Size: 15.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🛠️ Agent Skills
A portable library of [Agent Skills](https://agentskills.io) for AI coding agents.
## Skills
| Skill | Description |
|-------|-------------|
| [pr-address-feedback](skills/pr-address-feedback/) | Read all review feedback on a GitHub PR (with Reviewable.io) and systematically address each thread |
## Installation
### Manual
```bash
cp -r skills/ /path/to/your/project/.agent/skills/
```
### Via npx (Ai-Agent-Skills)
```bash
npx ai-agent-skills install apinstein/skills/skills
npx ai-agent-skills install apinstein/skills/skills/pr-address-feedback # specific skil
```
## Structure
Each skill follows the [Agent Skills open standard](https://agentskills.io/specification):
```
skills//
├── SKILL.md # Instructions + metadata
├── scripts/ # Optional helper scripts
└── references/ # Optional documentation
```
## License
MIT
## Antigravity Note
While `npx ai-agent-skills` can install for "Gemini", AntiGravity only looks for global skills in `~/.gemini/antigravity/skills/`. To get AntiGravity to see all Gemini global skills, do this:
```bash
npx ai-agent-skills install --gemini apinstein/skills/skills/pr-address-feedback
cd ~/.gemini/antigravity
ln -s ../skills ./
```