1.3Using with Claude Code / Codex (llms.txt)

Created on Aug 17, 2026~3 min read

This website provides two AI-friendly files, llms.txt and llms-full.txt, so AI assistants (such as Claude Code and Codex) can read the entire documentation in one shot instead of crawling pages one by one.

  • llms.txt: a full index of the documentation (title + link + one-line summary);
  • llms-full.txt: the complete documentation content in a single file;
  • English edition: https://http.furion.net/en/llms.txt and https://http.furion.net/en/llms-full.txt.

1. Using with Claude Code

Option one: let Claude read it online:

bash
# Type this directly in a Claude Code session:# First read https://http.furion.net/en/llms.txt, then answer any HttpAgent questions

Option two: download it locally and reference it from CLAUDE.md for offline use:

bash
curl https://http.furion.net/en/llms-full.txt -o .claude/httpagent-docs.txt

Add the following to the project root CLAUDE.md:

md
# HttpAgent usage- For any HttpAgent question, read .claude/httpagent-docs.txt before answering.

2. Using with Codex

Download the docs and reference them from AGENTS.md:

bash
curl https://http.furion.net/en/llms-full.txt -o docs/httpagent-llms-full.txt

Add the following to AGENTS.md:

md
# HttpAgent- Read docs/httpagent-llms-full.txt before writing any HttpAgent-related code.- Official documentation index: https://http.furion.net/en/llms.txt