zudo-codemirror-wisdom
GitHub repository

Type to search...

to open search from anywhere

/CLAUDE.md

CLAUDE.md at /CLAUDE.md

Path: CLAUDE.md

zudo-codemirror-wisdom

Takazudo's personal CodeMirror 6 dev notes, built with zudo-doc (zfb stack, MDX, Tailwind CSS v4). Base path: /.

Commands

pnpm dev                   # Start zfb dev server (port 4321)
pnpm build                 # Build: pnpm build:cm6 && zfb build
pnpm build:cm6             # Rebuild CodeMirror IIFE bundle
pnpm preview               # Preview built site via zfb preview
pnpm check                 # zfb type checking
pnpm check:html            # Validate built HTML
pnpm check:links           # Check for broken links
pnpm check:pin-parity      # Verify pin parity
pnpm check:wrangler-pin    # Verify wrangler pin
pnpm check:template-drift  # Check for template drift
pnpm format:md             # Format MDX files
pnpm format:md:check       # Check MDX formatting without writing
pnpm b4push                # Pre-push validation (cm6 bundle + format + typecheck + build)
pnpm setup:doc-skill       # Generate codemirror-wisdom skill + symlink all skills

Content Structure

  • English (default): src/content/docs/ -> /docs/...

  • Japanese: src/content/docs-ja/ -> /ja/docs/...

  • Japanese docs mirror the English directory structure

Bilingual rule: When adding or modifying EN content, update the corresponding JA file in the same PR. Keep code blocks and <HtmlPreview> blocks identical between languages -- only translate surrounding prose. If a Japanese version does not yet exist, create it.

Exception: Pages with generated: true in frontmatter (e.g., claude-resources auto-generated pages) do not require Japanese translations.

Content Categories

Top-level directories under src/content/docs/. Directories with header nav entries are mapped via categoryMatch in src/config/settings.ts:

  • overview/ - Introduction and getting started

  • core/ - Core CodeMirror 6 concepts

  • vim-mode/ - Vim mode integration

  • extensions/ - CodeMirror extensions

  • recipes/ - Real-world patterns and examples

  • claude/ - Claude Code integration docs

Auto-generated directories (no header nav entry, managed by claude-resources integration):

  • claude-md/ - CLAUDE.md file documentation (noPage: true)

  • claude-skills/ - Claude Skills documentation (noPage: true)

Writing Docs

All documentation files use .mdx format with YAML frontmatter.

Frontmatter Fields

Schema defined in src/config/docs-schema.ts (collections registered in zfb.config.ts):

FieldTypeRequiredDescription
titlestringYesPage title, rendered as the page h1
descriptionstringNoSubtitle displayed below the title
sidebar_positionnumberNoSort order within category (lower = higher). Always set this for predictable ordering
sidebar_labelstringNoCustom text for sidebar display (overrides title)
tagsstring[]NoCross-category grouping tags
draftbooleanNoExclude from build entirely
unlistedbooleanNoBuilt but noindexed, hidden from sidebar/nav
hide_sidebarbooleanNoHide the left sidebar, center content
hide_tocbooleanNoHide the right-side table of contents
standalonebooleanNoHidden from sidebar nav but still indexed
slugstringNoCustom URL slug override
generatedbooleanNoBuild-time generated content (skip translation)
search_excludebooleanNoExclude from search results
pagination_nextstring/nullNoOverride next page link (null to hide)
pagination_prevstring/nullNoOverride prev page link (null to hide)
doc_historybooleanNoShow/hide the doc history widget for this page
category_no_pagebooleanNoMake the index.mdx a non-linked sidebar header (frontmatter form of _category_.json noPage)
category_sort_order"asc"/"desc"NoOverride child sort direction for a category index

Content Rules

  • No h1 in content: The frontmatter title is automatically rendered as the page h1. Start your content with ## h2 headings. Do not write # h1 in the MDX body.

  • Always set sidebar_position: Without it, pages sort alphabetically which is unpredictable. Use integers starting from 1.

  • Kebab-case file names: Use my-article.mdx, not myArticle.mdx or my_article.mdx.

Linking Between Docs

Use relative file paths with the .mdx extension:

