https://github.com/zrosenbauer/skills
Personal monorepo of agent skills (SKILL.md format) — agent-agnostic, works with Claude Code, Cursor, Codex, and others.
https://github.com/zrosenbauer/skills
agent agent-skills ai skill skills
Last synced: about 1 month ago
JSON representation
Personal monorepo of agent skills (SKILL.md format) — agent-agnostic, works with Claude Code, Cursor, Codex, and others.
- Host: GitHub
- URL: https://github.com/zrosenbauer/skills
- Owner: zrosenbauer
- License: mit
- Created: 2026-05-06T21:32:13.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-05-17T21:39:22.000Z (2 months ago)
- Last Synced: 2026-05-17T21:42:43.671Z (2 months ago)
- Topics: agent, agent-skills, ai, skill, skills
- Language: JavaScript
- Homepage: https://skills.sh
- Size: 1.01 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Agents: AGENTS.md
Awesome Lists containing this project
README

A curated collection of [agent skills](https://skills.sh) for AI coding assistants — TypeScript reviews, refactors, skill authoring, and cross-agent portability.
Skills are `SKILL.md` files that tell an AI agent **when** and **how** to do something. They're agent-agnostic — drop them into Claude Code, Cursor, Codex, or any tool that supports the [skills.sh](https://skills.sh) format.
## Install
```bash
# every skill
npx skills add zrosenbauer/skills
# just one
npx skills add zrosenbauer/skills --skill ts-best-practices
```
The [`skills` CLI](https://www.npmjs.com/package/skills) handles discovery and placement for your agent.
## Skills
| # | Skill | What it does |
| --- | ----------------------------------------------------------------------- | ---------------------------------------------------------------------- |
| 1 | [`code-reviewer`](./skills/code-reviewer) | Adversarial review of a diff or PR — finds real issues, not nits |
| 2 | [`ts-best-practices`](./skills/ts-best-practices) | Writing or refactoring TypeScript with idiomatic patterns |
| 3 | [`ts-best-practices-functional`](./skills/ts-best-practices-functional) | Refactoring TS toward functional patterns — Result types, no mutation |
| 4 | [`skill-creator`](./skills/skill-creator) | Authoring a new skill with naming + description rules baked in |
| 5 | [`skill-portability`](./skills/skill-portability) | Checking whether a skill works across Claude Code, Cursor, Codex, etc. |
Each skill ships its own `SKILL.md` under [`skills//`](./skills).
> **Discover more skills** → browse the leaderboard at [skills.sh](https://skills.sh) — top-installed agent skills across the ecosystem (vercel-labs, anthropics, microsoft, remotion, …).
## Contributing
Want to add a skill, fix a bug, or fork one for your own use? See [CONTRIBUTING.md](./CONTRIBUTING.md) for the dev setup, skill authoring workflow, and conventions.
## License
[MIT](./LICENSE) © Zac Rosenbauer