Marketing site and agent registry for Sentinel.
Live: https://sentinel.raskell.io
# Install tools
mise install
# Start dev server
mise run serveVisit http://127.0.0.1:1111
| Task | Description |
|---|---|
mise run serve |
Dev server with live reload |
mise run build |
Build for production |
mise run convert-images |
Convert images to AVIF |
sentinel.raskell.io/
├── config.toml # Zola configuration
├── content/
│ ├── _index.md # Homepage
│ └── agents/ # Agent registry pages
├── sass/style.scss # Styles (Catppuccin palette)
├── static/ # Images, fonts, favicon
└── templates/ # Zola templates
Create content/agents/your-agent.md:
+++
title = "Agent Name"
description = "Short description"
template = "agent.html"
[extra]
official = false
author = "Your Name"
status = "Stable"
version = "1.0.0"
repo = "https://github.com/..."
+++
Documentation content...- Zola — Static site generator
- mise — Task runner
- Catppuccin — Color palette
- Geist — Typeface
- sentinel — Main repository
- sentinel.raskell.io-docs — Documentation site
- Discussions — Questions and ideas
MIT