# Gh Pr Ready

> Mark a pull request as ready for review (or convert back to draft) using gh CLI.

- Skill: `dceoy/gh-pr-ready` (Agent Skill)
- Install (CLI): `npx skillmds@latest add dceoy/gh-pr-ready`
- Raw SKILL.md: https://api.skillmd.com/api/skills/dceoy/gh-pr-ready/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: dceoy (https://skillmd.com/u/dceoy)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/dceoy/gh-pr-ready

---


# GitHub PR Ready

## When to use

- The user asks to mark a draft PR as ready for review.
- You need to convert a PR back to draft (`--undo`).

## Inputs to confirm

- PR number/URL/branch (or use current branch PR).
- Whether to mark ready or undo.

## Workflow

1. Verify auth:
   ```bash
   gh --version
   gh auth status
   ```
2. Mark ready or undo:
   ```bash
   gh pr ready 123
   gh pr ready 123 --undo
   ```

## Examples

```bash
# Mark current branch PR as ready
~ gh pr ready
```

## Notes

- Without an argument, `gh pr ready` targets the PR for the current branch.

## References

- GitHub CLI manual: https://cli.github.com/manual/
- `gh pr ready --help`

