Claude Skill
golbin/agent-skills
A collection of reusable agent skills (Claude Skill) for Codex and compatible tools, including code review, implementation review, and PRD generation prompts.
Overview
Repository
Install this Skill
npx skills add https://github.com/playmoreai/agent-skills/tree/main/skills/prd \Registry
npx skills add https://github.com/playmoreai/agent-skills/tree/main/skills/prd \npx skills add https://github.com/playmoreai/agent-skills/tree/main/skills/review-implementation \npx skills add playmoreai/agent-skills --skill prd -g -a codex -ynpx skills add playmoreai/agent-skills --skill review-implementation -g -a codex -ynpx skills add playmoreai/agent-skills --list
Summary
A curated collection of reusable agent skills designed for Codex and compatible AI coding tools, providing structured prompts for code review, implementation review, and product requirements document generation.
适用于Codex及兼容工具的可复用代理技能(Claude Skill)
Key features
- Reusable skill prompts for AI coding agents
- Includes code review and implementation review skills
- Product requirements document (PRD) generation support
- Compatible with Codex and similar tools
- Shell-based skill definitions for easy integration
Use cases
- Automating code review workflows in AI-assisted development
- Generating structured implementation reviews for pull requests
- Creating product requirements documents from project context
- Enhancing Codex agents with domain-specific skill prompts
README excerpt
# Agent Skills Reusable agent skills for Codex and other Agent Skills compatible tools. Skills are packaged under `skills/<skill-name>/` so this repository can hold multiple installable skills. ## Repository Layout - `skills/`: installable agent skills discovered by `npx skills` and `gh skill` - `templates/`: copyable project templates such as `AGENTS.md` and `CLAUDE.md` ## Available Skills - `prd`: Create or update evidence-backed living PRDs and phase execution files under `tasks/`. - `review-implementation`: Review code against markdown requirements/spec docs, identify gaps and risks, and apply focused fixes. ## Templates - `templates/AGENTS.md`: concise project instruction template for coding agents - `templates/CLAUDE.md`: delegates Claude-compatible tools to `AGENTS.md` Copy the templates into a project root and customize the placeholders: ```bash cp templates/AGENTS.md /path/to/project/AGENTS.md cp templates/CLAUDE.md /path/to/project/CLAUDE.md ``` ## Install ### skills.sh / `npx skills` Install globally for Codex: ```bash npx skills add https://github.com/playmoreai/agent-skills/tree/main/skills/prd \ -g \ -a codex \ -y npx skills add https://github.com/playmoreai/agent-skills/tree/main/skills/review-implementation \ -g \ -a codex \ -y ``` Or install from the repository and select a skill: ```bash npx skills add playmoreai/agent-skills --skill prd -g -a codex -y npx skills add playmoreai/agent-skills --skill review-implementation -g -a codex -y ``` List available skills in this repository: ```bash npx skills add playmoreai/agent-skills --list ``` ### GitHub CLI `gh skill` Requires GitHub CLI 2.90.0 or newer. ```bash gh skill install playmoreai/agent-skills prd --agent codex --scope user gh skill install playmoreai/agent-skill