content
large_stringlengths
3
20.5k
url
large_stringlengths
53
192
branch
large_stringclasses
4 values
source
large_stringclasses
51 values
embeddings
listlengths
384
384
score
float64
-0.21
0.65
| | Prefix | `deploy\*` | Prefix match | ### Filtered Search ```python # Search only CLI sessions results = db.search\_messages("error", source\_filter=["cli"]) # Exclude gateway sessions results = db.search\_messages("bug", exclude\_sources=["telegram", "discord"]) # Search only user messages results = db.search\_mess...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/session-storage.md
main
hermes-agent
[ -0.059171393513679504, 0.05213816836476326, 0.010565492324531078, 0.0910281166434288, 0.049622781574726105, -0.0473673939704895, 0.06911857426166534, 0.014301924966275692, -0.0028265337459743023, -0.03781912848353386, 0.0007679180125705898, -0.013798612169921398, 0.06914970278739929, -0.03...
0.100255
# Trajectory Format Hermes Agent saves conversation trajectories in ShareGPT-compatible JSONL format for use as training data, debugging artifacts, and reinforcement learning datasets. Source files: `agent/trajectory.py`, `run\_agent.py` (search for `\_save\_trajectory`), `batch\_runner.py` ## File Naming Convention Tr...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/trajectory-format.md
main
hermes-agent
[ -0.04774650186300278, -0.025864459574222565, -0.03456445038318634, 0.015698159113526344, -0.0339515320956707, -0.0066321976482868195, -0.037643857300281525, -0.008976666256785393, 0.0025255719665437937, -0.007419106084853411, 0.020614925771951675, 0.03331246227025986, -0.0036079492419958115,...
0.076433
converted to `` via `convert\_scratchpad\_to\_think()`. 3. \*\*Empty think blocks\*\*: Every `gpt` turn is guaranteed to have a `` block. If no reasoning was produced, an empty block is inserted: `\n\n` — this ensures consistent format for training data. ### Tool Call Normalization Tool calls from the API format (with ...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/trajectory-format.md
main
hermes-agent
[ -0.12675948441028595, -0.014759055338799953, -0.0408414751291275, 0.018332546576857567, -0.018604101613163948, -0.11876706779003143, 0.015672283247113228, 0.08163762837648392, -0.003405504859983921, -0.020379608497023582, 0.018861718475818634, -0.05838664248585701, 0.03333112597465515, -0....
0.134368
# Adding a Platform Adapter This guide covers adding a new messaging platform to the Hermes gateway. A platform adapter connects Hermes to an external messaging service (Telegram, Discord, WeCom, etc.) so users can interact with the agent through that service. :::tip There are two ways to add a platform: - \*\*Plugin\*...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/adding-platform-adapters.md
main
hermes-agent
[ -0.04619447886943817, -0.02791767194867134, -0.05833229795098305, -0.061416637152433395, -0.01910102553665638, -0.05465834587812424, -0.012936397455632687, 0.04672711715102196, 0.023174641653895378, 0.042091675102710724, 0.023385655134916306, -0.026398979127407074, 0.041536685079336166, 0....
0.153827
) # Optional: register platform-specific tools ctx.register\_tool( name="my\_platform\_search", toolset="my\_platform", schema={...}, handler=my\_search\_handler, ) ``` ### Configuration Users configure the platform in `config.yaml`: ```yaml gateway: platforms: my\_platform: enabled: true extra: token: "..." channel: "...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/adding-platform-adapters.md
main
hermes-agent
[ -0.04147520288825035, -0.06389124691486359, -0.053171902894973755, -0.011263164691627026, -0.057028673589229584, -0.031168276444077492, 0.028769124299287796, 0.06227347254753113, -0.08379216492176056, -0.03293216601014137, -0.0018025659956037998, -0.056697994470596313, -0.005073530599474907,...
0.08731
merge into PlatformConfig.extra. Return None or {} for no extras. """ if "require\_mention" in platform\_cfg and not os.getenv("MY\_PLATFORM\_REQUIRE\_MENTION"): os.environ["MY\_PLATFORM\_REQUIRE\_MENTION"] = str(platform\_cfg["require\_mention"]).lower() allowed = platform\_cfg.get("allowed\_channels") if allowed is n...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/adding-platform-adapters.md
main
hermes-agent
[ 0.05153265222907066, -0.010396013967692852, -0.028210295364260674, -0.05670550838112831, 0.060906559228897095, -0.08773329108953476, 0.06588587164878845, 0.0553073026239872, -0.09409244358539581, -0.07086455076932907, 0.03314207121729851, -0.08863809704780579, -0.0010936937760561705, -0.00...
0.013891
"Allowed users (comma-separated)" password: false ``` \*\*Supported dict keys:\*\* `name` (required), `description`, `prompt`, `url`, `password` (bool; auto-detected from `\*\_TOKEN` / `\*\_SECRET` / `\*\_KEY` / `\*\_PASSWORD` / `\*\_JSON` suffix when omitted), `category` (defaults to `"messaging"`). Bare-string entrie...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/adding-platform-adapters.md
main
hermes-agent
[ -0.06440869718790054, -0.015735041350126266, -0.017365997657179832, -0.01455111987888813, -0.04951182380318642, -0.02619548700749874, 0.012371312826871872, 0.006795559078454971, 0.01821296103298664, -0.009457291103899479, 0.04147544875741005, -0.041505251079797745, 0.038538169115781784, 0....
0.062884
bypass the cache and send visibly so the user sees the gateway's response to their input. 3. \*\*Normal response\*\* → send via reply-token-or-push as usual. ```python async def send(self, chat\_id: str, content: str, \*\*kw) -> SendResult: if \_is\_system\_bypass(content): return await self.\_send\_text\_chunks(chat\_...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/adding-platform-adapters.md
main
hermes-agent
[ -0.04754330962896347, -0.03513036668300629, 0.015548336319625378, 0.08048013597726822, -0.050359953194856644, -0.12744738161563873, 0.033163294196128845, -0.03596816211938858, 0.08704692125320435, 0.005896452814340591, -0.035937655717134476, 0.02931872569024563, -0.040394023060798645, -0.0...
0.082306
\*\*Early env check `\_any\_allowlist` tuple\*\* — Add `"NEWPLAT\_ALLOWED\_USERS"` 5. \*\*Early env check `\_allow\_all` tuple\*\* — Add `"NEWPLAT\_ALLOW\_ALL\_USERS"` 6. \*\*`\_UPDATE\_ALLOWED\_PLATFORMS` frozenset\*\* — Add `Platform.NEWPLAT` ### 5. Cross-Platform Delivery 1. \*\*`gateway/platforms/webhook.py`\*\* — ...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/adding-platform-adapters.md
main
hermes-agent
[ -0.007261498365551233, 0.015361587516963482, -0.06594774127006531, -0.04270686209201813, 0.012343433685600758, -0.09243391454219818, -0.00250332523137331, 0.013470498844981194, -0.11665990948677063, 0.033660393208265305, 0.06201312690973282, -0.08329597860574722, 0.0031314671505242586, -0....
0.061834
and deliver the agent's reply proactively via API later. Agent sessions run 3–30 minutes — inline replies within a callback response window are not feasible. ### Token Locks If the adapter holds a persistent connection with a unique credential, add a scoped lock to prevent two profiles from using the same credential: `...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/adding-platform-adapters.md
main
hermes-agent
[ -0.10909690707921982, -0.043660618364810944, -0.06803631782531738, 0.08513014018535614, -0.05194886028766632, -0.04775567725300789, 0.048323195427656174, -0.0008897915831767023, 0.026347458362579346, -0.039638809859752655, -0.017349371686577797, -0.004839791916310787, 0.0429743267595768, 0...
0.010163
# Prompt Assembly Hermes deliberately separates: - \*\*cached system prompt state\*\* - \*\*ephemeral API-call-time additions\*\* This is one of the most important design choices in the project because it affects: - token usage - prompt caching effectiveness - session continuity - memory correctness Primary files: - `r...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/prompt-assembly.md
main
hermes-agent
[ -0.0156437736004591, 0.028630752116441727, -0.05613906681537628, -0.07507956773042679, -0.0005706134834326804, -0.08797147870063782, 0.027243781834840775, 0.06121125444769859, 0.038253191858530045, 0.06830991804599762, -0.017712442204356194, 0.007277721539139748, 0.05940774828195572, -0.05...
0.117967
but simple text renderable inside a terminal. ``` ## How SOUL.md appears in the prompt `SOUL.md` lives at `~/.hermes/SOUL.md` and serves as the agent's identity — the very first section of the system prompt. The loading logic in `prompt\_builder.py` works as follows: ```python # From agent/prompt\_builder.py (simplifie...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/prompt-assembly.md
main
hermes-agent
[ 0.025599854066967964, 0.09156516194343567, -0.0628407672047615, 0.002303498797118664, 0.011968784034252167, -0.09216240048408508, 0.024375133216381073, 0.04063279926776886, 0.02487790212035179, -0.006289072800427675, -0.024173080921173096, 0.027510175481438637, 0.06620711833238602, -0.0242...
-0.012279
but do not mutate the already-built cached system prompt until a rebuild path runs (new session, or explicit invalidation/rebuild flow such as compression-triggered rebuild). ## Context files `agent/prompt\_builder.py` scans and sanitizes project context files using a \*\*priority system\*\* — only one type is loaded (...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/prompt-assembly.md
main
hermes-agent
[ -0.04760118946433067, 0.012237937189638615, -0.0009194477461278439, -0.07817500829696655, 0.015792222693562508, -0.10173514485359192, 0.02737283520400524, -0.0015820699045434594, 0.021418504416942596, 0.038075488060712814, -0.020790448412299156, 0.041315387934446335, 0.06562713533639908, -...
0.053289
# Extending the CLI Hermes exposes protected extension hooks on `HermesCLI` so wrapper CLIs can add widgets, keybindings, and layout customizations without overriding the 1000+ line `run()` method. This keeps your extension decoupled from internal changes. ## Extension points There are five extension seams available: |...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/extending-the-cli.md
main
hermes-agent
[ -0.059849031269550323, 0.009460442699491978, -0.029268208891153336, -0.04977904632687569, -0.02222561091184616, 0.0010015099542215466, 0.004526274744421244, 0.04260456934571266, -0.05170506611466408, 0.013817516155540943, 0.012715603224933147, -0.025879405438899994, 0.06649113446474075, -0...
0.048814
# anchor sudo\_widget, # sudo password prompt (conditional) secret\_widget, # secret input prompt (conditional) approval\_widget, # dangerous command approval (conditional) clarify\_widget, # clarify question UI (conditional) model\_picker\_widget, # model picker overlay (conditional) spinner\_widget, # thinking spinne...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/extending-the-cli.md
main
hermes-agent
[ -0.10778235644102097, -0.008297780528664589, -0.007874212227761745, -0.03176332265138626, 0.031144874170422554, 0.028392912819981575, -0.0174822099506855, 0.0694444477558136, 0.03239647299051285, -0.015002329833805561, 0.025705493986606598, -0.01517106406390667, 0.060858484357595444, 0.002...
0.022926
# Building a Memory Provider Plugin Memory provider plugins give Hermes Agent persistent, cross-session knowledge beyond the built-in MEMORY.md and USER.md. This guide covers how to build one. :::tip Memory providers are one of two \*\*provider plugin\*\* types. The other is [Context Engine Plugins](/developer-guide/co...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/memory-provider-plugin.md
main
hermes-agent
[ -0.07370004802942276, -0.03173283487558365, -0.11418619006872177, 0.03019079938530922, -0.03773193061351776, -0.022642388939857483, 0.06677667051553726, 0.062237877398729324, -0.02852741815149784, -0.014145216904580593, 0.034250449389219284, 0.021974995732307434, 0.07514859735965729, 0.008...
0.101557
wizard fast while still supporting advanced configuration. See the Supermemory provider for an example — it only prompts for the API key; all other options live in `supermemory.json`. ::: ## Save Config ```python def save\_config(self, values: dict, hermes\_home: str) -> None: """Write non-secret config to your native ...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/memory-provider-plugin.md
main
hermes-agent
[ -0.030087348073720932, -0.011215041391551495, -0.07166260480880737, 0.016801895573735237, -0.021374166011810303, -0.07164150476455688, -0.03614508733153343, 0.019358517602086067, -0.047158483415842056, -0.0017532691126689315, 0.05250231549143791, 0.022779855877161026, 0.05362817272543907, ...
0.000127
Provider Rule Only \*\*one\*\* external memory provider can be active at a time. If a user tries to register a second, the MemoryManager rejects it with a warning. This prevents tool schema bloat and conflicting backends.
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/memory-provider-plugin.md
main
hermes-agent
[ -0.0355386808514595, -0.07589927315711975, -0.0596335344016552, 0.040118034929037094, -0.009979653172194958, -0.00926879420876503, 0.09017494320869446, 0.0312005877494812, 0.023478273302316666, -0.013572249561548233, 0.08128166198730469, -0.04330219700932503, 0.0965922474861145, 0.00539953...
0.108018
# Agent Loop Internals The core orchestration engine is `run\_agent.py`'s `AIAgent` class — a large file (~4,400 lines) that handles everything from prompt assembly to tool dispatch to provider failover. ## Core Responsibilities `AIAgent` is responsible for: - Assembling the effective system prompt and tool schemas via...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/agent-loop.md
main
hermes-agent
[ -0.037048861384391785, -0.027858249843120575, -0.035962190479040146, 0.044364526867866516, -0.02535957284271717, -0.11400538682937622, 0.020627180114388466, 0.0732494592666626, -0.013467459939420223, -0.005390231963247061, 0.02162971906363964, 0.004339627921581268, -0.0017603873275220394, ...
0.208063
these sequences and will reject malformed histories. ## Interruptible API Calls API requests are wrapped in `\_interruptible\_api\_call()` which runs the actual HTTP call in a background thread while monitoring an interrupt event: ```text ┌────────────────────────────────────────────────────┐ │ Main thread API thread │...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/agent-loop.md
main
hermes-agent
[ -0.11672768741846085, -0.030707163736224174, -0.009221764281392097, -0.000716765527613461, -0.010738378390669823, -0.05299621820449829, -0.049183011054992676, -0.05363642796874046, 0.08089146018028259, -0.012569473125040531, 0.017305396497249603, 0.007795004174113274, -0.007736664265394211, ...
0.14701
system also covers auxiliary tasks independently — vision, compression, and web extraction each have their own fallback chain configurable via the `auxiliary.\*` config section. ## Compression and Persistence ### When Compression Triggers - \*\*Preflight\*\* (before API call): If conversation exceeds 50% of model's con...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/agent-loop.md
main
hermes-agent
[ -0.10790064930915833, 0.026365889236330986, -0.027658209204673767, 0.023734156042337418, 0.02282780595123768, -0.08223426342010498, -0.02679986134171486, 0.01562165655195713, 0.045399539172649384, 0.015911931172013283, -0.040082864463329315, 0.04950038343667984, 0.017651360481977463, -0.00...
0.167984
# ACP Internals The ACP adapter wraps Hermes' synchronous `AIAgent` in an async JSON-RPC stdio server. Key implementation files: - `acp\_adapter/entry.py` - `acp\_adapter/server.py` - `acp\_adapter/session.py` - `acp\_adapter/events.py` - `acp\_adapter/permissions.py` - `acp\_adapter/tools.py` - `acp\_adapter/auth.py` ...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/acp-internals.md
main
hermes-agent
[ -0.09838373214006424, 0.06266578286886215, -0.08954337984323502, 0.002782001392915845, 0.004698977805674076, -0.03875868767499924, -0.006011001765727997, 0.056677330285310745, -0.02096332050859928, -0.011636330746114254, 0.11968719214200974, -0.0070401569828391075, 0.017452921718358994, 0....
0.069902
calls in one step Without FIFO queues, completion events would attach to the wrong tool invocation. ## Approval callback restoration ACP temporarily installs an approval callback on the terminal tool during prompt execution, then restores the previous callback afterward. This avoids leaving ACP session-specific approva...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/acp-internals.md
main
hermes-agent
[ -0.12609454989433289, 0.041394688189029694, -0.019950345158576965, 0.013431934639811516, -0.0141333332285285, -0.048199478536844254, -0.0060748751275241375, -0.005515404976904392, 0.04443708434700966, 0.03217831999063492, 0.05541255697607994, 0.013225186616182327, -0.01850910112261772, -0....
0.042641
# Contributing Thank you for contributing to Hermes Agent! This guide covers setting up your dev environment, understanding the codebase, and getting your PR merged. ## Contribution Priorities We value contributions in this order: 1. \*\*Bug fixes\*\* — crashes, incorrect behavior, data loss 2. \*\*Cross-platform compa...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/contributing.md
main
hermes-agent
[ -0.04189439117908478, 0.02924959547817707, -0.05628505349159241, -0.04018940404057503, -0.012443327344954014, -0.07327587157487869, -0.041260309517383575, 0.036336302757263184, -0.06724189966917038, 0.061409108340740204, 0.038804978132247925, -0.03798924759030342, 0.0878952220082283, -0.00...
0.06622
default on Windows is the system locale (often cp1252), which mojibakes or crashes on non-Latin text. - \*\*Use `pathlib.Path` / `os.path.join` — never manually concat with `/`.\*\* This matters less for strings the OS gives us back and more for strings we construct to hand to subprocesses. Key patterns: ### 1. `termio...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/contributing.md
main
hermes-agent
[ 0.03692992776632309, -0.014572039246559143, 0.009606472216546535, -0.02132957987487316, -0.0026853608433157206, -0.035064421594142914, 0.041535165160894394, 0.07115969061851501, 0.022726986557245255, 0.005605584476143122, 0.012547062709927559, -0.05539589002728462, 0.11770915240049362, 0.0...
0.055973
## License By contributing, you agree that your contributions will be licensed under the [MIT License](https://github.com/NousResearch/hermes-agent/blob/main/LICENSE).
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/contributing.md
main
hermes-agent
[ -0.042530618607997894, -0.0042741671204566956, -0.0036606520880013704, -0.06380688399076462, 0.018614402040839195, -0.023352470248937607, -0.024611344560980797, -0.04973625764250755, 0.039783429354429245, -0.00791191030293703, 0.03363705053925514, 0.023637890815734863, 0.045849140733480453, ...
0.098146
# Building a Context Engine Plugin Context engine plugins replace the built-in `ContextCompressor` with an alternative strategy for managing conversation context. For example, a Lossless Context Management (LCM) engine that builds a knowledge DAG instead of lossy summarization. ## How it works The agent's context manag...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/context-engine-plugin.md
main
hermes-agent
[ -0.08145831525325775, -0.030169127508997917, -0.03383779153227806, 0.02507821097970009, -0.005866494961082935, -0.03778360038995743, 0.06975660473108292, 0.017575884237885475, 0.01372036524116993, -0.04714561253786087, -0.0018897752743214369, -0.09662898629903793, 0.046555764973163605, 0.0...
0.131675
json.dumps({"error": f"Unknown tool: {name}"}) ``` Engine tools are injected into the agent's tool list at startup and dispatched automatically — no registry registration needed. ## Registration ### Via directory (recommended) Place your engine in `plugins/context\_engine//`. The `\_\_init\_\_.py` must export a `Contex...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/context-engine-plugin.md
main
hermes-agent
[ -0.16349615156650543, -0.05047621205449104, -0.041295383125543594, 0.015024945139884949, -0.057223130017519, -0.0635923221707344, -0.00042313634185120463, 0.06647241115570068, -0.058030690997838974, -0.07373165339231491, 0.023422973230481148, -0.07164063304662704, 0.02404024451971054, 0.06...
0.067118
# Adding Tools Before writing a tool, ask yourself: \*\*should this be a [skill](creating-skills.md) instead?\*\* :::warning Built-in Core Tools Only This page is for adding a \*\*built-in Hermes tool\*\* to the repository itself. If you want a personal, project-local, or otherwise custom tool without modifying Hermes ...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/adding-tools.md
main
hermes-agent
[ -0.07383580505847931, -0.025311505421996117, -0.05104110389947891, -0.0024683193769305944, -0.08723028749227524, -0.07842440903186798, -0.05277473106980324, -0.010706392116844654, -0.053111206740140915, 0.09048060327768326, 0.013753527775406837, -0.04252708703279495, 0.07971123605966568, 0...
0.049868
async def weather\_tool\_async(location: str) -> str: async with aiohttp.ClientSession() as session: ... return json.dumps(result) registry.register( name="weather", toolset="weather", schema=WEATHER\_SCHEMA, handler=lambda args, \*\*kw: weather\_tool\_async(args.get("location", "")), check\_fn=check\_weather\_requirem...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/adding-tools.md
main
hermes-agent
[ -0.06172744557261467, 0.03878191113471985, -0.05737989768385887, 0.14536260068416595, -0.08279727399349213, -0.11555697023868561, -0.02002131938934326, -0.010960946790874004, -0.014481119811534882, -0.053531475365161896, -0.028940370306372643, -0.11865274608135223, -0.03964164853096008, -0...
0.09906
# Building an Image Generation Provider Plugin Image-gen provider plugins register a backend that services every `image\_generate` tool call — DALL·E, gpt-image, Grok, Flux, Imagen, Stable Diffusion, fal, Replicate, a local ComfyUI rig, anything. Built-in providers (OpenAI, OpenAI-Codex, xAI) all ship as plugins. You c...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/image-gen-provider-plugin.md
main
hermes-agent
[ -0.11690208315849304, -0.045247502624988556, -0.02981771156191826, 0.02170657552778721, 0.03618544340133667, -0.04024151340126991, -0.001346342614851892, 0.029347382485866547, -0.015514819882810116, -0.03931237757205963, 0.0899972915649414, -0.04313531517982483, 0.053240690380334854, 0.018...
0.151654
prompt=prompt, model=model\_id, aspect\_ratio=aspect\_ratio, ) # Two shapes supported: # - URL string: return it as `image` # - base64 data: save under $HERMES\_HOME/cache/images/ via save\_b64\_image() if result.get("image\_b64"): path = save\_b64\_image( result["image\_b64"], prefix=self.name, extension="png", ) imag...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/image-gen-provider-plugin.md
main
hermes-agent
[ 0.03786061331629753, 0.004586559720337391, -0.041567735373973846, 0.03101816028356552, 0.017185673117637634, -0.08115802705287933, -0.03212279453873634, 0.08150434494018555, -0.003694895887747407, 0.016819210723042488, 0.05681072548031807, -0.07649841159582138, 0.08359088748693466, 0.04203...
0.010228
\*\*`plugins/image\_gen/openai-codex/\_\_init\_\_.py`\*\* — Codex-style Responses API variant reusing the OpenAI SDK with a different routing base URL. ## Distribute via pip ```toml # pyproject.toml [project.entry-points."hermes\_agent.plugins"] my-backend-imggen = "my\_backend\_imggen\_package" ``` `my\_backend\_imgge...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/image-gen-provider-plugin.md
main
hermes-agent
[ -0.0825146734714508, -0.03178824856877327, -0.024544762447476387, 0.02322014421224594, 0.04031028971076012, -0.05495360493659973, -0.03438340499997139, 0.04732348397374153, 0.0073387217707931995, -0.04413954168558121, 0.06726506352424622, -0.038050293922424316, 0.04574635252356529, 0.02755...
0.057279
# Creating Skills Skills are the preferred way to add new capabilities to Hermes Agent. They're easier to create than tools, require no code changes to the agent, and can be shared with the community. ## Should it be a Skill or a Tool? Make it a \*\*Skill\*\* when: - The capability can be expressed as instructions + sh...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/creating-skills.md
main
hermes-agent
[ -0.0365617536008358, 0.002172040520235896, -0.06754294037818909, -0.017573945224285126, -0.07083363085985184, -0.06720758229494095, -0.006827183533459902, -0.05389995872974396, -0.05698304995894432, 0.015452024526894093, 0.022103656083345413, -0.03860452026128769, 0.08418691903352737, 0.05...
0.116832
fallback\_for\_tools: [browser\_navigate] # Hide if browser\_navigate IS available ``` | Field | Behavior | |-------|----------| | `requires\_toolsets` | Skill is \*\*hidden\*\* when ANY listed toolset is \*\*not\*\* available | | `requires\_tools` | Skill is \*\*hidden\*\* when ANY listed tool is \*\*not\*\* available...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/creating-skills.md
main
hermes-agent
[ -0.08650528639554977, -0.0030223699286580086, -0.01885972172021866, 0.08212511241436005, 0.03154602274298668, 0.020265070721507072, 0.06527324765920639, -0.052253447473049164, -0.06098584458231926, -0.04437877610325813, 0.030092740431427956, -0.05469731613993645, 0.06736496090888977, -0.01...
0.0256
(optional) — prompt text shown during `hermes config migrate`; falls back to `description` \*\*How it works:\*\* 1. \*\*Storage:\*\* Values are written to `config.yaml` under `skills.config.`: ```yaml skills: config: myplugin: path: ~/my-data ``` 2. \*\*Discovery:\*\* `hermes config migrate` scans all enabled skills, f...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/creating-skills.md
main
hermes-agent
[ -0.003937689121812582, 0.03375796973705292, -0.03424876555800438, 0.006326843984425068, -0.018187295645475388, -0.07350615411996841, 0.011540895327925682, -0.030127903446555138, -0.05466674268245697, 0.012268136255443096, 0.056753236800432205, -0.035074084997177124, 0.08897747844457626, -0...
0.075775
id (left in place if there is no session) | So a SKILL.md can tell the agent to run a bundled script directly with: ```markdown To analyse the input, run: node ${HERMES\_SKILL\_DIR}/scripts/analyse.js ``` The agent sees the substituted absolute path and invokes the `terminal` tool with a ready-to-run command — no path ...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/creating-skills.md
main
hermes-agent
[ -0.008444047532975674, 0.07352429628372192, -0.031976353377103806, 0.06361163407564163, -0.0025274399667978287, -0.03298405185341835, -0.0016781868180260062, -0.0018188981339335442, -0.006942590698599815, 0.009058433584868908, -0.03717169165611267, 0.057244136929512024, 0.07022572308778763, ...
0.124116
# Building a Web Search Provider Plugin Web-search provider plugins register a backend that services `web\_search`, `web\_extract`, and (optionally) deep-crawl tool calls. Built-in providers — Firecrawl, SearXNG, Tavily, Exa, Parallel, Brave Search (free tier), xAI, and DDGS — all ship as plugins under `plugins/web//`....
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/web-search-provider-plugin.md
main
hermes-agent
[ -0.1354520618915558, -0.04108676314353943, -0.023556062951683998, 0.027453400194644928, 0.027752423658967018, 0.008644187822937965, -0.032860226929187775, -0.012115680612623692, -0.030326267704367638, -0.018355416133999825, 0.08059264719486237, 0.011372373439371586, 0.03271102160215378, 0....
0.068979
API" author: Your Name kind: backend provides\_web\_providers: - my-backend requires\_env: - MY\_BACKEND\_API\_KEY ``` | Key | Purpose | |---|---| | `kind: backend` | Routes the plugin through the backend-loading path | | `provides\_web\_providers` | List of provider `name`s this plugin registers — used by the loader t...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/web-search-provider-plugin.md
main
hermes-agent
[ -0.10048060864210129, -0.02410653978586197, -0.06205107644200325, -0.0066723949275910854, -0.07411080598831177, -0.04849229007959366, -0.013968919403851032, 0.018063640221953392, -0.045401208102703094, 0.015775643289089203, -0.005603963043540716, -0.04333214461803436, 0.062300071120262146, ...
0.047035
LLM Errors surface as the tool result; the LLM decides how to explain them. If no provider is registered (or every available one fails the capability gate), the tool returns a helpful error pointing at `hermes tools`. ## Lazy-installing optional dependencies If your provider wraps a third-party SDK (like DDGS does with...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/web-search-provider-plugin.md
main
hermes-agent
[ -0.06929042190313339, 0.020635971799492836, 0.034632373601198196, -0.036479610949754715, 0.042884908616542816, -0.06992658972740173, -0.0977715253829956, 0.010195777751505375, -0.05281108617782593, 0.029766857624053955, 0.03895357996225357, -0.021721268072724342, 0.07800072431564331, -0.04...
-0.04774
# Context Compression and Caching Hermes Agent uses a dual compression system and Anthropic prompt caching to manage context window usage efficiently across long conversations. Source files: `agent/context\_engine.py` (ABC), `agent/context\_compressor.py` (default engine), `agent/prompt\_caching.py`, `gateway/run.py` (...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/context-compression-and-caching.md
main
hermes-agent
[ -0.0733080506324768, 0.04195399954915047, -0.05543459951877594, 0.0013675617519766092, -0.011372717097401619, -0.09118246287107468, 0.03670988604426384, 0.01943618804216385, 0.05754910409450531, -0.00494180666282773, -0.061097100377082825, 0.002574037527665496, 0.03870951011776924, -0.0084...
0.204918
| Minimum number of recent messages always preserved | | `protect\_first\_n` | `3` | (hardcoded) | System prompt + first exchange always preserved | ### Computed Values (for a 200K context model at defaults) ``` context\_length = 200,000 threshold\_tokens = 200,000 × 0.50 = 100,000 tail\_token\_budget = 100,000 × 0.20 ...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/context-compression-and-caching.md
main
hermes-agent
[ 0.021913858130574226, -0.040642350912094116, -0.044015876948833466, 0.04330229014158249, -0.0034054650459438562, -0.038204021751880646, 0.05468364804983139, 0.11260587722063065, 0.07322133332490921, 0.01619015447795391, 0.04523694887757301, -0.06008940190076828, 0.0429743267595768, -0.0175...
0.12527
4: Assemble Compressed Messages The compressed message list is: 1. Head messages (with a note appended to system prompt on first compression) 2. Summary message (role chosen to avoid consecutive same-role violations) 3. Tail messages (unmodified) Orphaned tool\_call/tool\_result pairs are cleaned up by `\_sanitize\_too...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/context-compression-and-caching.md
main
hermes-agent
[ -0.05896679311990738, 0.06957682222127914, 0.016911745071411133, 0.038341421633958817, 0.0189137514680624, -0.012009981088340282, -0.006176159251481295, 0.03195096179842949, 0.016992168501019478, -0.007511115167289972, 0.009466606192290783, 0.04863913357257843, 0.06714777648448944, -0.0274...
0.125307
### Cache-Aware Design Patterns 1. \*\*Stable system prompt\*\*: The system prompt is breakpoint 1 and cached across all turns. Avoid mutating it mid-conversation (compression appends a note only on the first compaction). 2. \*\*Message ordering matters\*\*: Cache hits require prefix matching. Adding or removing messag...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/context-compression-and-caching.md
main
hermes-agent
[ -0.013516843318939209, 0.022377699613571167, 0.0036920628044754267, -0.018924077972769737, -0.02963862195611, -0.07997126877307892, 0.024078713729977608, 0.022047879174351692, 0.047890447080135345, 0.05471513047814369, -0.04259471595287323, 0.019129296764731407, -0.020238632336258888, -0.0...
0.117636
# Gateway Internals The messaging gateway is the long-running process that connects Hermes to 20+ external messaging platforms through a unified architecture. ## Key Files | File | Purpose | |------|---------| | `gateway/run.py` | `GatewayRunner` — main loop, slash commands, message dispatch (large file; check git for ...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/gateway-internals.md
main
hermes-agent
[ -0.03533998504281044, -0.04754950478672981, -0.06399116665124893, -0.019865497946739197, -0.040304701775312424, -0.08944650739431381, 0.02006392739713192, 0.048126012086868286, 0.012192100286483765, 0.016554808244109154, 0.005968969315290451, 0.04645979031920433, 0.01147961150854826, -0.03...
0.157769
new users via a pairing code 4. \*\*Global allow-all\*\* (`GATEWAY\_ALLOW\_ALL\_USERS`) — if set, all users across all platforms are authorized 5. \*\*Default: deny\*\* — unauthorized users are rejected ### DM Pairing Flow ```text Admin: /pair Gateway: "Pairing code: ABC123. Share with the user." New user: ABC123 Gatew...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/gateway-internals.md
main
hermes-agent
[ -0.04338586702942848, -0.03163570538163185, -0.038987815380096436, -0.03766972944140434, -0.12465859949588776, -0.019253825768828392, -0.012655508704483509, -0.009398702532052994, -0.03375183418393135, 0.028262333944439888, 0.04267527163028717, 0.06340306252241135, 0.0291973315179348, 0.04...
0.013501
tool for shell scripts - \*\*Cross-platform delivery\*\* — deliver to a different platform than the originating message Cron job deliveries are NOT mirrored into gateway session history — they live in their own cron session only. This is a deliberate design choice to avoid message alternation violations. ## Hooks Gatew...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/developer-guide/gateway-internals.md
main
hermes-agent
[ -0.0507255420088768, -0.02197182923555374, -0.05173229053616524, -0.01965290494263172, -0.027481382712721825, -0.06422781199216843, 0.02579238824546337, -0.004538494162261486, 0.02149936743080616, -0.008163422346115112, 0.017635393887758255, 0.009036791510879993, -0.02046423777937889, 0.00...
0.113021
# Slash Commands Reference Hermes has two slash-command surfaces, both driven by a central `COMMAND\_REGISTRY` in `hermes\_cli/commands.py`: - \*\*Interactive CLI slash commands\*\* — dispatched by `cli.py`, with autocomplete from the registry - \*\*Messaging slash commands\*\* — dispatched by `gateway/run.py`, with he...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/slash-commands.md
main
hermes-agent
[ -0.07196874171495438, -0.0025325329042971134, -0.0012016210239380598, 0.0028525753878057003, -0.0511263906955719, -0.06491939723491669, 0.002145061967894435, 0.030520938336849213, -0.01158454641699791, 0.03397415205836296, 0.012894061394035816, -0.008146759122610092, 0.027152126654982567, ...
0.151066
goal Hermes works toward across turns — our take on the Ralph loop. After each turn an auxiliary judge model decides whether the goal is done; if not, Hermes auto-continues. Subcommands: `/goal status`, `/goal pause`, `/goal resume`, `/goal clear`. Budget defaults to 20 turns (`goals.max\_turns`); any real user message...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/slash-commands.md
main
hermes-agent
[ -0.023383568972349167, 0.057136084884405136, -0.024761579930782318, -0.03295252099633217, 0.03106895461678505, -0.0006102357874624431, -0.01408321037888527, 0.002480702707543969, -0.001645626500248909, -0.0005888808518648148, -0.02540871873497963, 0.023620331659913063, 0.014384998939931393, ...
0.083982
the optional [Codex app-server runtime](../user-guide/features/codex-app-server-runtime) for OpenAI/Codex models. `auto` (default) uses Hermes' standard chat completions; `codex\_app\_server` hands turns to a `codex app-server` subprocess for native shell, apply\_patch, ChatGPT subscription auth, and migrated Codex plu...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/slash-commands.md
main
hermes-agent
[ -0.05008722469210625, -0.0196499265730381, -0.0017254763515666127, 0.027149930596351624, 0.009414494037628174, -0.08351007103919983, 0.02708587981760502, 0.0130884675309062, 0.04150421917438507, 0.025500869378447533, 0.0178137868642807, -0.015469151549041271, -0.03530105575919151, 0.072385...
0.150469
| `/platforms` (alias: `/gateway`) | Show gateway/messaging platform status (CLI-only summary view). | | `/platform <list\|pause\|resume> [name]` | Operate a running gateway platform. `/platform list` lists every adapter and its state (running, paused-by-breaker, manually-paused); `/platform pause <name>` stops dispatc...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/slash-commands.md
main
hermes-agent
[ -0.037251487374305725, -0.03631583973765373, 0.01889650709927082, -0.005808153655380011, 0.00644057197496295, -0.019666973501443863, 0.016726410016417503, 0.008358592167496681, 0.007371103391051292, -0.018522851169109344, 0.0381387323141098, -0.0019004642963409424, -0.02904144488275051, 0....
0.146687
Messaging slash commands The messaging gateway supports the following built-in commands inside Telegram, Discord, Slack, WhatsApp, Signal, Email, Home Assistant, and Teams chats: | Command | Description | |---------|-------------| | `/start` | Platform-protocol command. Many chat platforms (Telegram, Discord, …) send `...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/slash-commands.md
main
hermes-agent
[ -0.031950294971466064, -0.0702521875500679, 0.010875068604946136, -0.0016487868269905448, -0.03018905222415924, -0.07302326709032059, -0.005061102565377951, 0.011147184297442436, 0.05691447854042053, 0.08396346867084503, 0.011503702960908413, 0.002163349650800228, -0.017163118347525597, 0....
0.117057
a message after the next tool call without interrupting — the model picks it up on its next iteration rather than as a new turn. | | `/goal <text>` | Set a standing goal Hermes works toward across turns — our take on the Ralph loop. A judge model checks after each turn; if not done, Hermes auto-continues until it is, y...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/slash-commands.md
main
hermes-agent
[ -0.018626468256115913, -0.01660802960395813, -0.0664096474647522, -0.018552493304014206, 0.024146176874637604, -0.01813686639070511, 0.005058608017861843, 0.021355202421545982, 0.018387457355856895, 0.005199313163757324, 0.023014646023511887, -0.0100072231143713, -0.004730957560241222, -0....
0.097103
current session's SQLite history and on-disk transcripts. | For each of these the CLI opens a three-choice modal: \*\*Approve Once\*\* (proceed this time), \*\*Always Approve\*\* (proceed and persist `approvals.destructive\_slash\_confirm: false` so future destructive commands run without prompting), or \*\*Cancel\*\*....
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/slash-commands.md
main
hermes-agent
[ -0.06090594455599785, 0.016834238544106483, -0.010627314448356628, 0.016681229695677757, 0.032902222126722336, -0.045111190527677536, 0.09947417676448822, -0.044894784688949585, 0.03900850564241409, 0.048915207386016846, 0.04569752514362335, -0.024797014892101288, 0.011716172099113464, -0....
0.021411
# Environment Variables Reference All variables go in `~/.hermes/.env`. You can also set them with `hermes config set VAR value`. ## LLM Providers | Variable | Description | |----------|-------------| | `OPENROUTER\_API\_KEY` | OpenRouter API key (recommended for flexibility) | | `OPENROUTER\_BASE\_URL` | Override the ...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/environment-variables.md
main
hermes-agent
[ 0.055368807166814804, -0.02869688719511032, -0.042094893753528595, 0.009300765581429005, 0.0029565852601081133, -0.10315285623073578, -0.11456216871738434, 0.013525553047657013, 0.01939355581998825, 0.03947044536471367, -0.02377021312713623, 0.039773404598236084, -0.017161212861537933, -0....
-0.017265
user-assigned managed identity) | | `AZURE\_CLIENT\_SECRET` | Service principal secret used by `EnvironmentCredential` | | `AZURE\_CLIENT\_CERTIFICATE\_PATH` | Service principal certificate (alternative to `AZURE\_CLIENT\_SECRET`) | | `AZURE\_FEDERATED\_TOKEN\_FILE` | Federated token file path for AKS Workload Identity...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/environment-variables.md
main
hermes-agent
[ -0.07284273207187653, 0.03064926341176033, 0.004493545275181532, -0.002396495547145605, -0.01124652475118637, -0.008073443546891212, 0.08669231832027435, -0.017353855073451996, 0.10221956670284271, 0.09721767157316208, 0.0051615070551633835, -0.06696277111768723, 0.06217007711529732, 0.063...
0.099571
| Optional local speech-to-text command template. Supports `{input\_path}`, `{output\_dir}`, `{language}`, and `{model}` placeholders | | `HERMES\_LOCAL\_STT\_LANGUAGE` | Default language passed to `HERMES\_LOCAL\_STT\_COMMAND` or auto-detected local `whisper` CLI fallback (default: `en`) | | `HERMES\_HOME` | Override ...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/environment-variables.md
main
hermes-agent
[ 0.021535059437155724, -0.04454943537712097, -0.06038360297679901, -0.04598120599985123, -0.0606398805975914, -0.0008384428219869733, 0.025660229846835136, 0.041826359927654266, 0.03353423252701759, -0.024007650092244148, -0.0033623515628278255, -0.02217280864715576, 0.048669952899217606, 0...
0.074967
extract, and crawl ([app.tavily.com](https://app.tavily.com/home)) | | `SEARXNG\_URL` | SearXNG instance URL for free self-hosted web search — no API key required ([searxng.github.io](https://searxng.github.io/searxng/)) | | `TAVILY\_BASE\_URL` | Override the Tavily API endpoint. Useful for corporate proxies and self-h...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/environment-variables.md
main
hermes-agent
[ -0.07831667363643646, -0.006909321527928114, -0.02021314762532711, -0.014459100551903248, -0.016144253313541412, -0.07029992341995239, -0.07336356490850449, -0.019599631428718567, -0.031993962824344635, -0.05432302504777908, 0.014420295134186745, -0.03277669847011566, 0.016889477148652077, ...
0.102102
gateway deployments. Most users don't need to set these — the gateway is configured automatically via `hermes model` or `hermes tools`. | Variable | Description | |----------|-------------| | `TOOL\_GATEWAY\_DOMAIN` | Base domain for Tool Gateway routing (default: `nousresearch.com`) | | `TOOL\_GATEWAY\_SCHEME` | HTTP ...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/environment-variables.md
main
hermes-agent
[ 0.03108925186097622, -0.03145584091544151, -0.11067036539316177, -0.03754075989127159, -0.0954512357711792, -0.07859614491462708, -0.05626390129327774, 0.00027738214703276753, 0.034070078283548355, 0.005421665497124195, -0.005140834022313356, -0.01884656958281994, 0.02096807211637497, -0.0...
0.060047
| | `TELEGRAM\_GROUP\_ALLOWED\_CHATS` | Comma-separated group/forum chat IDs; any member is authorized | | `TELEGRAM\_HOME\_CHANNEL` | Default Telegram chat/channel for cron delivery | | `TELEGRAM\_HOME\_CHANNEL\_NAME` | Display name for the Telegram home channel | | `TELEGRAM\_CRON\_THREAD\_ID` | Forum topic ID to rec...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/environment-variables.md
main
hermes-agent
[ -0.04275181517004967, -0.03374077007174492, -0.028911320492625237, -0.03453611582517624, 0.018211139366030693, -0.0415988527238369, 0.06899917870759964, -0.0038126346189528704, -0.042214345186948776, 0.05427231639623642, 0.017840445041656494, -0.10501443594694138, 0.02408747561275959, 0.04...
0.107817
Allow the bot to ping `@everyone`/`@here` (default: `false`). See [Mention Control](../user-guide/messaging/discord.md#mention-control). | | `DISCORD\_ALLOW\_MENTION\_ROLES` | Allow the bot to ping `@role` mentions (default: `false`). | | `DISCORD\_ALLOW\_MENTION\_USERS` | Allow the bot to ping individual `@user` menti...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/environment-variables.md
main
hermes-agent
[ 0.00493864668533206, -0.04611992463469505, 0.033772822469472885, 0.015333049930632114, 0.04978407174348831, -0.01347658596932888, 0.06735464185476303, 0.05663340166211128, -0.04089958593249321, 0.01639680191874504, 0.003608045168220997, -0.09868452697992325, 0.06590503454208374, 0.06968850...
0.120001
| | `EMAIL\_PASSWORD` | Password or app password for the email account | | `EMAIL\_IMAP\_HOST` | IMAP hostname for the email adapter | | `EMAIL\_IMAP\_PORT` | IMAP port | | `EMAIL\_SMTP\_HOST` | SMTP hostname for the email adapter | | `EMAIL\_SMTP\_PORT` | SMTP port | | `EMAIL\_ALLOWED\_USERS` | Comma-separated email a...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/environment-variables.md
main
hermes-agent
[ -0.04780690371990204, -0.024068133905529976, -0.04276721179485321, -0.018552038818597794, 0.04574484005570412, -0.05897839367389679, 0.054744333028793335, 0.002576100407168269, -0.04616352915763855, 0.042810339480638504, 0.05807960033416748, -0.06413009017705917, 0.10424178838729858, -0.01...
0.112175
notifications | | `WEIXIN\_HOME\_CHANNEL\_NAME` | Display name for the Weixin home channel | | `WEIXIN\_ALLOW\_ALL\_USERS` | Allow all Weixin users without an allowlist (`true`/`false`) | | `BLUEBUBBLES\_SERVER\_URL` | BlueBubbles server URL (e.g. `http://192.168.1.10:1234`) | | `BLUEBUBBLES\_PASSWORD` | BlueBubbles se...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/environment-variables.md
main
hermes-agent
[ -0.006167115643620491, -0.025718029588460922, -0.04099937155842781, -0.033026572316884995, 0.0010900693014264107, -0.041097551584243774, 0.04872410371899605, -0.046956077218055725, -0.044485654681921005, -0.07626787573099136, 0.0637308806180954, -0.09167883545160294, 0.09406031668186188, 0...
0.104915
| | `WEBHOOK\_PORT` | HTTP server port for receiving webhooks (default: `8644`) | | `WEBHOOK\_SECRET` | Global HMAC secret for webhook signature validation (used as fallback when routes don't specify their own) | | `API\_SERVER\_ENABLED` | Enable the OpenAI-compatible API server (`true`/`false`). Runs alongside other p...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/environment-variables.md
main
hermes-agent
[ -0.07247532159090042, 0.04454972222447395, -0.10009528696537018, -0.061005108058452606, -0.0031586196273565292, -0.1019219309091568, -0.07092615962028503, -0.021469855681061745, -0.012492225505411625, -0.01567874662578106, 0.037653498351573944, -0.07634487003087997, -0.015511083416640759, ...
0.116602
app registration. | | `MSGRAPH\_CLIENT\_SECRET` | Client secret value for the app registration. Store in `~/.hermes/.env` with `chmod 600`; rotate periodically via the Azure portal. | | `MSGRAPH\_SCOPE` | OAuth2 scope for the client-credentials token request (default: `https://graph.microsoft.com/.default`). | | `MSGRA...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/environment-variables.md
main
hermes-agent
[ -0.10760524868965149, 0.05578891187906265, -0.03712616115808487, 0.017142901197075844, 0.003189010778442025, -0.06644443422555923, 0.02813784033060074, -0.015049849636852741, 0.012305344454944134, 0.09434875845909119, -0.007855360396206379, -0.0490657240152359, 0.06337852030992508, 0.05676...
0.032046
[ntfy](https://ntfy.sh/) is a lightweight HTTP-based push notification service. Subscribe to a topic from the [ntfy mobile app](https://ntfy.sh/docs/subscribe/phone/), publish to that topic to talk to the agent. | Variable | Description | |----------|-------------| | `NTFY\_TOPIC` | Topic to subscribe to (incoming mess...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/environment-variables.md
main
hermes-agent
[ -0.09526520222425461, -0.00444831233471632, -0.012482899241149426, 0.012136390432715416, 0.001430902280844748, -0.059791553765535355, 0.04202648624777794, -0.02259184420108795, 0.05193336680531502, -0.016838829964399338, -0.042146604508161545, -0.05856357142329216, 0.08217738568782806, 0.0...
0.217283
from `display.busy\_ack\_enabled` in `config.yaml`. | | `HERMES\_GATEWAY\_NO\_SUPERVISE` | Inside the s6-overlay Docker image, opt out of auto-supervision when running `hermes gateway run` and use pre-s6 foreground semantics (no auto-restart, gateway is the container's main process). Truthy values: `1`, `true`, `yes`. ...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/environment-variables.md
main
hermes-agent
[ -0.006962599232792854, 0.036563288420438766, -0.011351588182151318, -0.004445306491106749, 0.021183352917432785, -0.0359463095664978, -0.09280785173177719, -0.03663742169737816, 0.022387931123375893, -0.006387757137417793, -0.016271106898784637, 0.02098657563328743, 0.01315397024154663, -0...
0.051271
| | `HERMES\_API\_TIMEOUT` | LLM API call timeout in seconds (default: `1800`) | | `HERMES\_API\_CALL\_STALE\_TIMEOUT` | Non-streaming stale-call timeout in seconds (default: `300`). Auto-disabled for local providers when left unset. Also configurable via `providers..stale\_timeout\_seconds` or `providers..models..stal...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/environment-variables.md
main
hermes-agent
[ -0.020774904638528824, -0.00884077325463295, -0.04222432151436806, -0.015261015854775906, 0.01258410606533289, -0.0733923614025116, -0.0878307968378067, -0.04823480173945427, 0.05422649905085564, 0.008056765422224998, 0.014649352058768272, 0.022116025909781456, -0.017291534692049026, -0.03...
0.103699
used for OAuth credential storage (default: `~/.hermes/auth.json`). | | `HERMES\_AGENT\_HELP\_GUIDANCE` | Append additional guidance text to the system prompt for custom deployments. | | `HERMES\_AGENT\_LOGO` | Override the ASCII banner logo at CLI startup. | | `DELEGATION\_MAX\_CONCURRENT\_CHILDREN` | Max parallel sub...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/environment-variables.md
main
hermes-agent
[ -0.02997921220958233, 0.020429154857993126, -0.06981498748064041, -0.04822432994842529, -0.07110188901424408, -0.08582156151533127, 0.007346236612647772, 0.016097135841846466, -0.0020203925669193268, -0.015151952393352985, 0.04907460883259773, -0.029989251866936684, 0.11841785907745361, 0....
0.064221
primary model fallback chain is configured exclusively through `config.yaml` — there are no environment variables for it. Add a top-level `fallback\_providers` list with `provider` and `model` keys to enable automatic failover when your main model encounters errors. ```yaml fallback\_providers: - provider: openrouter m...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/environment-variables.md
main
hermes-agent
[ 0.026253126561641693, -0.05808604881167412, 0.03846318647265434, 0.02493646740913391, 0.023516802117228508, -0.032322682440280914, -0.09665891528129578, 0.030114663764834404, -0.05953047052025795, 0.029324209317564964, 0.016309954226017, 0.011972887441515923, 0.024603160098195076, -0.00687...
-0.049584
# Profile Commands Reference This page covers all commands related to [Hermes profiles](../user-guide/profiles.md). For general CLI commands, see [CLI Commands Reference](./cli-commands.md). ## `hermes profile` ```bash hermes profile ``` Top-level command for managing profiles. Running `hermes profile` without a subcom...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/profile-commands.md
main
hermes-agent
[ -0.012492834590375423, 0.020060766488313675, -0.015350033529102802, -0.024889878928661346, 0.00774512579664588, -0.05517266318202019, -0.0016805627383291721, 0.05723574012517929, -0.08376652002334595, -0.000575672835111618, -0.014932082034647465, -0.06429266929626465, 0.10398724675178528, ...
0.004287
--clone-all # Clone config from a specific profile hermes profile create work2 --clone --clone-from work ``` ## `hermes profile describe` ```bash hermes profile describe [] [options] ``` Read or set a profile's description. The description is consumed by the kanban orchestrator to route tasks based on what each profile...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/profile-commands.md
main
hermes-agent
[ 0.01774516887962818, 0.003433752106502652, 0.01857900433242321, 0.012783617712557316, -0.025968074798583984, -0.043112196028232574, 0.042834147810935974, 0.02818022109568119, -0.010729786939918995, -0.05666237697005272, -0.007658183109015226, -0.06487536430358887, 0.05922958254814148, -0.0...
0.066046
Description | |----------|-------------| | `` | Current profile name. | | `` | New profile name. | \*\*Example:\*\* ```bash hermes profile rename mybot assistant # ~/.hermes/profiles/mybot → ~/.hermes/profiles/assistant # ~/.local/bin/mybot → ~/.local/bin/assistant ``` ## `hermes profile export` ```bash hermes profile ...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/profile-commands.md
main
hermes-agent
[ -0.040467992424964905, 0.0800403356552124, -0.03515711426734924, 0.0071876635774970055, 0.04033101722598076, -0.030056163668632507, 0.03861519321799278, 0.11221343278884888, -0.0815621167421341, 0.012012937106192112, -0.043163564056158066, -0.058498650789260864, 0.06860650330781937, -0.009...
-0.070258
.env) is never touched. `config.yaml` is preserved by default to keep your local overrides. Pass `--force-config` to reset it to the distribution's shipped config. ### `hermes profile info` ```bash hermes profile info ``` Prints the profile's distribution manifest — name, version, required Hermes version, author, env v...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/profile-commands.md
main
hermes-agent
[ 0.004479415249079466, -0.026140019297599792, -0.0011842406820505857, -0.028463490307331085, 0.05752381309866905, -0.06555277109146118, 0.0011229392839595675, 0.010982326231896877, 0.001481499639339745, 0.0023743545170873404, 0.044526975601911545, 0.010841741226613522, 0.0707235336303711, -...
0.018804
for profile names and profile subcommands. | Argument | Description | |----------|-------------| | `` | Shell to generate completions for: `bash`, `zsh`, or `fish`. | \*\*Examples:\*\* ```bash # Install completions hermes completion bash >> ~/.bashrc hermes completion zsh >> ~/.zshrc hermes completion fish > ~/.config/...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/profile-commands.md
main
hermes-agent
[ 0.01719515025615692, -0.019432244822382927, -0.003505534725263715, -0.05532417073845863, -0.015883324667811394, -0.03414624556899071, 0.0761415883898735, 0.027980873361229897, -0.08638784289360046, -0.0391281396150589, -0.028574971482157707, -0.09992320090532303, 0.075094074010849, 0.07562...
-0.038478
# Model Catalog Hermes fetches curated model lists for \*\*OpenRouter\*\* and \*\*Nous Portal\*\* from a JSON manifest hosted alongside the docs site. This lets maintainers update picker lists without shipping a new `hermes-agent` release. When the manifest is unreachable (offline, network blocked, hosting failure), He...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/model-catalog.md
main
hermes-agent
[ -0.050828658044338226, -0.03503740578889847, 0.025042276829481125, -0.006850156933069229, 0.06639130413532257, -0.08743449300527573, -0.12031516432762146, -0.05510227009654045, 0.011671341955661774, 0.011654182337224483, 0.05883016437292099, 0.00026126214652322233, 0.0006427830085158348, 0...
0.029283
# CLI Commands Reference This page covers the \*\*terminal commands\*\* you run from your shell. For in-chat slash commands, see [Slash Commands Reference](./slash-commands.md). ## Global entrypoint ```bash hermes [global-options] [subcommand/options] ``` ### Global options | Option | Description | |--------|----------...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/cli-commands.md
main
hermes-agent
[ -0.03026844747364521, 0.0027233038563281298, 0.008160702884197235, -0.022512931376695633, -0.019923388957977295, -0.04574902728199959, 0.024759380146861076, 0.027595259249210358, 0.00424214918166399, 0.01349192950874567, -0.02515556663274765, -0.02719894051551819, 0.039562154561281204, 0.0...
0.05787
dependency issues. | | `hermes security audit` | On-demand supply-chain audit (OSV.dev) for the venv, plugin requirements, and pinned MCP servers. | | `hermes dump` | Copy-pasteable setup summary for support/debugging. | | `hermes prompt-size` | Show a byte breakdown of the system prompt + tool schemas (skills index, m...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/cli-commands.md
main
hermes-agent
[ -0.09363514184951782, 0.018610544502735138, -0.002863012021407485, -0.027913426980376244, 0.03575899079442024, -0.07010938227176666, -0.06224901229143143, -0.029127659276127815, -0.0439196415245533, 0.04414594545960426, 0.08230552077293396, 0.04430041089653969, 0.044631779193878174, -0.042...
0.020351
`-Q`, `--quiet` | Programmatic mode: suppress banner/spinner/tool previews. | | `--image ` | Attach a local image to a single query. | | `--resume ` / `--continue [name]` | Resume a session directly from `chat`. | | `--worktree` | Create an isolated git worktree for this run. | | `--checkpoints` | Enable filesystem che...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/cli-commands.md
main
hermes-agent
[ -0.051081229001283646, 0.046260617673397064, -0.0882226750254631, -0.02517155185341835, -0.00548621965572238, -0.08070643991231918, -0.02714383602142334, 0.017304252833127975, -0.009344234131276608, 0.06079864501953125, 0.04067789390683174, 0.018340839073061943, 0.07502324879169464, -0.032...
0.133269
you've already set up\*\*. It cannot add new providers, run OAuth, or prompt for API keys. \*\*If you need to add a new provider:\*\* Exit your Hermes session first (`Ctrl+C` or `/quit`), then run `hermes model` from your terminal prompt. ::: ### `/model` slash command (mid-session) Switch between already-configured mo...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/cli-commands.md
main
hermes-agent
[ -0.040015000849962234, -0.018207306042313576, -0.05341431125998497, -0.032254382967948914, -0.061798181384801865, -0.044972240924835205, 0.012602572329342365, -0.01744365319609642, 0.03630709648132324, 0.09840402752161026, 0.040125370025634766, -0.06287247687578201, 0.03624437376856804, 0....
-0.044026
one server's binary. | | `install-all` | Install every server with a known auto-install recipe. | | `restart` | Tear down running clients so the next edit re-spawns. | | `which ` | Print the resolved binary path for one server. | See [LSP — Semantic Diagnostics](/user-guide/features/lsp) for the full guide, supported l...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/cli-commands.md
main
hermes-agent
[ 0.025851920247077942, -0.059676509350538254, -0.04485919326543808, -0.059569790959358215, -0.01945372298359871, -0.09103230386972427, -0.06441713124513626, -0.005236790049821138, -0.0009091572719626129, 0.008125286549329758, 0.034542396664619446, -0.016202477738261223, 0.04694061726331711, ...
0.100614
`features.slash\_commands` for merging into a manually-maintained manifest. | Run `hermes slack manifest --write` again after `hermes update` to pick up any new commands. ## `hermes send` ```bash hermes send --to "message text" hermes send --to --file echo "message" | hermes send --to hermes send --list [platform] ``` ...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/cli-commands.md
main
hermes-agent
[ -0.048727914690971375, -0.0605616457760334, -0.037689145654439926, -0.026216456666588783, -0.027746178209781647, -0.07884049415588379, -0.02740260399878025, 0.025164784863591194, 0.00154591235332191, 0.06401848047971725, 0.02374115400016308, 0.016317933797836304, 0.04295116290450096, 0.003...
0.148182
| Description | |------|-------------| | `--apply` | Rewrite `config.yaml` in-place (default: dry-run, no writes). | | `--no-backup` | Skip the timestamped backup of `config.yaml` when applying. | > Not to be confused with `hermes claw migrate` (one-shot import of OpenClaw configuration into Hermes) — `hermes migrate` ...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/cli-commands.md
main
hermes-agent
[ -0.07674495875835419, 0.018161403015255928, -0.017718913033604622, -0.02574947662651539, -0.00751114496961236, -0.13575927913188934, -0.04627705737948418, -0.03428274765610695, 0.018031908199191093, 0.0018033805536106229, 0.017992189154028893, 0.020313981920480728, 0.08690011501312256, -0....
0.015953
skills. Supports `--clear-skills`, `--add-skill`, and `--remove-skill`. | | `pause` | Pause a job without deleting it. | | `resume` | Resume a paused job and compute its next future run. | | `run` | Trigger a job on the next scheduler tick. | | `remove` | Delete a scheduled job. | | `status` | Check whether the cron sc...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/cli-commands.md
main
hermes-agent
[ -0.04200759902596474, -0.08521020412445068, -0.06430600583553314, 0.016077915206551552, -0.03316641226410866, -0.07551800459623337, 0.01882607862353325, -0.07546118646860123, -0.045423950999975204, -0.01716688461601734, 0.03904905915260315, 0.026302102953195572, 0.006697326432913542, -0.02...
0.122432
`scheduled` so it is not shown as a human blocker. | | `unblock <id>` | Return a blocked or scheduled task to ready (or `todo` if dependencies are still open). | | `archive <id>` | Hide from default list. `gc` will remove scratch workspaces. | | `tail <id>` | Follow a task's event stream. | | `dispatch` | One dispatche...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/cli-commands.md
main
hermes-agent
[ -0.10213399678468704, 0.024840671569108963, -0.09019089490175247, 0.07471240311861038, 0.01254541240632534, -0.057027626782655716, 0.008204408921301365, -0.014999637380242348, -0.07813990116119385, 0.030494701117277145, -0.030070967972278595, -0.08706426620483398, -0.059132494032382965, 0....
0.090019
`slack`, `github\_comment`. | | `--deliver-chat-id` | Target chat/channel ID for cross-platform delivery. | | `--secret` | Custom HMAC secret. Auto-generated if omitted. | | `--deliver-only` | Skip the agent — deliver the rendered `--prompt` as the literal message. Zero LLM cost, sub-second delivery. Requires `--delive...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/cli-commands.md
main
hermes-agent
[ -0.06700456887483597, 0.026704877614974976, -0.0066620237194001675, -0.010844239965081215, 0.000047834368160692975, -0.08162571489810944, 0.0012059310683980584, -0.029841270297765732, -0.0021158833988010883, 0.05710336193442345, 0.029354650527238846, -0.05457427725195885, 0.07336676120758057...
0.081611
debug report, print URL hermes debug share --lines 500 # Include more log lines hermes debug share --expire 30 # Keep paste for 30 days hermes debug share --local # Print report to terminal (no upload) ``` ## `hermes backup` ```bash hermes backup [options] ``` Create a zip archive of your Hermes configuration, skills, ...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/cli-commands.md
main
hermes-agent
[ -0.0481501966714859, 0.06682168692350388, -0.07449367642402649, 0.022545654326677322, 0.031362321227788925, -0.045151762664318085, -0.06050436943769455, 0.012903903611004353, -0.04308129847049713, 0.06966900080442429, 0.057491399347782135, -0.015875453129410744, 0.07393123209476471, -0.060...
0.024021
the archive overwrite existing files in your Hermes home; `--force` only skips the confirmation prompt that fires when the target already has a Hermes installation. | Option | Description | |--------|-------------| | `-f`, `--force` | Skip the existing-installation confirmation prompt. | :::warning Stop the gateway bef...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/cli-commands.md
main
hermes-agent
[ -0.008740820921957493, 0.022432826459407806, 0.0312829352915287, -0.04923538863658905, 0.07094129174947739, -0.1030174046754837, -0.009320292621850967, -0.016110964119434357, -0.00442232470959425, 0.06560593098402023, 0.008384054526686668, 0.017587266862392426, 0.09112457931041718, -0.0488...
-0.036949
downstream adapter or proxy has a tighter prompt budget than the model's context window, or when you want to see which block (skills index, memory, profile) dominates. It builds the same system prompt the agent would, then breaks it down: - \*\*System prompt total\*\* — full assembled prompt (identity, guidance, skills...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/cli-commands.md
main
hermes-agent
[ -0.016975311562418938, -0.01105109229683876, -0.07954949885606766, -0.03829675167798996, 0.005491360556334257, -0.07183431088924408, 0.028597965836524963, 0.05394771322607994, -0.0019047459354624152, 0.009417802095413208, -0.024302251636981964, -0.004212770611047745, 0.05347931385040283, -...
0.135137
With `--sync`, re-seed immediately. | | `publish` | Publish a skill to a registry. | | `snapshot` | Export/import skill configurations. | | `tap` | Manage custom skill sources. | | `config` | Interactive enable/disable configuration for skills by platform. | Common examples: ```bash hermes skills browse hermes skills b...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/cli-commands.md
main
hermes-agent
[ -0.07304607331752777, -0.028576908633112907, -0.07113964110612869, 0.04323543608188629, 0.006989909335970879, -0.04288311302661896, -0.06811483204364777, -0.030863139778375626, -0.09860620647668839, -0.016718653962016106, 0.009648234583437443, 0.014114675112068653, 0.022990699857473373, 0....
0.045972
--list` | List available snapshots | | `rollback --id <ts>` | Restore a specific snapshot by id | | `rollback -y` | Skip the confirmation prompt | | `pause` | Pause the curator until resumed | | `resume` | Resume a paused curator | | `pin <skill>` | Pin a skill so the curator never auto-transitions it | | `unpin <skill...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/cli-commands.md
main
hermes-agent
[ -0.07186374068260193, -0.003201742423698306, -0.038680095225572586, 0.04407438635826111, 0.029767867177724838, -0.053945302963256836, -0.028780732303857803, -0.08163943141698837, -0.08744249492883682, 0.004830137826502323, 0.0699542686343193, 0.06927517801523209, 0.031108662486076355, -0.0...
0.046925
| \*(none)\* or `picker` | Interactive catalog picker — browse Nous-approved MCPs and install/enable/disable. | | `catalog` | List Nous-approved MCPs (plain text, scriptable). | | `install <name>` | Install a catalog entry (e.g. `hermes mcp install n8n`). | | `serve [-v\|--verbose]` | Run Hermes as an MCP server — expo...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/cli-commands.md
main
hermes-agent
[ -0.0724950060248375, -0.005674824584275484, -0.026573507115244865, -0.015299290418624878, -0.01731923222541809, -0.057682424783706665, -0.011503014713525772, -0.0057099307887256145, -0.030398501083254814, 0.016210490837693214, 0.05410999059677124, -0.04399639740586281, 0.04857153818011284, ...
0.119682
right now without waiting for the next Hermes update. ## `hermes sessions` ```bash hermes sessions <subcommand> ``` Subcommands: | Subcommand | Description | |------------|-------------| | `list` | List recent sessions. | | `browse` | Interactive session picker with search and resume. | | `export <output> [--session-id...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/cli-commands.md
main
hermes-agent
[ -0.0759759321808815, 0.06425657123327255, -0.026387309655547142, 0.02455737814307213, -0.013179086148738861, -0.03178618475794792, 0.02284865640103817, -0.003630653955042362, 0.005878367926925421, 0.04436606913805008, -0.014749547466635704, -0.01407066360116005, 0.006085620727390051, -0.00...
0.059565
hermes dashboard [options] ``` Launch the web dashboard — a browser-based UI for managing configuration, API keys, and monitoring sessions. Requires `pip install hermes-agent[web]` (FastAPI + Uvicorn). The embedded browser Chat tab requires `--tui` plus the `pty` extra. See [Web Dashboard](/user-guide/features/web-dash...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/cli-commands.md
main
hermes-agent
[ -0.03903389722108841, 0.002087607281282544, -0.05577876418828964, -0.03355453163385391, -0.013258296996355057, -0.11153492331504822, -0.02358493208885193, 0.010598236694931984, -0.020710209384560585, 0.0083113182336092, 0.02277875691652298, -0.04777947813272476, 0.023011066019535065, 0.027...
0.079168
install. \*\*pip installs:\*\* `hermes update` detects pip-based installations automatically — it queries PyPI for the latest release and runs `pip install --upgrade hermes-agent` instead of `git pull`. PyPI releases track tagged versions (major/minor releases), not every commit on `main`. Use `--check` to see if a new...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/cli-commands.md
main
hermes-agent
[ 0.0055350386537611485, -0.02840461954474449, 0.021463574841618538, -0.030494272708892822, 0.015426475554704666, -0.0770341083407402, -0.05454819276928902, 0.010160564444959164, 0.026470959186553955, 0.036957211792469025, 0.050332702696323395, 0.02083563432097435, -0.03893280029296875, -0.0...
0.025314
# Optional Skills Catalog Optional skills ship with hermes-agent under `optional-skills/` but are \*\*not active by default\*\*. Install them explicitly: ```bash hermes skills install official// ``` For example: ```bash hermes skills install official/blockchain/solana hermes skills install official/mlops/flash-attentio...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/optional-skills-catalog.md
main
hermes-agent
[ -0.013778888620436192, -0.021213799715042114, -0.032045986503362656, -0.005342135671526194, 0.029341816902160645, -0.047471560537815094, 0.026027675718069077, -0.055231135338544846, -0.04164735600352287, 0.026765339076519012, 0.043440159410238266, -0.03618127480149269, 0.010048964992165565, ...
0.13434
and GitHub with watermark dedup. | ## dogfood | Skill | Description | |-------|-------------| | [\*\*adversarial-ux-test\*\*](/docs/user-guide/skills/optional/dogfood/dogfood-adversarial-ux-test) | Roleplay the most difficult, tech-resistant user for your product. Browse the app as that persona, find every UX pain poin...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/optional-skills-catalog.md
main
hermes-agent
[ -0.07030339539051056, -0.003914529457688332, 0.012579094618558884, 0.02229156531393528, 0.044234178960323334, -0.0542672798037529, 0.07650256901979446, 0.0036374793853610754, -0.057855408638715744, -0.03317425027489662, 0.03156493976712227, -0.05542093142867088, 0.08816990256309509, 0.0570...
0.12895
Skill | Description | |-------|-------------| | [\*\*huggingface-accelerate\*\*](/docs/user-guide/skills/optional/mlops/mlops-accelerate) | Simplest distributed training API. 4 lines to add distributed support to any PyTorch script. Unified API for DeepSpeed/FSDP/Megatron/DDP. Automatic device placement, mixed precisio...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/optional-skills-catalog.md
main
hermes-agent
[ -0.10645297914743423, -0.07402662932872772, -0.020896952599287033, -0.027187813073396683, 0.012712751515209675, -0.0656687319278717, -0.06502828001976013, 0.045203208923339844, -0.11678829789161682, -0.0573173388838768, -0.010022898204624653, -0.03944983333349228, -0.04500333219766617, -0....
0.185326
laptop to supercomputer with same code. Use when you want clean training loops w... | | [\*\*qdrant-vector-search\*\*](/docs/user-guide/skills/optional/mlops/mlops-qdrant) | High-performance vector similarity search engine for RAG and semantic search. Use when building production RAG systems requiring fast nearest neig...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/optional-skills-catalog.md
main
hermes-agent
[ -0.1471877545118332, -0.017952226102352142, -0.04887184128165245, -0.00131335505284369, 0.008068101480603218, -0.011087949387729168, -0.03020319528877735, 0.038248904049396515, -0.08624443411827087, -0.05977785587310791, 0.026911741122603416, 0.019142575562000275, -0.03290538862347603, -0....
0.141491
DNS records, domain availability checks, and bulk multi-domain analysis. No API keys required. | | [\*\*drug-discovery\*\*](/docs/user-guide/skills/optional/research/research-drug-discovery) | Pharmaceutical research assistant for drug discovery workflows. Search bioactive compounds on ChEMBL, calculate drug-likeness (...
https://github.com/NousResearch/hermes-agent/blob/main/website/docs/reference/optional-skills-catalog.md
main
hermes-agent
[ -0.049017395824193954, -0.06086280196905136, -0.09915435314178467, -0.04787123575806618, 0.061269477009773254, -0.08228031545877457, -0.00707947788760066, 0.07690536230802536, -0.019553108140826225, -0.0600685179233551, -0.002519254805520177, 0.012547832913696766, 0.0270657017827034, 0.017...
0.01868