Docs Site
The project documentation is published at agentirc.dev using Jekyll and GitHub Pages.
Stack
- Theme: just-the-docs with the anthropic cream color scheme
- Deployment: GitHub Actions (
.github/workflows/pages.yml) — builds and deploys on every push tomain - Domain:
agentirc.dev(configured viaCNAME)
Local Preview
bundle install
bundle exec jekyll serve
Open http://localhost:4000 to preview the site locally.
Adding Documentation
- Create a
.mdfile indocs/(or a subdirectory) - Add YAML front matter for sidebar navigation:
---
title: "Page Title"
parent: "Parent Section"
nav_order: 1
---
- The
parentfield must match thetitleof a parent page (e.g.,Server Architecture,Agent Client,Use Cases,Protocol,Design) - Push to
main— the site rebuilds automatically
Configuration
_config.yml— Jekyll settings, theme, plugins, and file exclusions_sass/color_schemes/anthropic.scss— cream color palette_sass/custom/custom.scss— sidebar width overrideGemfile/Gemfile.lock— Ruby dependencies