Source for https://eurekaclaw.github.io — built with Sphinx and the PyData Sphinx Theme.
pip install -r requirements.txt
make html # build once → open _build/html/index.html
make livehtml # live-reload dev server at http://127.0.0.1:8000source/
├── conf.py Sphinx configuration
├── index.md Home page
├── getting-started/ Installation, quickstart, auth
├── user-guide/ Modes, gate, tuning, output, troubleshooting
├── reference/ CLI, config, API, architecture, agents, tools, memory, skills
├── changelog/ Release notes
└── _static/
├── logo.svg
└── css/custom.css
Docs are built and deployed automatically to GitHub Pages via .github/workflows/docs.yml on every push to main.
To enable GitHub Pages on your fork:
- Go to Settings → Pages
- Set Source to Deploy from a branch
- Set Branch to
gh-pages// (root)
- Create a
.mdfile in the appropriatesource/subdirectory. - Add it to the
toctreedirective in the parentindex.md. - Commit and push — the CI workflow builds and deploys automatically.