mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-31 19:16:29 +00:00
Clicking the desktop ear button or running /wake on|off now writes wake_word.enabled to config.yaml (live, saved for future sessions), so the feature no longer requires hand-editing config before the UI toggle works. - wake.start accepts persist:true (explicit gesture): flips wake_word.enabled on in config before arming; response reports enabled_persisted. Passive auto-arm paths (desktop gateway-ready, TUI reconnect) never pass it, so a mic can't become persistently enabled without a deliberate user action. - wake.stop accepts persist:true: writes wake_word.enabled: false so auto-arm stays off next session; reports disabled_persisted. - Split the refusal reason: 'disabled' (feature off in config — a persisted gesture turns it on) vs 'disabled_for_surface' (explicit wake_word.surface scoping, which persist does NOT override). - Classic CLI /wake on|off and bare-toggle persist the flag too (skips the write when config already matches). - Desktop tooltip now maps refusal codes to friendly text (mirrors the TUI's START_REASON_TEXT) instead of showing raw codes like disabled_for_surface. - Docs: quick-start notes the toggle persists; ear-button mention. |
||
|---|---|---|
| .. | ||
| docs | ||
| i18n/zh-Hans/docusaurus-plugin-content-docs/current | ||
| scripts | ||
| src | ||
| static | ||
| .gitignore | ||
| docusaurus.config.ts | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
| sidebars.ts | ||
| tsconfig.json | ||
Website
This website is built using Docusaurus, a modern static website generator.
Installation
yarn
Local Development
yarn start
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
Build
yarn build
This command generates static content into the build directory and can be served using any static contents hosting service.
Deployment
Using SSH:
USE_SSH=true yarn deploy
Not using SSH:
GIT_USER=<Your GitHub username> yarn deploy
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the gh-pages branch.
Diagram Linting
CI runs ascii-guard to lint docs for ASCII box diagrams. Use Mermaid (````mermaid`) or plain lists/tables instead of ASCII boxes to avoid CI failures.