Personal library of AI agent skills for Claude Code, Codex CLI, and Cursor. Skills follow the open Agent Skills standard (SKILL.md format) so the same skill works across all three tools without modification.
Cross-project workflows you reuse regardless of which repo you are working in — for example, a deploy checklist, a security review process, or a standard PR description format.
Repo-specific knowledge belongs in that repo's own skill directory and AGENTS.md:
.claude/skills/— Claude Code project skills.cursor/skills/— Cursor project skillsAGENTS.md— repo-specific agent instructions
This central repo is only for skills that apply across projects, not tied to a single codebase.
Skills are installed with the skills CLI (npx skills).
Skills in this repo live under skills/. Use @ or --skill — not a path suffix (owner/repo/skill-name looks for a skill folder at the repo root and will fail here).
npx skills add Yedidyar/agent-skills@<skill-name>Equivalent form:
npx skills add Yedidyar/agent-skills --skill <skill-name>List skills in this repo without installing:
npx skills add Yedidyar/agent-skills --listInstall a skill for all projects on your machine:
npx skills add Yedidyar/agent-skills --skill <skill-name> -g# List skills you have installed
npx skills list
# Update installed skills to latest versions
npx skills updateThe skills CLI installs skills into the directories each tool reads automatically. If you prefer manual installation, copy the skill folder to the appropriate path:
| Tool | Path |
|---|---|
| Claude Code | ~/.claude/skills/ |
| Codex CLI | ~/.codex/skills/ |
| Cursor | ~/.cursor/skills/ |
See CONTRIBUTING.md for how to propose a new skill or change an existing one.
Keep this table updated in every skill PR.
| Skill | Description |
|---|---|
_template |
Starter template for authoring new skills (not for production use) |
review-pr-comments-together |
Interactive PR review walkthrough — explains each comment, you choose via polls; thin orchestrator + subagents + local cache for resume |