write-docs
द्वारा tldraw
tldraw के लिए SDK दस्तावेज़ीकरण लिखना। नए दस्तावेज़ीकरण लेख बनाते समय, मौजूदा दस्तावेज़ अपडेट करते समय, या दस्तावेज़ीकरण लेखन मार्गदर्शन की आवश्यकता होने पर उपयोग करें।…
npx skills add https://github.com/tldraw/tldraw --skill write-docsWrite documentation
This skill covers how to write and update tldraw SDK documentation.
Location
All documentation lives in apps/docs/content/. The main categories are:
| Directory | Purpose |
|---|---|
docs/ | SDK documentation articles |
releases/ | Release notes (see write-release-notes skill) |
examples/ | Example documentation |
getting-started/ | Quickstart and setup guides |
Process
1. Understand the scope
Before writing:
- Identify the target audience (new users, experienced developers, API reference)
- Check existing docs that cover related topics
- Look at relevant examples in
apps/examples/ - Read the API types and comments in the source code
2. Create the file
Create a new .mdx file in the appropriate directory with frontmatter:
---
title: Feature name
status: published
author: steveruizok
date: 3/22/2023
order: 1
keywords:
- keyword1
- keyword2
---
3. Write the content
Follow the structure:
- Overview — 1-2 paragraphs on what and why
- Basic usage — The simplest working example
- Details — Deeper explanation with more examples
- Edge cases — Advanced patterns, gotchas
- Links — Related docs and examples
4. Use MDX components
API links
Use [ClassName](?) or [ClassName#methodName](?) for API references:
The [Editor](?) class has many methods. Use [Editor#createShapes](?) to create shapes.
Code highlighting
Use <FocusLines> to highlight specific lines:
<FocusLines lines={[2,6,10]}>
\`\`\`tsx
import { Tldraw } from 'tldraw'
import { useSyncDemo } from '@tldraw/sync'
\`\`\`
</FocusLines>
Images
<Image
src="/images/api/events.png"
alt="A diagram showing an event being sent to the editor."
title="Caption text here."
/>
Tables for API documentation
Use tables for listing methods, options, or properties:
| Method | Description |
| ------------------------ | ---------------------------------------------- |
| [Editor#screenToPage](?) | Convert a point in screen space to page space. |
| [Editor#pageToScreen](?) | Convert a point in page space to screen space. |
| Value | Description |
| --------- | ---------------------------------------------------- |
| `default` | Sets the initial zoom to 100%. |
| `fit-x` | The x axis will completely fill the viewport bounds. |
5. Verify
Check that:
- Code examples actually work
- API links resolve correctly
- Images have alt text
- Headings use sentence case
- No AI tells (see style guide)
References
- Style guide: See
../shared/docs-guide.mdfor voice, tone, and formatting conventions.
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