Companion page to Agent Harness Engineering: A Survey. The site introduces the ETCLOVG seven-layer taxonomy and points to the public catalog of agent-harness projects maintained at Awesome-Agent-Harness.
- Live page: https://picrew.github.io/LLM-Harness/
- Paper (OpenReview): https://openreview.net/forum?id=eONq7FdiHa
- Catalog: https://github.com/Picrew/awesome-agent-harness
- Dataset (HuggingFace): https://huggingface.co/datasets/ChenLiu1996/Agent-Harness-Engineering
.
├── docs/ GitHub Pages site
│ ├── index.html single-page project page
│ ├── assets/
│ │ ├── css/ stylesheet
│ │ └── figs/ figures shared with the paper
│ └── .nojekyll
├── LICENSE
├── README.md
└── .gitignore
The site is deliberately dependency-free: plain HTML and CSS with a small piece of inline JavaScript for the copy-BibTeX button. Any static server can preview it.
python3 -m http.server 8080 --directory docs
# or
npx serve docsThen open http://localhost:8080.
- Push this repository to GitHub.
- Open Settings → Pages.
- Set Source = Deploy from a branch, Branch =
main, Folder =/docs.
The page layout follows the conventions of common academic project pages (centered hero, abstract, taxonomy figure, citation block). The visual treatment is hand-rolled rather than templated, but it is in the same spirit as the Nerfies project-page family.
@misc{li2026agentharness,
title={Agent Harness Engineering: A Survey},
author={Li, Junjie and Xiao, Xi and Zhang, Yunbei and Liu, Chen and
Zhao, Lin and Liao, Xiaoying and Ji, Yingrui and Wang, Janet and
Gu, Jianyang and Ge, Yingqiang and Xu, Weijie and Fang, Xi and
Xu, Xiang and Zhao, Tianchen and Kim, Youngeun and
Wang, Tianyang and Hamm, Jihun and Krishnaswamy, Smita and
Huan, Jun and Reddy, Chandan},
url={https://openreview.net/pdf?id=eONq7FdiHa},
year={2026}
}The contents of docs/ are released under
CC BY-SA 4.0; code in this repository
is released under the MIT License.