From 609fc6d08014bba4403f02ddafce21a9808e8434 Mon Sep 17 00:00:00 2001 From: Jr-kenny Date: Sat, 28 Feb 2026 02:04:38 +0100 Subject: [PATCH] fix(docs): add missing code block language specifiers --- README.md | 4 ++-- docs/cli.md | 2 +- docs/messaging.md | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 4ae10ee5..1261efd3 100644 --- a/README.md +++ b/README.md @@ -132,7 +132,7 @@ You need at least one way to connect to an LLM. Use `hermes model` to switch pro All your settings are stored in `~/.hermes/` for easy access: -``` +```text ~/.hermes/ ├── config.yaml # Settings (model, terminal, TTS, compression, etc.) ├── .env # API keys and secrets @@ -863,7 +863,7 @@ code_execution: The `delegate_task` tool spawns child AIAgent instances with isolated context, restricted toolsets, and their own terminal sessions. Each child gets a fresh conversation and works independently -- only its final summary enters the parent's context. **Single task:** -``` +```python delegate_task(goal="Debug why tests fail", context="Error: assertion in test_foo.py line 42", toolsets=["terminal", "file"]) ``` diff --git a/docs/cli.md b/docs/cli.md index c7c51722..a9257024 100644 --- a/docs/cli.md +++ b/docs/cli.md @@ -34,7 +34,7 @@ The CLI is implemented in `cli.py` and uses: - **prompt_toolkit** - Fixed input area with command history - **KawaiiSpinner** - Animated feedback during operations -``` +```text ┌─────────────────────────────────────────────────┐ │ HERMES-AGENT ASCII Logo │ │ ┌─────────────┐ ┌────────────────────────────┐ │ diff --git a/docs/messaging.md b/docs/messaging.md index 7970c52f..7397d203 100644 --- a/docs/messaging.md +++ b/docs/messaging.md @@ -29,7 +29,7 @@ python cli.py --gateway # Runs in foreground, useful for debugging ## Architecture Overview -``` +```text ┌─────────────────────────────────────────────────────────────────┐ │ Hermes Gateway │ ├─────────────────────────────────────────────────────────────────┤ @@ -283,7 +283,7 @@ The gateway keeps the "typing..." indicator active throughout processing, refres When `HERMES_TOOL_PROGRESS=true`, the bot sends status messages as it works: -``` +```text 💻 `ls -la`... 🔍 web_search... 📄 web_extract... @@ -345,7 +345,7 @@ Cron jobs are executed automatically by the gateway daemon. When the gateway is When scheduling cron jobs, you can specify where the output should be delivered: -``` +```text User: "Remind me to check the server in 30 minutes" Agent uses: schedule_cronjob( @@ -369,7 +369,7 @@ Agent uses: schedule_cronjob( The agent knows where it is via injected context: -``` +```text ## Current Session Context **Source:** Telegram (group: Dev Team, ID: -1001234567890)