[Link text](./sibling-page.mdx)
[Link text](../other-category/page.mdx)
[Link text](../other-category/page.mdx#anchor)

The remark plugin resolves these during build. External links use standard URLs.

Admonitions

Available globally without imports. Two syntax forms:

Directive syntax (preferred for longer content):

:::note[Custom Title]
Content here.
:::

JSX syntax (for inline use):

<Note>Short note content.</Note>

Types: <Note>, <Tip>, <Info>, <Warning>, <Danger>, <Caution>

Additional directives:

  • :::details[Summary text] - Collapsible section

  • :::code-group - Tabbed code block group

Mermaid Diagrams

Mermaid is enabled. Use fenced code blocks:

```mermaid
graph TB
  A --> B
```

HtmlPreview Component

For interactive HTML/CSS/JS previews with code display:

<HtmlPreview html="<div>Hello</div>" css="div { color: red; }" />

Use js/displayJs props for JavaScript demos.

Live Demos (CM6 Bundle)

Pre-built IIFE bundle at public/assets/cm6-bundle.min.js exposes window.CM in every HtmlPreview iframe.

  • Rebuild: pnpm build:cm6 (entry: scripts/cm6-bundle-entry.ts)

  • js prop: runtime code using CM.* globals

  • displayJs prop: clean ESM imports shown in "Show code" panel

  • The bundle is injected via settings.htmlPreview.head (base /, path /assets/cm6-bundle.min.js)

  • Keep HtmlPreview blocks identical in EN/JA -- only translate surrounding text.

Navigation is filesystem-driven. Directory structure directly becomes sidebar navigation.

  • Pages are ordered by sidebar_position (ascending). Without it, alphabetical order is used.

  • Category index pages (index.mdx) control category position via their own sidebar_position.

Create index.mdx in a category directory when you want custom intro copy, description, or explicit sidebar ordering. The framework auto-generates category index pages when missing, but explicit ones give better control.

Use _category_.json for category-level metadata when needed:

{
  "label": "Category Name",
  "position": 900,
  "description": "Category description",
  "noPage": true
}

The noPage: true flag means the category has no landing page (just groups items). Alternatively, use category_no_page: true in an index.mdx frontmatter.

Defined in src/config/settings.ts via headerNav. Each item maps to a top-level content directory via categoryMatch:

{ label: "Overview", path: "/docs/overview", categoryMatch: "overview" }

categoryMatch must be a single top-level directory name. Adding a new header nav item requires editing settings.ts.

Content Creation Workflow

Adding a New Article

  1. Create the English .mdx file in the appropriate category under src/content/docs/

  2. Add frontmatter with at least title and sidebar_position

  3. Write content starting with ## h2 headings (not # h1)

  4. Create the matching Japanese file under src/content/docs-ja/ with the same path

  5. Keep code blocks, Mermaid diagrams, and <HtmlPreview> blocks identical -- only translate prose

  6. Run pnpm format:md to format the MDX files

  7. Run pnpm build to verify the site builds correctly

Adding a New Category

  1. Create the directory under src/content/docs/ (kebab-case)

  2. Create index.mdx with title, description, and sidebar_position

  3. Add a headerNav entry in src/config/settings.ts with categoryMatch pointing to the directory name

  4. Mirror the directory structure under src/content/docs-ja/

  5. Run pnpm build to verify

Doc Skill (codemirror-wisdom)

The codemirror-wisdom skill (.claude/skills/codemirror-wisdom/SKILL.md) is generated by pnpm setup:doc-skill (runs scripts/setup-doc-skill.sh). It is gitignored -- do NOT track it in git or edit it directly. To update the skill content, edit the generator script and re-run pnpm setup:doc-skill.

MDX Components

Available globally in MDX without imports:

  • <Note>, <Tip>, <Info>, <Warning>, <Danger>, <Caution> - Admonitions

  • <HtmlPreview> - Interactive HTML/CSS/JS preview with code display

Project Layout

pages/          # Host-app routing layer (zfb entry points)
src/
  components/   # Shared UI components
  config/       # settings.ts — site-wide config, docs-schema.ts — frontmatter schema
  content/      # MDX doc pages (docs/ + docs-ja/)
  utils/        # Shared utilities
plugins/        # zfb integration plugins (.mjs)
zfb.config.ts   # Build config (framework, collections, plugins, adapter)

Site Config

  • Base path: / (root — no subpath prefix)

  • Live URL: https://zudo-codemirror-wisdom.takazudomodular.com/

  • Settings: src/config/settings.ts

  • Build config: zfb.config.ts

CI/CD

  • PR checks: typecheck + build + Cloudflare Workers static assets preview

  • Main deploy: build -> wrangler deploy -> Cloudflare Workers + IFTTT notification

  • Hosting: Cloudflare Workers static assets (not Pages)

  • Secrets: CLOUDFLARE_ACCOUNT_ID, CLOUDFLARE_API_TOKEN, IFTTT_PROD_NOTIFY

Revision History

Takeshi TakatsudoCreated: 2026-03-30T07:00:13+09:00Updated: 2026-06-20T06:39:24Z