hermes - ✅(Solved) Fix [Bug]: session-recap.svg not loading in docs [1 pull requests, 1 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
NousResearch/hermes-agent#24809Fetched 2026-05-14 03:51:35
View on GitHub
Comments
0
Participants
1
Timeline
3
Reactions
0
Author
Participants
Timeline (top)
labeled ×2cross-referenced ×1

Error Message

Additional Logs / Traceback (optional)

Root Cause

Root Cause Analysis (optional)

Fix Action

Fixed

PR fix notes

PR #24824: fix(docs): add baseUrl prefix to SVG image paths

Description (problem / solution / changelog)

Fixes #24809

Problem

The docs site uses baseUrl: "/docs/" in docusaurus.config.ts, but the <img> tags in sessions.md and cli.md referenced images at /img/docs/... which resolves to a 404:

GET /img/docs/session-recap.svg     → 404
GET /docs/img/docs/session-recap.svg → 200 ✓

Fix

Added the /docs prefix to both <img src> paths:

FileBeforeAfter
sessions.md/img/docs/session-recap.svg/docs/img/docs/session-recap.svg
cli.md/docs/img/docs/cli-layout.svg/docs/img/docs/cli-layout.svg

Verification

$ curl -sI https://hermes-agent.nousresearch.com/docs/img/docs/session-recap.svg | head -1
HTTP/2 200

$ curl -sI https://hermes-agent.nousresearch.com/docs/img/docs/cli-layout.svg | head -1
HTTP/2 200

Note

Markdown ![](/img/...) syntax in other docs (e.g. kanban-tutorial.md) also has this issue but those are a separate scope — Docusaurus markdown image resolution may handle absolute paths differently from raw HTML <img> tags.

Changed files

  • website/docs/user-guide/cli.md (modified, +1/-1)
  • website/docs/user-guide/sessions.md (modified, +1/-1)

Code Example

<img class="docs-terminal-figure" src="/img/docs/session-recap.svg" alt="Stylized preview of the Previous Conversation recap panel shown when resuming a Hermes session.">

---

n/a

---
RAW_BUFFERClick to expand / collapse

Bug Description

This image is not loading in correctly from this code:

<img class="docs-terminal-figure" src="/img/docs/session-recap.svg" alt="Stylized preview of the Previous Conversation recap panel shown when resuming a Hermes session.">

Steps to Reproduce

Visit the documentation: https://hermes-agent.nousresearch.com/docs/user-guide/sessions#conversation-recap-on-resume

Expected Behavior

The image should appear.

Actual Behavior

<img width="1496" height="340" alt="Image" src="https://github.com/user-attachments/assets/d73c8e52-c101-4fb1-be9b-77e1f0372f7e" />

Affected Component

Other

Messaging Platform (if gateway-related)

No response

Debug Report

n/a

Operating System

Windows 11

Python Version

No response

Hermes Version

No response

Additional Logs / Traceback (optional)

Root Cause Analysis (optional)

No response

Proposed Fix (optional)

No response

Are you willing to submit a PR for this?

  • I'd like to fix this myself and submit a PR

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

hermes - ✅(Solved) Fix [Bug]: session-recap.svg not loading in docs [1 pull requests, 1 participants]