
Issue Tracker
FreeStreamline GitHub issue creation for tldraw.
Free Β· Opens the source repo
What Issue Tracker does
The Issue Tracker skill simplifies the process of creating and managing GitHub issues for the tldraw repository. When a user describes a bug, feature request, or any other issue, this skill captures that description and generates a corresponding GitHub issue. The skill is designed to ensure that the user's intent is clearly understood and documented, allowing developers to pick up the issue with sufficient context to begin work immediately.
Upon activation, the skill takes the user's input and formats it into a structured issue body. This includes a verbatim account of the user's description, a readback summary that clarifies the problem, and a set of open questions aimed at gathering more information. This approach helps to eliminate ambiguity and ensures that the issue is actionable. The skill emphasizes product intent over technical details, which is crucial for keeping the focus on user experience.
This skill is particularly useful for developers and designers working with the tldraw project who need to report issues quickly and efficiently. By using this skill, users can avoid the lengthy process of manually creating issues and instead focus on providing the necessary context for their reports. The structured format also aids in triaging issues, as it clearly outlines what information is still needed before the issue can be addressed.
Overall, the Issue Tracker skill is a valuable tool for maintaining clear communication between users and developers, facilitating a smoother workflow in issue management.
When to use it
Use this skill when you need to report a bug or request a feature for the tldraw project.
When not to use it
This skill is not suitable for projects outside of the tldraw repository or for users who require in-depth technical analysis of issues.
What you can build with it
Reporting a Bug
A user encounters a bug in the tldraw application and uses the skill to quickly report it, ensuring all relevant details are captured.
Requesting a Feature
A designer wants to request a new feature for tldraw and utilizes the skill to articulate their needs and gather feedback.
Clarifying an Issue
After creating an issue, a user engages with the skill to refine the details and clarify any uncertainties before the development team takes action.
How to install Issue Tracker
View source1. Install with the skills CLI
npx skills add tldraw/tldraw/issue --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by tldrawIssue
Create a GitHub issue on tldraw/tldraw from a user description, then interrogate the user to capture enough of their intent for the issue to be worked on.
Use ../write-issue/SKILL.md as the standards reference for issue titles, bodies, types, labels, and triage conventions.
The goal is not to research the codebase to death. It is to capture the user's full intent and context in the issue, so that whoever (or whatever) picks it up later has what they need. You do this by creating the issue immediately, writing a brief readback of the problem, and then asking the user the questions that would sharpen that understanding.
Issue body shape
The body always starts with the user's original description, verbatim, annotated with the human emoji and separated from the rest by a horizontal rule:
π£οΈ: {user_description}
---
{two to five sentences that read back your understanding of the problem, expected behavior, and scope}
## Open questions
1. **{question}**
_Awaiting answer._
2. **{question}**
_Awaiting answer._
Confidence: {n}%, {ready_status}.
- The readback paragraph is the agent's understanding of the problem. It should be short enough for the user to quickly correct, but specific enough to make the intended behavior clear. Keep it product-facing: no code blocks, no long implementation analysis, and no line-by-line diagnosis.
- Do not include implementation breadcrumbs in the issue body by default. Avoid file paths, function names, line numbers, code snippets, likely causes, and fix recipes unless the user explicitly asks to include them. Whoever picks up the work can rediscover that technical context.
- Keep product intent ahead of code diagnosis. The issue should record what the user wants, what they observed, and what scope or behavior they confirmed. Do not present a root cause or fix direction as fact unless the user has confirmed that framing.
- Each open question targets a specific gap in intent or context. Avoid questions you could answer yourself by looking at the code.
- Keep questions atomic. Do not bundle user-intent questions with implementer-verifiable technical checks. If the user answers only part of a compound question, keep the remaining part open only when it still needs the user's intent or context.
- Prefer omitting implementer-verifiable unknowns over asking the user to verify them. Ask only when the user's own context or intent matters.
- Prefix a question with
Critical:inside the bold, e.g.**Critical: Which package should we rename?**, only when it is genuinely blocking β the issue cannot be worked on at all until it is answered. Most issues have none; do not inflate ordinary gaps into critical ones. - As the user answers, replace
_Awaiting answer._with their answer (lightly cleaned up) directly beneath the question, revise the readback, and add or drop unanswered questions as needed. - If the user chooses not to answer a non-critical question, replace
_Awaiting answer._with_Deferred by user; not blocking implementation._. Do not use this for critical questions. - The confidence line is a plain-text status line, not a section. It reflects whether the issue contains enough of the user's context and intent to be worked on, not confidence in the eventual fix. Use a short status phrase such as
ready to get started,still need more information, orblocked on a critical question.
Workflow
- Gather context:
- User's issue description.
- Current branch:
git branch --show-current. - Recent issues:
gh issue list --repo tldraw/tldraw --limit 5 --json number,title --jq '.[] | "#\(.number) \(.title)"'.
- Do a lightweight triage check, not implementation research:
- Look for duplicate or closely related issues.
- Use repo context only to choose issue type, labels, milestone, and broad affected area.
- If a shallow code search is needed to avoid asking a bad question, do it, but do not add file paths, function names, line numbers, code snippets, likely causes, or fix recipes to the issue body.
- Anything you can answer yourself from repo context should not become an open question.
- For visual bugs, identify a reproduction target when possible:
- Examples app:
localhost:5420fromyarn dev. - tldraw.com app:
localhost:3000fromyarn dev-app. - Docs site:
localhost:3001fromyarn dev-docs. - If the user provided an image and you have a path or URL for it, embed or attach it in the GitHub issue.
- If the image is visible only in the chat and cannot be attached, describe it as visual context. Do not write "screenshot attached" unless the issue actually contains the image.
- If screenshots are useful but not feasible locally and the user has not provided one, make a screenshot request one of your open questions.
- Examples app:
- Write the issue title and body using
../write-issue/SKILL.md. The body follows the shape above: verbatim description, readback paragraph, open questions, and the confidence status line. - Create the issue:
gh issue create --repo tldraw/tldraw --title "..." --body "..."
- Set the issue type (
Bug,Feature,Example, orTask) βgh issue create --typeis unreliable, so use the script:
skills/issue/scripts/set-issue-type.sh <issue-number> <type-name>
- Assign a milestone only when there is a clear fit:
Improve developer resourcesfor examples, documentation, comments, starter kits, andnpm create tldraw.Improve automationsfor GitHub Actions, review bots, CI/CD, and automation work.
- Manage the
More Info Neededlabel consistently:- Add it only when a critical question is unanswered or the confidence line says the issue still needs more information.
- Remove it when the issue is ready to get started, even if non-blocking considerations remain.
- Respond to the user with the issue URL, your readback, and the list of open questions. Ask them directly, leading with any critical question.
- Interrogate the user. After each reply:
- Update the issue body: write the user's answer beneath the relevant question, revise the readback, recompute the confidence status line, and add or drop questions as their answers reveal new gaps or close old ones.
- Reconsider the issue's framing in light of the new context. If an answer changes what the issue actually is, update the title (
gh issue edit --title), the issue type (the script from step 6), or its labels to match β for example, when a reported bug turns out to be a feature request, or the real problem is narrower than the title suggests. - If the user corrects your framing, especially with phrases like "actually" or "well actually," treat it as a signal to rewrite the readback around the corrected distinction. Remove or soften obsolete assumptions before asking more questions.
gh issue edit <issue-number> --repo tldraw/tldraw --body "..."
- Keep going, one round at a time, until the readback and question answers hold enough of the user's intent and context to be worked on.
- The issue is ready when no critical question is unanswered and it holds enough of the user's intent to be worked on. Never declare it ready while a critical question is open, regardless of how complete the rest is.
- Low-priority questions the user has chosen to defer may stay open; readiness does not require answering them. Mark them as
_Deferred by user; not blocking implementation._rather than leaving_Awaiting answer._placeholders. - When ready, remove the
More Info Neededlabel, tell the user the issue can be picked up, and set the confidence line accordingly, e.g.Confidence: 84%, ready to get started.Leave the readback, every question, and the confidence line in the issue as a record of the discussion. Do not delete them.
Rules
- Always create the issue before interrogating the user, so they can track it from the first reply.
- Ask only questions that capture the user's intent or context. Do not offload work you could do yourself.
- Update the issue after every reply rather than batching answers at the end.
Frequently asked questions about Issue Tracker
Similar skills
Spring Boot Testing
Master testing techniques for Spring Boot 4 applications.
GitHub Issues
Manage GitHub issues efficiently with MCP tools.
Geofeed Tuner
Optimize your IP geolocation feeds in CSV format.
Batch Files
Master Windows batch scripting for automation and task management.
Adobe Illustrator Scripting
Automate your Illustrator workflows with ExtendScript.
Plugin Structure
Create and organize Claude Code plugins effectively.
