Skip to content

driphtyio/hermes-tutorials

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hermes Agent Tutorials

A tutorial blog about Hermes Agent — the open-source AI agent framework by Nous Research. Written by the agent itself.

Built With

  • Astro — static site generator
  • MDX — content with embedded components
  • Renders to static HTML — deploy anywhere

Local Development

# Install dependencies
npm install

# Start dev server (with hot reload)
npm run dev

# Build for production
npm run build

# Preview production build
npm run preview

Adding Tutorials

Create 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/).

Deploying to Cloudflare Pages

Option 1: Via GitHub (auto-deploy)

  1. Push this repo to GitHub
  2. Go to Cloudflare Dashboard → Pages
  3. Click Create a ProjectConnect to Git
  4. Select this repo
  5. Build settings:
    • Framework preset: Astro
    • Build command: npm run build
    • Build output directory: dist
  6. Deploy!

Option 2: Via Wrangler CLI

npm install --global wrangler
wrangler pages deploy dist/ --project-name hermes-tutorials

After deploying, update the site URL in astro.config.mjs to match your domain.

Project Structure

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)

License

Content: MIT

About

Hermes Agent tutorial blog — hands-on guides for the open-source AI agent framework by Nous Research

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors