diff --git a/RELEASE_v0.10.0.md b/RELEASE_v0.10.0.md new file mode 100644 index 000000000..1bfb10156 --- /dev/null +++ b/RELEASE_v0.10.0.md @@ -0,0 +1,27 @@ +# Hermes Agent v0.10.0 (v2026.4.16) + +**Release Date:** April 16, 2026 + +> The Tool Gateway release β€” paid Nous Portal subscribers can now use web search, image generation, text-to-speech, and browser automation through their existing subscription with zero additional API keys. + +--- + +## ✨ Highlights + +- **Nous Tool Gateway** β€” Paid [Nous Portal](https://portal.nousresearch.com) subscribers now get automatic access to **web search** (Firecrawl), **image generation** (FAL / FLUX 2 Pro), **text-to-speech** (OpenAI TTS), and **browser automation** (Browser Use) through their existing subscription. No separate API keys needed β€” just run `hermes model`, select Nous Portal, and pick which tools to enable. Per-tool opt-in via `use_gateway` config, full integration with `hermes tools` and `hermes status`, and the runtime correctly prefers the gateway even when direct API keys exist. Replaces the old hidden `HERMES_ENABLE_NOUS_MANAGED_TOOLS` env var with clean subscription-based detection. ([#11206](https://github.com/NousResearch/hermes-agent/pull/11206), based on work by @jquesnelle; docs: [#11208](https://github.com/NousResearch/hermes-agent/pull/11208)) + +--- + +## πŸ› Bug Fixes & Improvements + +This release includes 180+ commits with numerous bug fixes, platform improvements, and reliability enhancements across the agent core, gateway, CLI, and tool system. Full details will be published in the v0.11.0 changelog. + +--- + +## πŸ‘₯ Contributors + +- **@jquesnelle** (emozilla) β€” Original Tool Gateway implementation ([#10799](https://github.com/NousResearch/hermes-agent/pull/10799)), salvaged and shipped in this release + +--- + +**Full Changelog**: [v2026.4.13...v2026.4.16](https://github.com/NousResearch/hermes-agent/compare/v2026.4.13...v2026.4.16) diff --git a/gateway/platforms/matrix.py b/gateway/platforms/matrix.py index 4aebd92b1..021a45304 100644 --- a/gateway/platforms/matrix.py +++ b/gateway/platforms/matrix.py @@ -1598,11 +1598,21 @@ class MatrixAdapter(BasePlatformAdapter): if not self._client: return False try: - await self._client.set_read_markers( - RoomID(room_id), - fully_read_event=EventID(event_id), - read_receipt=EventID(event_id), - ) + room = RoomID(room_id) + event = EventID(event_id) + if hasattr(self._client, "set_fully_read_marker"): + await self._client.set_fully_read_marker(room, event, event) + elif hasattr(self._client, "send_receipt"): + await self._client.send_receipt(room, event) + elif hasattr(self._client, "set_read_markers"): + await self._client.set_read_markers( + room, + fully_read_event=event, + read_receipt=event, + ) + else: + logger.debug("Matrix: client has no read receipt method") + return False logger.debug("Matrix: sent read receipt for %s in %s", event_id, room_id) return True except Exception as exc: diff --git a/hermes_cli/__init__.py b/hermes_cli/__init__.py index 632aa5bae..b9879e3b5 100644 --- a/hermes_cli/__init__.py +++ b/hermes_cli/__init__.py @@ -11,5 +11,5 @@ Provides subcommands for: - hermes cron - Manage cron jobs """ -__version__ = "0.9.0" -__release_date__ = "2026.4.13" +__version__ = "0.10.0" +__release_date__ = "2026.4.16" diff --git a/pyproject.toml b/pyproject.toml index 38ec2d494..42333699d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "hermes-agent" -version = "0.9.0" +version = "0.10.0" description = "The self-improving AI agent β€” creates skills from experience, improves them during use, and runs anywhere" readme = "README.md" requires-python = ">=3.11" diff --git a/scripts/release.py b/scripts/release.py index 384f2f65e..5b3949763 100755 --- a/scripts/release.py +++ b/scripts/release.py @@ -69,6 +69,7 @@ AUTHOR_MAP = { "241404605+MestreY0d4-Uninter@users.noreply.github.com": "MestreY0d4-Uninter", "109555139+davetist@users.noreply.github.com": "davetist", # contributors (manual mapping from git names) + "ahmedsherif95@gmail.com": "asheriif", "dmayhem93@gmail.com": "dmahan93", "samherring99@gmail.com": "samherring99", "desaiaum08@gmail.com": "Aum08Desai", diff --git a/skills/research/llm-wiki/SKILL.md b/skills/research/llm-wiki/SKILL.md index 753bc3af0..a90dd0a9b 100644 --- a/skills/research/llm-wiki/SKILL.md +++ b/skills/research/llm-wiki/SKILL.md @@ -9,11 +9,6 @@ metadata: tags: [wiki, knowledge-base, research, notes, markdown, rag-alternative] category: research related_skills: [obsidian, arxiv, agentic-research-ideas] - config: - - key: wiki.path - description: Path to the LLM Wiki knowledge base directory - default: "~/wiki" - prompt: Wiki directory path --- # Karpathy's LLM Wiki @@ -39,19 +34,14 @@ Use this skill when the user: ## Wiki Location -Configured via `skills.config.wiki.path` in `~/.hermes/config.yaml` (prompted -during `hermes config migrate` or `hermes setup`): +**Location:** Set via `WIKI_PATH` environment variable (e.g. in `~/.hermes/.env`). -```yaml -skills: - config: - wiki: - path: ~/wiki +If unset, defaults to `~/wiki`. + +```bash +WIKI="${WIKI_PATH:-$HOME/wiki}" ``` -Falls back to `~/wiki` default. The resolved path is injected when this -skill loads β€” check the `[Skill config: ...]` block above for the active value. - The wiki is just a directory of markdown files β€” open it in Obsidian, VS Code, or any editor. No database, no special tooling required. @@ -87,7 +77,7 @@ When the user has an existing wiki, **always orient yourself before doing anythi β‘’ **Scan recent `log.md`** β€” read the last 20-30 entries to understand recent activity. ```bash -WIKI="${wiki_path:-$HOME/wiki}" +WIKI="${WIKI_PATH:-$HOME/wiki}" # Orientation reads at session start read_file "$WIKI/SCHEMA.md" read_file "$WIKI/index.md" @@ -107,7 +97,7 @@ at hand before creating anything new. When the user asks to create or start a wiki: -1. Determine the wiki path (from config, env var, or ask the user; default `~/wiki`) +1. Determine the wiki path (from `$WIKI_PATH` env var, or ask the user; default `~/wiki`) 2. Create the directory structure above 3. Ask the user what domain the wiki covers β€” be specific 4. Write `SCHEMA.md` customized to the domain (see template below) diff --git a/tests/gateway/test_matrix.py b/tests/gateway/test_matrix.py index 90d820046..19ed200b0 100644 --- a/tests/gateway/test_matrix.py +++ b/tests/gateway/test_matrix.py @@ -1740,16 +1740,49 @@ class TestMatrixReadReceipts: def setup_method(self): self.adapter = _make_adapter() + @pytest.mark.asyncio + async def test_accepted_message_schedules_read_receipt(self): + self.adapter._is_dm_room = AsyncMock(return_value=True) + self.adapter._get_display_name = AsyncMock(return_value="Alice") + self.adapter._background_read_receipt = MagicMock() + + ctx = await self.adapter._resolve_message_context( + room_id="!room:ex", + sender="@alice:ex", + event_id="$event1", + body="hello", + source_content={"body": "hello"}, + relates_to={}, + ) + + assert ctx is not None + self.adapter._background_read_receipt.assert_called_once_with( + "!room:ex", "$event1" + ) + @pytest.mark.asyncio async def test_send_read_receipt(self): - """send_read_receipt should call client.set_read_markers.""" + """send_read_receipt should call mautrix's real read-marker API.""" mock_client = MagicMock() - mock_client.set_read_markers = AsyncMock(return_value=None) + mock_client.set_fully_read_marker = AsyncMock(return_value=None) self.adapter._client = mock_client result = await self.adapter.send_read_receipt("!room:ex", "$event1") assert result is True - mock_client.set_read_markers.assert_called_once() + mock_client.set_fully_read_marker.assert_awaited_once_with( + "!room:ex", "$event1", "$event1" + ) + + @pytest.mark.asyncio + async def test_send_read_receipt_falls_back_to_receipt_only(self): + """send_read_receipt should still work with clients lacking read markers.""" + mock_client = MagicMock(spec=["send_receipt"]) + mock_client.send_receipt = AsyncMock(return_value=None) + self.adapter._client = mock_client + + result = await self.adapter.send_read_receipt("!room:ex", "$event1") + assert result is True + mock_client.send_receipt.assert_awaited_once_with("!room:ex", "$event1") @pytest.mark.asyncio async def test_read_receipt_no_client(self): @@ -1852,5 +1885,3 @@ class TestMatrixPresence: self.adapter._client = None result = await self.adapter.set_presence("online") assert result is False - - diff --git a/website/docs/developer-guide/creating-skills.md b/website/docs/developer-guide/creating-skills.md index 7ca16bff5..9fdb7fd11 100644 --- a/website/docs/developer-guide/creating-skills.md +++ b/website/docs/developer-guide/creating-skills.md @@ -186,18 +186,18 @@ Skills can declare non-secret settings that are stored in `config.yaml` under th metadata: hermes: config: - - key: wiki.path - description: Path to the LLM Wiki knowledge base directory - default: "~/wiki" - prompt: Wiki directory path - - key: wiki.domain - description: Domain the wiki covers + - key: myplugin.path + description: Path to the plugin data directory + default: "~/myplugin-data" + prompt: Plugin data directory path + - key: myplugin.domain + description: Domain the plugin operates on default: "" - prompt: Wiki domain (e.g., AI/ML research) + prompt: Plugin domain (e.g., AI/ML research) ``` Each entry supports: -- `key` (required) β€” dotpath for the setting (e.g., `wiki.path`) +- `key` (required) β€” dotpath for the setting (e.g., `myplugin.path`) - `description` (required) β€” explains what the setting controls - `default` (optional) β€” default value if the user doesn't configure it - `prompt` (optional) β€” prompt text shown during `hermes config migrate`; falls back to `description` @@ -208,8 +208,8 @@ Each entry supports: ```yaml skills: config: - wiki: - path: ~/my-research + myplugin: + path: ~/my-data ``` 2. **Discovery:** `hermes config migrate` scans all enabled skills, finds unconfigured settings, and prompts the user. Settings also appear in `hermes config show` under "Skill Settings." @@ -217,14 +217,14 @@ Each entry supports: 3. **Runtime injection:** When a skill loads, its config values are resolved and appended to the skill message: ``` [Skill config (from ~/.hermes/config.yaml): - wiki.path = /home/user/my-research + myplugin.path = /home/user/my-data ] ``` The agent sees the configured values without needing to read `config.yaml` itself. 4. **Manual setup:** Users can also set values directly: ```bash - hermes config set skills.config.wiki.path ~/my-wiki + hermes config set skills.config.myplugin.path ~/my-data ``` :::tip When to use which diff --git a/website/docs/reference/skills-catalog.md b/website/docs/reference/skills-catalog.md index e3c37ea6e..13ef2f7fc 100644 --- a/website/docs/reference/skills-catalog.md +++ b/website/docs/reference/skills-catalog.md @@ -253,7 +253,7 @@ Skills for academic research, paper discovery, literature review, domain reconna |-------|-------------|------| | `arxiv` | Search and retrieve academic papers from arXiv using their free REST API. No API key needed. Search by keyword, author, category, or ID. Combine with web_extract or the ocr-and-documents skill to read full paper content. | `research/arxiv` | | `blogwatcher` | Monitor blogs and RSS/Atom feeds for updates using the blogwatcher CLI. Add blogs, scan for new articles, and track what you've read. | `research/blogwatcher` | -| `llm-wiki` | Karpathy's LLM Wiki β€” build and maintain a persistent, interlinked markdown knowledge base. Ingest sources, query compiled knowledge, and lint for consistency. Unlike RAG, the wiki compiles knowledge once and keeps it current. Works as an Obsidian vault. Configurable via `skills.config.wiki.path`. | `research/llm-wiki` | +| `llm-wiki` | Karpathy's LLM Wiki β€” build and maintain a persistent, interlinked markdown knowledge base. Ingest sources, query compiled knowledge, and lint for consistency. Unlike RAG, the wiki compiles knowledge once and keeps it current. Works as an Obsidian vault. Wiki path is controlled by the `WIKI_PATH` env var (defaults to `~/wiki`). | `research/llm-wiki` | | `domain-intel` | Passive domain reconnaissance using Python stdlib. Subdomain discovery, SSL certificate inspection, WHOIS lookups, DNS records, domain availability checks, and bulk multi-domain analysis. No API keys required. | `research/domain-intel` | | `duckduckgo-search` | Free web search via DuckDuckGo β€” text, news, images, videos. No API key needed. Prefer the `ddgs` CLI when installed; use the Python DDGS library only after verifying that `ddgs` is available in the current runtime. | `research/duckduckgo-search` | | `ml-paper-writing` | Write publication-ready ML/AI papers for NeurIPS, ICML, ICLR, ACL, AAAI, COLM. Use when drafting papers from research repos, structuring arguments, verifying citations, or preparing camera-ready submissions. Includes LaTeX templates, reviewer guidelines, and citation verificatio… | `research/ml-paper-writing` | diff --git a/website/docs/user-guide/configuration.md b/website/docs/user-guide/configuration.md index 733263207..bef9b5cfd 100644 --- a/website/docs/user-guide/configuration.md +++ b/website/docs/user-guide/configuration.md @@ -359,8 +359,8 @@ Skills can declare their own configuration settings via their SKILL.md frontmatt ```yaml skills: config: - wiki: - path: ~/wiki # Used by the llm-wiki skill + myplugin: + path: ~/myplugin-data # Example β€” each skill defines its own keys ``` **How skill settings work:** @@ -372,7 +372,7 @@ skills: **Setting values manually:** ```bash -hermes config set skills.config.wiki.path ~/my-research-wiki +hermes config set skills.config.myplugin.path ~/myplugin-data ``` For details on declaring config settings in your own skills, see [Creating Skills β€” Config Settings](/docs/developer-guide/creating-skills#config-settings-configyaml). diff --git a/website/docs/user-guide/features/skills.md b/website/docs/user-guide/features/skills.md index aead5ac26..c0f2d8d83 100644 --- a/website/docs/user-guide/features/skills.md +++ b/website/docs/user-guide/features/skills.md @@ -155,10 +155,10 @@ Skills can also declare non-secret config settings (paths, preferences) stored i metadata: hermes: config: - - key: wiki.path - description: Path to the wiki directory - default: "~/wiki" - prompt: Wiki directory path + - key: myplugin.path + description: Path to the plugin data directory + default: "~/myplugin-data" + prompt: Plugin data directory path ``` Settings are stored under `skills.config` in your config.yaml. `hermes config migrate` prompts for unconfigured settings, and `hermes config show` displays them. When a skill loads, its resolved config values are injected into the context so the agent knows the configured values automatically.