Reusable skills for Codex, Hermes, and other agents that load directory-based SKILL.md instructions.
| Skill | Purpose |
|---|---|
gh-implement-task |
Implement a GitHub issue or coding task as a focused, verified branch. |
make-code-skimmable |
Simplify a completed change into a narrow, reviewer-friendly diff. |
pr-description-writer |
Write concise PR descriptions grounded in the actual diff and validation. |
grilling |
Stress-test a plan or decision through dependency-aware interview rounds. |
gh-implement-task uses make-code-skimmable for its final cleanup pass, so install both when using that workflow.
Clone the repository, then provide the skill directory used by your agent:
git clone https://github.com/Liberdus/skills.git
cd skills
./scripts/install.sh /path/to/agent/skillsInstall selected skills by listing their names after the destination:
./scripts/install.sh /path/to/agent/skills make-code-skimmable pr-description-writerFor Codex, the usual personal destination is:
./scripts/install.sh "${CODEX_HOME:-$HOME/.codex}/skills"The installer refuses to overwrite an existing skill. Remove or move the existing destination folder first when intentionally replacing a skill.
Agents that do not use this exact directory convention can consume each skills/<name>/SKILL.md directly or copy the corresponding folder into their own skill registry.
skills/
|-- gh-implement-task/
|-- grilling/
|-- make-code-skimmable/
`-- pr-description-writer/
Each folder contains a required SKILL.md. Optional agents/openai.yaml files provide Codex-facing UI metadata and can be ignored by other agents.
The grilling skill is derived from mattpocock/skills at commit 6654f6b under the MIT License. See THIRD_PARTY_NOTICES.md.