My Post
For example, this is a simple post that doesn’t have any content. It’s just a placeholder
This is the second entry. The point of Leaky Wisdom is simple: write down the things that leak out while building real AI and systems work — the parts that don’t fit in a README and never make it into a paper.
How this is built
Every article is a Markdown file. Drop a .md (or .mdx) into
src/content/articles/, set the frontmatter, and it shows up here, on the index,
and in the RSS feed automatically.
const articles = defineCollection({
loader: glob({ pattern: '**/*.{md,mdx}', base: './src/content/articles' }),
schema: z.object({
title: z.string(),
description: z.string(),
pubDate: z.coerce.date(),
tags: z.array(z.string()).default([]),
}),
});
Because the source is MDX-capable, a future post can embed a live component — a token-by-token decoder, a latency chart — without changing anything about how the site is built or served.
Static where it can be, interactive where it must be.
More soon.