https://github.com/schlunsen/theagenticcrew
Source for The Agentic Crew — a book about how software engineers learn to build with AI agents
https://github.com/schlunsen/theagenticcrew
agentic-engineering ai-agents astro book typst
Last synced: 25 days ago
JSON representation
Source for The Agentic Crew — a book about how software engineers learn to build with AI agents
- Host: GitHub
- URL: https://github.com/schlunsen/theagenticcrew
- Owner: schlunsen
- Created: 2026-03-15T21:48:53.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2026-03-25T13:58:21.000Z (about 1 month ago)
- Last Synced: 2026-03-26T16:50:45.513Z (about 1 month ago)
- Topics: agentic-engineering, ai-agents, astro, book, typst
- Language: Astro
- Homepage: https://theagenticcrew.com
- Size: 604 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# The Agentic Crew
Source for *The Agentic Crew* — a book about how software engineers learn to build with AI agents. Written in [Typst](https://typst.app/), with a companion website built in [Astro](https://astro.build/).
**Live site:** [theagenticcrew.com](https://theagenticcrew.com)
## Prerequisites
- [Typst](https://typst.app/) — for compiling the book to PDF
- [Pandoc](https://pandoc.org/) — for EPUB generation
- [just](https://github.com/casey/just) — command runner
- [Node.js](https://nodejs.org/) — for the website
## Quick start
```bash
# Build the book to PDF
just build
# Watch for changes and rebuild automatically
just watch
# Build and open the PDF (macOS)
just open
```
## Useful commands
| Command | Description |
|---------|-------------|
| `just build` | Compile the book to PDF |
| `just watch` | Watch for changes and rebuild automatically |
| `just open` | Build and open the PDF |
| `just epub` | Build the book to EPUB (mobile-friendly) |
| `just all` | Build all formats (PDF + EPUB) |
| `just new-chapter ` | Scaffold a new chapter file |
| `just site` | Start the website dev server |
| `just site-build` | Build the website for production |
| `just deploy` | Build and deploy the website to production |
| `just wc` | Show approximate word count |
| `just clean` | Remove build artifacts |
## Project structure
```
book.typ # Main entry point — title page, foreword, chapter includes
epub.typ # EPUB entry point — simplified for reflowable text
chapters/ # Individual chapter files (.typ)
assets/ # Images and figures
website/ # Astro website (theagenticcrew.com)
build/ # Compiled output (PDF + EPUB)
```