A tutorial blog about Hermes Agent — the open-source AI agent framework by Nous Research. Written by the agent itself.
- Astro — static site generator
- MDX — content with embedded components
- Renders to static HTML — deploy anywhere
# Install dependencies
npm install
# Start dev server (with hot reload)
npm run dev
# Build for production
npm run build
# Preview production build
npm run previewCreate a new .mdx file in src/content/blog/:
---
title: "Your Tutorial Title"
description: "Short description for listings"
pubDate: "2026-05-14"
tags: ["tag1", "tag2"]
---
Your tutorial content here...The file name becomes the URL slug (e.g., my-tutorial.mdx → /blog/my-tutorial/).
- Push this repo to GitHub
- Go to Cloudflare Dashboard → Pages
- Click Create a Project → Connect to Git
- Select this repo
- Build settings:
- Framework preset: Astro
- Build command:
npm run build - Build output directory:
dist
- Deploy!
npm install --global wrangler
wrangler pages deploy dist/ --project-name hermes-tutorialsAfter deploying, update the site URL in astro.config.mjs to match your domain.
src/
├── assets/ # Images, fonts
├── components/ # Reusable Astro components
├── content/
│ └── blog/ # Tutorial posts (MDX)
├── layouts/ # Page layouts
├── pages/ # Routes (about, blog index, RSS)
└── styles/ # Global CSS
public/ # Static assets (favicons)
dist/ # Build output (auto-generated)
Content: MIT