take

작성자: tldraw

tldraw/tldraw 저장소에서 GitHub 이슈를 찾아 할당하고, 구현한 후 검증하여 풀 리퀘스트를 엽니다. 사용자가 take를 호출하거나 이슈를 가져오라고 요청할 때 사용합니다.

npx skills add https://github.com/tldraw/tldraw --skill take

Take

Find an issue in tldraw/tldraw, implement it, and open a pull request.

Workflow

1. Find the issue

The user may reference an issue by number, URL, or description.

  • For a number or URL, fetch the issue directly:
gh issue view 123 --repo tldraw/tldraw
  • For a description, search open issues first:
gh issue list --repo tldraw/tldraw --search "dark mode" --state open --limit 10
  • If no open issue matches, search all issues:
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.

2. Understand the issue

Read the full issue and comments. Identify:

  • Issue type: bug, feature, enhancement, cleanup, docs, or task.
  • Requested behavior and acceptance criteria.
  • Technical notes and affected files.
  • Relevant discussion or clarifications.

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.

3. Assign the issue

Assign the issue to the current GitHub user. If someone else is already assigned, ask the user whether to proceed.

4. Plan the implementation

Create a concise implementation checklist based on:

  • The issue description.
  • Acceptance criteria.
  • Codebase exploration.
  • Existing repo patterns.

5. Implement

Create a new branch from main.

Work through the checklist:

  • Read files before editing them.
  • Follow existing patterns.
  • Keep changes focused on the issue.
  • Avoid speculative improvements.
  • Update docs, examples, tests, or API reports when the issue requires it.

6. Verify

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.

7. Create the PR

Use the pr skill.

  • Link the issue with Closes #<issue-number>.
  • Include relevant context from the issue discussion.
  • Include a clear test plan.

8. Summarize

End with:

  • Issue implemented.
  • Key changes and files modified.
  • Verification performed.
  • PR link.
  • Manual testing steps, if relevant.
  • Any acceptance criteria that could not be met and why.

Rules

  • Ask the user when requirements are unclear. Do not implement past unanswered critical questions or unresolved _Awaiting answer._ placeholders.
  • Do not guess at unspecified product behavior.
  • Keep the implementation scoped to the issue.
  • Never include AI attribution in commits, issues, or PRs.

tldraw의 다른 스킬

write-example
tldraw
tldraw SDK 예제 앱을 위한 예제 작성. 새로운 예제를 만들거나, SDK 데모를 추가하거나, apps/examples에서 예제 코드를 작성할 때 사용합니다.
official
write-issue
tldraw
tldraw 저장소에서 GitHub 이슈를 작성하고 유지 관리하기 위한 참조 표준입니다. 다른 스킬이나 워크플로우가 이슈가 필요할 때 지원 지침으로 사용하세요.
official
write-pr
tldraw
tldraw 저장소에서 풀 리퀘스트 제목과 설명을 작성하기 위한 참조 표준입니다. 다른 스킬이나 워크플로우가 필요할 때 지원 지침으로 사용됩니다...
official
write-release-notes
tldraw
tldraw SDK 릴리스를 위한 릴리스 노트 문서를 작성합니다. 새로운 릴리스 문서를 만들거나, 처음부터 릴리스 노트를 초안 작성하거나, 릴리스를 검토할 때 사용합니다.
official
write-tbp
tldraw
tldraw 기능과 구현 세부 사항에 관한 기술 블로그 포스트를 작성합니다. tldraw가 흥미로운 문제를 해결하는 방법에 대한 블로그 콘텐츠를 만들 때 사용하세요.
official
write-unit-tests
tldraw
tldraw SDK에 대한 단위 테스트 및 통합 테스트를 작성합니다. packages/editor 또는...에서 새 테스트를 만들거나, 테스트 커버리지를 추가하거나, 실패하는 테스트를 수정할 때 사용합니다.
official
clean-copy
tldraw
현재 브랜치를 깔끔하고 서사적인 품질의 git 커밋 기록을 가진 새 브랜치로 재구현합니다. 깔끔한 복사 브랜치를 만들거나 커밋을 정리하라는 요청이 있을 때 사용하세요.
official
commit-changes
tldraw
현재 변경 사항에 대한 git 커밋을 생성합니다. 커밋 요청, 커밋 생성, 커밋 메시지 생성, 또는 현재 작업 트리를 커밋하라는 요청을 받았을 때 사용합니다.
official