# Scripts

Build and utility scripts for the Agenthood project.

| Script | Runtime | Purpose |
|--------|---------|---------|
| `generate-release-notes.ts` | `tsx` | Parses `CHANGELOG.md` generated by semantic-release and produces a clean `docs/release-notes.md` with emoji sections and human-readable dates. |
| `build-academy.ts` | `tsx` | Walks `docs/academy/` and `docs/adr/`, converts all `.md` files to HTML via `marked`, outputs to `site/` for GitHub Pages deployment. |

## Usage

```bash
# Generate release notes
npx tsx scripts/generate-release-notes.ts

# Build Academy site locally
npx tsx scripts/build-academy.ts
```
