skills/take/SKILL.md
Find an issue in tldraw/tldraw, implement it, and open a pull request.
The user may reference an issue by number, URL, or description.
gh issue view 123 --repo tldraw/tldraw
gh issue list --repo tldraw/tldraw --search "dark mode" --state open --limit 10
gh issue list --repo tldraw/tldraw --search "dark mode" --state all --limit 10
If there is one clear match, proceed. If several issues match, ask the user to choose from issue numbers and titles. If none match, ask whether to create a new issue using the issue skill.
Read the full issue and comments. Identify:
Agent-drafted issues may include ## Confidence and ## Open questions sections. Treat any unanswered Critical: question, _Awaiting answer._ entry, or More Info Needed label as a blocker unless codebase exploration proves the intended behavior is unambiguous. Resolve blockers with the user before implementing; non-critical questions marked _Deferred by user; not blocking implementation._ may remain open.
If the issue lacks detail, explore the codebase before deciding whether implementation is safe.
Assign the issue to the current GitHub user. If someone else is already assigned, ask the user whether to proceed.
Create a concise implementation checklist based on:
Create a new branch from main.
Work through the checklist:
Run the smallest relevant checks first. Use broader checks when the change touches shared behavior.
Typical final checks:
yarn typecheck
yarn lint
For focused package changes, prefer the relevant workspace tests before repo-wide checks.
Use the pr skill.
Closes #<issue-number>.End with:
_Awaiting answer._ placeholders.