https://github.com/agentevals-dev/website
webisite
https://github.com/agentevals-dev/website
Last synced: about 2 months ago
JSON representation
webisite
- Host: GitHub
- URL: https://github.com/agentevals-dev/website
- Owner: agentevals-dev
- Created: 2026-03-17T14:37:53.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-04-01T16:59:13.000Z (2 months ago)
- Last Synced: 2026-04-06T20:36:46.696Z (about 2 months ago)
- Language: CSS
- Size: 1.06 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AgentEvals Website
The official website for [AgentEvals](https://github.com/agentevals-dev/agentevals) — score agent behavior from OpenTelemetry traces without re-running the agent.
🌐 **Live site:** https://agentevals-dev.github.io/website/
## Prerequisites
- [Hugo](https://gohugo.io/installation/) v0.154+ (extended edition)
## Local Development
```bash
# Clone the repo
git clone https://github.com/agentevals-dev/website.git
cd website
# Start the dev server
hugo server
# Open http://localhost:1313
```
The dev server supports hot reload — changes to templates, content, and styles are reflected instantly.
## Build for Production
```bash
hugo --minify
```
Output is written to the `public/` directory.
## Deployment
The site deploys automatically to GitHub Pages via GitHub Actions on every push to `main`.
## Project Structure
```
.
├── content/
│ ├── _index.md # Homepage content
│ └── docs/ # Documentation pages
│ ├── quick-start.md
│ ├── configuration.md
│ ├── examples.md
│ ├── ci-cd.md
│ ├── mcp-server.md
│ └── web-ui.md
├── layouts/
│ ├── index.html # Homepage template
│ ├── _default/baseof.html # Base template (head, scripts)
│ └── docs/ # Docs templates
├── static/
│ ├── css/style.css # All styles
│ └── images/ # Logo assets
├── hugo.toml # Site configuration
└── .github/workflows/ # GitHub Pages deploy
```