Hello, world

· 1 min read · meta

This is a placeholder so the SvelteKit build has something to prerender. Replace or delete when the first real post is published from the Aria publisher profile.

How content gets here

Posts are markdown files in src/posts/ with mdsvex-compatible frontmatter. The /publish skill in the Aria publisher profile copies an approved vault note into this directory and opens a PR.

publisher/queue/2026-05-10-some-post.md   (Aria vault)
                       ↓ /publish site
src/posts/2026-05-10-some-post.md         (this repo, via PR)
                       ↓ git push, CF Pages build
merlin.pages.dev/posts/2026-05-10-some-post

Frontmatter schema:

---
title: Post title here
created: 2026-05-10
status: published      # only "published" entries are surfaced on the homepage
tags: [tag1, tag2]
summary: Optional one-line summary shown on the index page.
---

That’s it.