commit-changes
द्वारा tldraw
वर्तमान परिवर्तनों के लिए git कमिट बनाएँ। जब कमिट करने, कमिट बनाने, कमिट संदेश उत्पन्न करने, या वर्तमान वर्कट्री को कमिट करने के लिए कहा जाए तो उपयोग करें…
npx skills add https://github.com/tldraw/tldraw --skill commit-changesCommit changes
Create a focused git commit for the current changes.
Workflow
- Gather context:
- User notes, if provided.
- Current branch:
git branch --show-current. - Working tree:
git status --short. - Staged changes:
git diff --cached --stat. - Unstaged changes:
git diff --stat. - Recent commits for style reference:
git log -5 --oneline.
- Review the changed files.
- If there are no changes to commit, tell the user and stop.
- If there are unstaged changes, stage the relevant files with
git add. - Do not stage files that look like secrets, credentials, API keys, or private environment files.
- Write a conventional commit message:
type(scope): brief description
Optional longer explanation if the changes are complex.
Allowed types: feat, fix, refactor, test, docs, chore, perf, style, build, ci.
Message guidelines
- Keep the first line under 72 characters.
- Use imperative mood, for example
add feature, notadded feature. - Be specific about what changed and why.
- Incorporate user-provided context when it clarifies intent.
Commit rules
- Use
git commit -m "message". - Do not push.
- Do not amend unless explicitly requested.
- Do not use
--no-verify. - Do not include AI attribution.
If the commit fails because of hooks, fix mechanical formatting, lint, or import issues and retry. If the hook failure reveals a meaningful product or implementation issue, stop and ask the user how to proceed.
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
issue
tldraw
उपयोगकर्ता के विवरण से tldraw रिपॉजिटरी में GitHub issue बनाएँ और उस पर शोध करें। इसका उपयोग तब करें जब उपयोगकर्ता issue का उल्लेख करे, issue बनाने के लिए कहे, बग रिपोर्ट करे,…
official