tldraw/pr
Create or update a pull request for the current branch in the tldraw repository. Use when the user invokes pr, asks to create a PR, update an existing PR, push current branch changes for review, or prepare a pull request.
npx skills add https://github.com/tldraw/tldraw --skill pr
Create or update a pull request for the current branch.
Use ../write-pr/SKILL.md as the standards reference for PR titles, descriptions, release notes, API changes, code changes tables, and human-note preservation.
git branch --show-currentgit status --shortgh pr view --json number,title,url 2>/dev/nullgit log main..HEAD --oneline 2>/dev/null || git log -3 --onelinegh pr list --state open --json number,title,url,author,headRefName,updatedAt, and search for related work: gh pr list --search "<keywords>" --state open.gh pr diff <number> --stat) to judge real overlap, not just a shared filename.main, create a new branch with a descriptive name.git diff main...HEAD), each with a focused lens, then fold their findings into concrete fixes:gh pr create.gh pr view --json title,body,labels,number and inspect the changed-file summary with gh pr diff --stat.gh pr edit if the existing PR does not match the current diff or the write-pr standards.Closes #123 or Relates to #123 where appropriate.Committing automatically runs hooks. Fix formatting, lint, type, or import issues when the fix is mechanical.
If a hook failure requires meaningful product or implementation decisions, stop and ask the user how to proceed.
Never force commit or force push.
../write-pr/SKILL.md for all PR content standards.Take tldraw/pr from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.