A curated collection of 1,028+ AI agent skills built for Hermes Agent and compatible with any agent that supports the agentskills.io open standard.
These skills cover: software development, ML/AI, networking, security, creative tools, productivity, DevOps, system administration, and more — designed to be loaded on-demand by AI agents.
git clone https://github.com/LoopyLuci/Skills.git ~/LoopyLuci-skillsThen add to your ~/.hermes/config.yaml:
skills:
external_dirs:
- ~/LoopyLuci-skills/skillsAll skills are instantly available as /skill-name slash commands. No install per skill needed.
hermes skills tap add LoopyLuci/SkillsThen edit ~/.hermes/.hub/taps.json to set the path to root:
{
"taps": [
{"repo": "LoopyLuci/Skills", "path": "skills/"}
]
}Then install individual skills:
hermes skills search <query>
hermes skills install LoopyLuci/Skills/<skill-name>hermes skills install https://raw.githubusercontent.com/LoopyLuci/Skills/main/skills/<skill-name>/SKILL.mdMost AI coding agents (Claude Code, Codex, Cline, Aider) support the agentskills.io format. Clone the repo and point your agent at the skills/ directory:
git clone https://github.com/LoopyLuci/Skills.git
# Then configure your agent to scan ./Skills/skills/LoopyLuci/Skills/
├── skills/ # All skills (flat, one directory per skill)
│ ├── blocklist-manager/
│ │ ├── SKILL.md # Skill definition (required)
│ │ ├── references/ # Additional documentation
│ │ ├── templates/ # Output templates
│ │ └── scripts/ # Helper scripts
│ ├── git-workflow-optimization/
│ │ └── SKILL.md
│ ├── kubernetes-deployment/
│ │ └── SKILL.md
│ ├── ... 1,028+ skills
├── scripts/
│ └── sync-from-hermes.sh # Sync script (maintainer use)
├── README.md # This file
└── .gitignore
This repository is synced from Hermes Agent's local skill library. Skills added or modified in Hermes are automatically committed and pushed here.
To sync changes back to your local Hermes (pull from repo):
cd ~/LoopyLuci-skills && git pullEach skill follows the agentskills.io standard:
---
name: my-skill
description: Brief description, ~60 chars
tags: [python, automation]
---Full format details at the Hermes Skills Docs.
MIT — free to use, share, and contribute.