write-example

作成者: tldraw

tldraw SDKのexamplesアプリ向けのサンプルコードを作成します。新しいサンプルを作成するとき、SDKのデモを追加するとき、またはapps/examples内でサンプルコードを記述するときに使用します。

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

Writing tldraw examples

The examples project (apps/examples) contains minimal demonstrations of how to use the tldraw SDK. Examples are embedded on the docs site and deployed to examples.tldraw.com.

Standards for examples in apps/examples/src/examples.

Example structure

Each example lives in its own folder:

apps/examples/src/examples/
└── my-example/
    ├── README.md          # Required metadata
    ├── MyExampleExample.tsx  # Main example file
    └── my-example.css     # Optional styles

Folder name

  • Lowercase kebab-case: custom-canvas, button-demo, magical-wand
  • Used as the URL path for the example

README.md

Required frontmatter format:

---
title: Example title
component: ./ExampleFile.tsx
category: category-id
priority: 1
keywords: [keyword1, keyword2]
---

One-line summary of what this example demonstrates.

---

Detailed explanation of the example. Include code snippets here if they help explain concepts not obvious from the example code itself.

Frontmatter fields

FieldDescription
titleSentence case, corresponds to folder name
componentRelative path to example file
categoryOne of the valid category IDs (see below)
priorityDisplay order within category (lower = higher)
keywordsSearch terms (avoid obvious terms like "tldraw")

Valid categories

getting-started, configuration, editor-api, ui, layout, events, shapes/tools, collaboration, data/assets, use-cases

Example file

Naming

  • PascalCase ending with "Example": CustomCanvasExample.tsx, ButtonExample.tsx
  • Name should correspond to the folder name and title

Structure

import { Tldraw } from 'tldraw'
import 'tldraw/tldraw.css'

export default function MyExampleExample() {
	return (
		<div className="tldraw__editor">
			<Tldraw />
		</div>
	)
}

Requirements:

  • Must have a default export React component
  • Use tldraw__editor class for full-page examples
  • Import tldraw/tldraw.css for styles

Layout

  • Full page: wrap in <div className="tldraw__editor">
  • Inset: see existing examples for page layout patterns

Styles

  • Put CSS in a separate file named after the example: my-example.css
  • Import alongside tldraw CSS: import './my-example.css'
  • Avoid extensive inline styles via the style prop

Control panels

For examples that need buttons or controls, use the TopPanel component slot with TldrawUiButton:

import { Tldraw, TldrawUiButton, useEditor } from 'tldraw'
import 'tldraw/tldraw.css'
import './my-example.css'

function MyControls() {
	const editor = useEditor()
	return (
		<div className="tlui-menu my-controls">
			<TldrawUiButton type="normal" onClick={() => editor.zoomIn()}>
				Zoom in
			</TldrawUiButton>
			<TldrawUiButton type="normal" onClick={() => editor.zoomOut()}>
				Zoom out
			</TldrawUiButton>
		</div>
	)
}

export default function MyExampleExample() {
	return (
		<div className="tldraw__editor">
			<Tldraw components={{ TopPanel: MyControls }} />
		</div>
	)
}

CSS for control panels:

.my-controls {
	display: flex;
	flex-wrap: wrap;
	margin: 8px;
}

Comments

Use footnote format with numbered references:

import { Tldraw, type TLComponents } from 'tldraw'
import 'tldraw/tldraw.css'

// [1]
const components: TLComponents = {
	PageMenu: null,
}

export default function CustomComponentsExample() {
	return (
		<div className="tldraw__editor">
			{/* [2] */}
			<Tldraw components={components} />
		</div>
	)
}

/*
[1]
Define component overrides outside the React component so they're static.
If defined inside, use useMemo to prevent recreation on every render.

[2]
Pass component overrides via the components prop.
*/

Example types

Tight examples

  • Narrow focus on a specific SDK feature
  • Minimal styling
  • Meant to be read, not used
  • Remove any extraneous code

Use-case examples

  • Show a recognizable user experience
  • Prioritize clarity and completeness
  • Category: use-cases

Additional files

  • Split complex code into separate files if it distracts from the example's purpose
  • Example: complex input component in Input.tsx
  • Keep the main example file focused on demonstrating the concept

Important

  • Follow React and TypeScript best practices
  • Never use title case for titles - use sentence case
  • Keep examples minimal and focused

tldrawのその他のスキル

write-issue
tldraw
tldrawリポジトリにおけるGitHub Issueの作成と管理のための参照基準。別のスキルやワークフローがIssueを必要とする際の補助ガイダンスとして使用します。
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
issue
tldraw
ユーザーの説明からtldrawリポジトリにGitHub issueを作成・調査します。ユーザーがissueを呼び出したり、issueの作成やバグ報告を依頼した場合に使用します。
official