Reusable Agent Skills for Cursor, Claude Code, Codex, and other agents that load SKILL.md.
Each skill is a folder under skills/ with a portable SKILL.md contract. Install selectively via skills.sh / the skills CLI.
| Skill | Description |
|---|---|
[alint-until-clean](./skills/alint-until-clean/) |
Drive moeru-ai/alint until clean |
[poster-image-to-html](./skills/poster-image-to-html/) |
Faithful HTML recreation of poster/banner reference images with Playwright PNG compare loop |
[modular-svg-illustration](./skills/modular-svg-illustration/) |
Modular SVG illustration — assemble primitives into depth-sorted scenes (demos) |
[pr-review-slides](./skills/pr-review-slides/) |
Slidev decks that review a GitHub PR by diff and explain why each change was written that way |
skills/
<skill-name>/
SKILL.md # required — frontmatter + instructions
scripts/ # optional
references/ # optional
assets/ # optional
examples/ # optional demos for that skill
List skills in this repo:
npx skills add lulu0119/skills --listInstall one skill:
npx skills add lulu0119/skills --skill alint-until-clean
npx skills add lulu0119/skills --skill poster-image-to-html
npx skills add lulu0119/skills --skill modular-svg-illustrationInstall everything:
npx skills add lulu0119/skills --skill '*' -yFrom a local clone:
npx skills add . --list
npx skills add . --skill poster-image-to-html- Create
skills/<skill-name>/SKILL.mdwith YAML frontmatter (name,description).namemust match the folder name (kebab-case). - Keep
SKILL.mdfocused; put long reference material in sibling files (reference.md,references/,scripts/). - List the skill in the table above.
- Optional: add demos under that skill’s
examples/.
MIT — see LICENSE.