This repository is a skills library for AI agents: a structured collection of reusable “Skill packs” that help an agent follow consistent workflows and produce stable, high-quality outputs.
A Skill is typically a folder that contains:
SKILL.md— the entrypoint instructions (what the skill is for, how to use it, what to output)references/— optional long-form guides, checklists, examples (loaded only when needed)templates/orassets/— optional reusable templates, snippets, or resources
This repo stores skills only. Code assets (Python/SQL/etc.) live in separate repositories.
A skill is a repeatable playbook for an AI agent. Instead of writing the same prompts and rules again and again, you package them into a folder so the agent can:
- follow a standardized process
- reuse proven templates
- stay consistent across sessions
- scale to new tasks by adding new skill folders
These skills are designed for AI agents that support “skill folders” / SKILL.md style workflows, such as:
- agent environments that can load
SKILL.mdas instruction packs - editors/agents that support skills or similar modular instruction systems
- the skills.sh ecosystem (when used as individual skills or via manual folder selection)
Note: Not every tool supports “installing a subfolder as a skill” automatically.
If your agent can’t install from a subfolder, you can still copy the skill folder (the one containingSKILL.md) into your agent’s skills directory and use it the same way.
This repo is organized by high-level modules.
Each top-level folder represents a major use case category (a “big skill domain”).
Current modules:
writing/— writing skills (novels, fanfic, erotica, etc.)
Planned modules (coming soon):
learning/— study skills, tutoring workflows, exam prep, note-to-knowledge systemscoding/— programming skills, code review, debugging playbooks, repo onboardingdata/— data analysis skills, metric definitions, reporting workflowshr/— hiring, interviewing, performance review, HR comms playbooksops/— operations, customer support playbooks, SOPs, incident responseproduct/— PM workflows, PRDs, UX writing, launch checklists
- Start from a module folder (e.g.
writing/) - Choose a specific skill folder (e.g.
writing/novel-master/) - Open
SKILL.mdto see:- what the skill does
- required inputs
- step-by-step workflow
- output formats / templates
Inside writing/, skills can be grouped by sub-types such as:
general/— general fiction / web novel writingfanfic/— fan fiction specific workflows (canon handling, character voice, tags)erotica/— adult/erotica writing workflows (consent boundaries, tone control, pacing)
Example shape:
writing/general/<skill-name>/SKILL.mdwriting/fanfic/<skill-name>/SKILL.mdwriting/erotica/<skill-name>/SKILL.md
Any adult writing skills here are intended for consenting adults and legal content only.
When adding a new skill, follow this minimum standard:
- Create a folder for the skill
- Add
SKILL.md(required) - Add optional
references/for long guides and examples - Keep folder names short and category-based (avoid overly detailed file-like names)
Recommended minimal layout: