From 0b76d23d1acffd14bbc5061cd4f913cf7a0e1a8a Mon Sep 17 00:00:00 2001 From: Jeffrey Quesnelle Date: Fri, 1 May 2026 13:29:22 -0400 Subject: [PATCH] makes the Persistent Goals docs accessible in the docs nav (and llms.txt) (#18481) --- website/docs/user-guide/features/goals.md | 2 +- website/scripts/generate-llms-txt.py | 1 + website/sidebars.ts | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/website/docs/user-guide/features/goals.md b/website/docs/user-guide/features/goals.md index f8c613ca7fa..f97502f3bd5 100644 --- a/website/docs/user-guide/features/goals.md +++ b/website/docs/user-guide/features/goals.md @@ -1,6 +1,6 @@ --- sidebar_position: 16 -title: "Persistent Goals (`/goal`)" +title: "Persistent Goals" description: "Set a standing goal and let Hermes keep working across turns until it's done. Our take on the Ralph loop." --- diff --git a/website/scripts/generate-llms-txt.py b/website/scripts/generate-llms-txt.py index dd24eb1f2db..e1a9fcced99 100644 --- a/website/scripts/generate-llms-txt.py +++ b/website/scripts/generate-llms-txt.py @@ -75,6 +75,7 @@ SECTIONS: list[tuple[str, list[tuple[str, str, str | None]]]] = [ ("user-guide/features/delegation", "Delegation", None), ("user-guide/features/kanban", "Kanban Multi-Agent", None), ("user-guide/features/kanban-tutorial", "Kanban Tutorial", None), + ("user-guide/features/goals", "Persistent Goals", None), ("user-guide/features/code-execution", "Code Execution", None), ("user-guide/features/hooks", "Hooks", None), ("user-guide/features/batch-processing", "Batch Processing", None), diff --git a/website/sidebars.ts b/website/sidebars.ts index e63fcdd3a3f..8ac1e33c878 100644 --- a/website/sidebars.ts +++ b/website/sidebars.ts @@ -65,6 +65,7 @@ const sidebars: SidebarsConfig = { 'user-guide/features/delegation', 'user-guide/features/kanban', 'user-guide/features/kanban-tutorial', + 'user-guide/features/goals', 'user-guide/features/code-execution', 'user-guide/features/hooks', 'user-guide/features/batch-processing',