diff --git a/website/docs/guides/cron-script-only.md b/website/docs/guides/cron-script-only.md index 247ebc2beee..a2d0de8cfc9 100644 --- a/website/docs/guides/cron-script-only.md +++ b/website/docs/guides/cron-script-only.md @@ -10,6 +10,7 @@ Sometimes you already know exactly what message you want to send. You don't need Hermes calls this **no-agent mode**. It's the cron system minus the LLM. + ``` ┌──────────────────┐ ┌──────────────────┐ │ scheduler tick │ every │ run script │ @@ -23,6 +24,7 @@ Hermes calls this **no-agent mode**. It's the cron system minus the LLM. │ (telegram/disc…) │ └──────────────────┘ ``` + - **No LLM call.** Zero tokens, zero agent loop, zero model spend. - **Script is the job.** The script decides whether to alert. Emit output → message gets sent. Emit nothing → silent tick. diff --git a/website/docs/user-guide/features/kanban.md b/website/docs/user-guide/features/kanban.md index 1012f10599e..4fe9533cb95 100644 --- a/website/docs/user-guide/features/kanban.md +++ b/website/docs/user-guide/features/kanban.md @@ -494,6 +494,7 @@ And the two auxiliary LLM slots: The GUI is strictly a **read-through-the-DB + write-through-kanban_db** layer with no domain logic of its own: + ``` ┌────────────────────────┐ WebSocket (tails task_events) │ React SPA (plugin) │ ◀──────────────────────────────────┐ @@ -513,6 +514,7 @@ The GUI is strictly a **read-through-the-DB + write-through-kanban_db** layer wi │ (WAL, shared) │ └────────────────────────┘ ``` + ### REST surface