Reusable skills for AI coding agents.
This repo is tool-agnostic: the same skill folders can be used with Codex, Claude Code, or any agent framework that supports file-based skills/instructions.
- Keep a portable, versioned backup of my skills
- Reuse the same skill set across multiple laptops
- Track improvements and updates in git
- Skill folders with
SKILL.mdinstructions - System and custom skills
- Supporting assets/scripts for specific skills
- Install directly from GitHub with the Skills CLI:
npx skills add AnasX7/skills- or
npx skills add https://github.com/AnasX7/skills
- Restart your agent tool (if required) so it reloads skills.
Note: the command is skills (plural), not skill.
Manual fallback (if your environment does not support skills add):
- Clone this repo:
git clone https://github.com/AnasX7/skills.git
- Copy the skill folders to your agent's skills directory.
- Restart your agent tool (if required) so it reloads skills.
Use the path that matches your agent environment:
- Codex:
~/.codex/skills(Windows:C:\Users\<you>\.codex\skills) - Claude Code:
~/.claude/skills - Other agents: your platform's configured skills/instructions directory
- On machine A, update skills and commit:
git add .git commit -m "Update skills"git push origin main
- On machine B, pull latest:
git pull origin main
- Re-copy or sync files into that machine's agent skills directory.
- Some skills are process-oriented (planning, debugging, reviews).
- Some skills are domain-oriented (auth, UI, framework-specific work).
- Keep skill names and folder structure stable to avoid broken references.