pr
द्वारा tldraw
वर्तमान शाखा के लिए tldraw रिपॉजिटरी में एक पुल रिक्वेस्ट बनाएँ या अपडेट करें। इसका उपयोग तब करें जब उपयोगकर्ता pr को आमंत्रित करे, PR बनाने, मौजूदा PR को अपडेट करने, पुश करने के लिए कहे…
npx skills add https://github.com/tldraw/tldraw --skill prPR
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.
Workflow
- Gather context:
- Current branch:
git branch --show-current - Working tree:
git status --short - Existing PR:
gh pr view --json number,title,url 2>/dev/null - Recent branch commits:
git log main..HEAD --oneline 2>/dev/null || git log -3 --oneline
- Current branch:
- Prepare the branch:
- If on
main, create a new branch with a descriptive name. - Commit relevant changes, excluding secrets and explicitly private content.
- Push the branch to the remote. Never force push.
- If on
- If no PR exists, create one with
gh pr create. - If a PR exists, read it with
gh pr view --json title,body,labels,numberand inspect the changed-file summary withgh pr diff --stat. - Update the title or body with
gh pr editif the existing PR does not match the current diff or thewrite-prstandards. - Search for related issues and link them in the PR description with
Closes #123orRelates to #123where appropriate. - Share the PR URL with the user.
Handling problems
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.
Rules
- Follow
../write-pr/SKILL.mdfor all PR content standards. - Do not include AI attribution in commit messages, PR titles, or PR descriptions.
- Do not add yourself or an AI tool as a co-author.
tldraw की और Skills
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
वर्तमान शाखा को एक नई शाखा पर स्वच्छ, कथात्मक-गुणवत्ता वाले गिट कमिट इतिहास के साथ पुनः कार्यान्वित करें। जब स्वच्छ कॉपी शाखा बनाने, कमिट साफ करने के लिए कहा जाए तो उपयोग करें।
official
commit-changes
tldraw
वर्तमान परिवर्तनों के लिए git कमिट बनाएँ। जब कमिट करने, कमिट बनाने, कमिट संदेश उत्पन्न करने, या वर्तमान वर्कट्री को कमिट करने के लिए कहा जाए तो उपयोग करें…
official