Sandbox
@golbin/agent-skills

Reusable Codex skills and project instruction templates

This repository packages two agent skills: `prd` for shaping a simple user-centered plan, and `review-implementation` for checking correctness and simplifying the result. It also provides `AGENTS.md` and `CLAUDE.md` templates you can copy into a project root and customize.

213 stars27 forksShellUpdated 1mo ago
Who it's for

Builders who want Codex to use reusable skills and project rules across projects.

What it delivers

You can give Codex the same product-planning and review process every time instead of rewriting instructions.

What it does

PRD skill

Helps design the simplest user-centered solution and keeps the implementation checklist updated as evidence changes.

Implementation review skill

Checks user experience and correctness, fixes root causes, isolates justified legacy compatibility, and simplifies the end state.

AGENTS.md template

Provides a concise project instruction file for coding agents.

CLAUDE.md template

Points Claude-compatible tools at `AGENTS.md` so the same project instructions can be reused.

Multiple install paths

Supports `npx skills`, GitHub CLI `gh skill`, Codex's skill installer, and a shell installer script.

How to get it

  1. 1Install globally for Codex
    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
  2. 2Or install from the repository and select a skill
    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
  3. 3List available skills in this repository
    npx skills add playmoreai/agent-skills --list
  4. 4Requires GitHub CLI 2.90.0 or newer.
    gh skill install playmoreai/agent-skills prd --agent codex --scope user
    gh skill install playmoreai/agent-skills review-implementation --agent codex --scope user
  5. 5The alias form also works on supported GitHub CLI versions
    gh skills add playmoreai/agent-skills prd --agent codex --scope user
    gh skills add playmoreai/agent-skills review-implementation --agent codex --scope user
  6. 6Preview before installing
    gh skill preview playmoreai/agent-skills prd
    gh skill preview playmoreai/agent-skills review-implementation

README

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: Design the simplest user-centered solution, then refine its living implementation checklist as evidence changes.
  • review-implementation: Verify the user experience and correctness, fix root causes, isolate justified legacy compatibility, and simplify repeatedly.

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:

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:

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:

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:

npx skills add playmoreai/agent-skills --list

GitHub CLI gh skill

Requires GitHub CLI 2.90.0 or newer.

gh skill install playmoreai/agent-skills prd --agent codex --scope user
gh skill install playmoreai/agent-skills review-implementation --agent codex --scope user

The alias form also works on supported GitHub CLI versions:

gh skills add playmoreai/agent-skills prd --agent codex --scope user
gh skills add playmoreai/agent-skills review-implementation --agent codex --scope user

Preview before installing:

gh skill preview playmoreai/agent-skills prd
gh skill preview playmoreai/agent-skills review-implementation

Codex Skill Installer

In Codex, ask:

Use $skill-installer to install https://github.com/playmoreai/agent-skills/tree/main/skills/prd
Use $skill-installer to install https://github.com/playmoreai/agent-skills/tree/main/skills/review-implementation

Or run the installer script directly:

python3 ~/.codex/skills/.system/skill-installer/scripts/install-skill-from-github.py \
  --repo playmoreai/agent-skills \
  --path skills/prd
python3 ~/.codex/skills/.system/skill-installer/scripts/install-skill-from-github.py \
  --repo playmoreai/agent-skills \
  --path skills/review-implementation

After installation, restart Codex so the new skill is picked up.

Shell Installer

For machines with bash, curl, and tar:

curl -fsSL https://raw.githubusercontent.com/playmoreai/agent-skills/main/install.sh | bash
curl -fsSL https://raw.githubusercontent.com/playmoreai/agent-skills/main/install.sh \
  | SKILL_PATH=skills/review-implementation SKILL_NAME=review-implementation bash

Usage

Invoke skills in Codex by name, for example:

Use $prd to design the simplest user-centered solution and an evolving implementation checklist.
Use $review-implementation to verify the user experience and implementation, fix root causes, and simplify the coherent end state.

The prd skill keeps the user's task, purpose, target design, and an evolving implementation checklist in one concise living document. The review-implementation skill protects the user experience and correctness, fixes foundations instead of patching symptoms, and then refines the result in focused simplification passes.

Files in the repo

Repository payload5 top-level entries
  • skills
  • templates
  • .gitignore
  • install.sh
  • README.md

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More skills

obra/
superpowers

An agentic skills framework & software development methodology that works.

285k
1 add

Turn any codebase, with its docs, SQL schemas, configs, and PDFs, into a queryable knowledge graph. A /graphify skill for Claude Code, Cursor, Codex, and Gemini CLI: local deterministic AST parsing, every edge explained, no vector store.

117k
1 add
Vincentwei1021/
anything2explainer

Topic in, narrated explainer video out. A Claude Code / Codex skill that turns any topic into a black-canvas motion-graphics explainer video with TTS voiceover, subtitles and a chapter progress bar. Chinese or English; every frame drawn in code with Remotion.

666

Open-source AI job search: scan job portals, evaluate listings into a structured A-H report with a global 1-5 score, tailor your CV, track applications — runs locally in your AI coding CLI (Claude Code, Codex, OpenCode, Antigravity…)

71k