Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ website/public/llms.txt linguist-generated=true
website/public/llms-full.txt linguist-generated=true
website/public/docs/**/*.md linguist-generated=true
website/public/typedoc/**/* linguist-generated=true
skills/** linguist-generated=true
**/Cargo.lock linguist-generated=true

# I refuse to admit there's more TypeScript than Rust in the codebase
Expand All @@ -40,4 +41,3 @@ frontend/**/*.ts linguist-generated=true
frontend/**/*.tsx linguist-generated=true
frontend/**/*.js linguist-generated=true
frontend/**/*.jsx linguist-generated=true

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,7 @@ website/public/docs/
website/public/llms-full.txt
website/public/llms.txt
website/.playwright-mcp/
website/scripts/typecheck-staging/snippets/
website/scripts/typecheck-staging/node_modules/
.vercel

24 changes: 24 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,30 @@ gt m

- If you need to look at the documentation for a package, visit `https://docs.rs/{package-name}`. For example, serde docs live at https://docs.rs/serde/

## Content Frontmatter

### Docs (`website/src/content/docs/**/*.mdx`)

Required frontmatter fields:

- `title` (string)
- `description` (string)
- `skill` (boolean)

### Blog + Changelog (`website/src/content/posts/**/page.mdx`)

Required frontmatter fields:

- `title` (string)
- `description` (string)
- `author` (enum: `nathan-flurry`, `nicholas-kissel`, `forest-anderson`)
- `published` (date string)
- `category` (enum: `changelog`, `monthly-update`, `launch-week`, `technical`, `guide`, `frogs`)

Optional frontmatter fields:

- `keywords` (string array)

## Examples

All example READMEs in `/examples/` should follow the format defined in `.claude/resources/EXAMPLE_TEMPLATE.md`.
Expand Down
Loading
Loading