Skip to main content

agent-html

Turn structured agent output into polished, self-contained HTML artifacts.

One conversation in. One shareable HTML file out.

PyPI License Python


Why

AI conversations are great for exploration but terrible for sharing. Chat transcripts are long, unstructured, and die in the thread. agent-html gives you a one-line way to turn any structured data into a professional, self-contained HTML report that anyone can open.

Works with any agent framework: LangGraph, OpenAI Agents, Claude Code, CrewAI, or plain Python.

Install

pip install agent-html

Quick Start

from agent_html import Report, Section

report = Report(
    title="Weekly Summary",
    subtitle="Engineering — Aug 14-21, 2026",
    metadata={"messages": 142},
)

report.add_section(Section(
    title="Overview",
    content="Team focused on infrastructure stability after the outage.",
    style="highlight",
))

report.add_section(Section(
    title="Decisions",
    icon="✅",
    items=["Shut down UAE region", "Migrate to EU-West by Q3"],
))

report.add_section(Section(
    title="Architecture",
    mermaid="graph TD\n  A[Client] --> B[Gateway] --> C[Service]",
))

report.save("summary.html")

Output: a single summary.html file with all CSS/JS inlined. No external dependencies. Double-click to open.

CLI

# From JSON
agent-html render --input data.json --output report.html

# From Markdown
agent-html render --input notes.md --title "Design Review" --output report.html

# Dark theme
agent-html render --input data.json --theme dark --output report.html

# Pipe from stdin
echo '{"title":"Quick","sections":[{"title":"Note","content":"Hello"}]}' | agent-html render --stdin --output note.html

# Preview server
agent-html serve ./reports/

Features

  • Single-file output — all CSS/JS inlined, no external deps
  • Themes — light, dark, or auto (respects system preference)
  • Mermaid diagrams — flowcharts, sequence diagrams, state machines
  • Syntax highlighting — language-aware code blocks with copy button
  • Table of contents — auto-generated with scroll-spy
  • Collapsible sections<details>/<summary> for long content
  • Callout blocks — note, warning, danger, tip
  • Tables — from structured data
  • Badges/pills — for tags, participants, status
  • Print-optimized — clean PDF via browser print
  • Accessible — semantic HTML, ARIA labels, keyboard nav

Section Styles

Section(title="Info", content="...", style="highlight")        # Accent-bordered
Section(title="Note", content="...", style="callout-note")     # Blue info box
Section(title="Warn", content="...", style="callout-warning")  # Yellow warning
Section(title="Error", content="...", style="callout-danger")  # Red danger
Section(title="Tip", content="...", style="callout-tip")       # Green tip
Section(title="Tasks", items=[...], style="checklist")         # Checkbox list

Integration Examples

LangGraph / LangChain Tool

from langchain_core.tools import tool
from agent_html import Report, Section

@tool
def create_report(title: str, sections: list[dict]) -> str:
    """Generate a shareable HTML report."""
    report = Report(title=title)
    for s in sections:
        report.add_section(Section(**s))
    report.save(f"/tmp/reports/{report.id}.html")
    return f"Report: http://localhost:8080/reports/{report.id}"

FastAPI

from fastapi.responses import HTMLResponse
from agent_html import Report, Section

@app.post("/reports")
async def create(data: ReportRequest):
    report = Report(title=data.title)
    for s in data.sections:
        report.add_section(Section(**s.dict()))
    return HTMLResponse(report.to_html())

JSON Input Format

{
  "title": "My Report",
  "subtitle": "Optional subtitle",
  "metadata": {"key": "value"},
  "sections": [
    {"title": "Overview", "content": "Markdown content here", "style": "highlight"},
    {"title": "Items", "items": ["one", "two", "three"], "icon": "📋"},
    {"title": "Diagram", "mermaid": "graph TD\n  A --> B"},
    {"title": "Code", "code": "print('hello')", "code_language": "python"},
    {"title": "Table", "table": {"headers": ["A","B"], "rows": [["1","2"]]}}
  ]
}

Inspiration

Built on ideas from:

  • ThariqS/html-effectiveness (Apache-2.0) — demonstrating HTML as an AI output medium
  • The "Unreasonable Effectiveness of HTML" thesis by Thariq Shihipar

License

Apache-2.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

agent_html-0.1.1.tar.gz (31.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

agent_html-0.1.1-py3-none-any.whl (24.5 kB view details)

Uploaded Python 3

File details

Details for the file agent_html-0.1.1.tar.gz.

File metadata

  • Download URL: agent_html-0.1.1.tar.gz
  • Upload date:
  • Size: 31.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for agent_html-0.1.1.tar.gz
Algorithm Hash digest
SHA256 a3b875ea5cdb3cb1fdda45c769dafdb1b1d8c61c7f0f0ac796a1195dd0b7c808
MD5 8ebbfabaa0953d9183fd8843cabd0bb1
BLAKE2b-256 7c912bda5d4284d7f869a31c74bb13242df48813d88223be2956d6796651628a

See more details on using hashes here.

Provenance

The following attestation bundles were made for agent_html-0.1.1.tar.gz:

Publisher: release.yml on breathOfTech/agent-html

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agent_html-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: agent_html-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 24.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for agent_html-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 92ea9e6a63550e4227ede648ed60122b71be8a3a1e142c85404b02c08edb146b
MD5 69a7f26aa5c9cd0a018e8973923baa28
BLAKE2b-256 682e04f74ff76806617d422a575531446d842eb3f1e697195d7d29c507eaa37b

See more details on using hashes here.

Provenance

The following attestation bundles were made for agent_html-0.1.1-py3-none-any.whl:

Publisher: release.yml on breathOfTech/agent-html

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.1.1 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page