Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.superserve.ai/llms.txt

Use this file to discover all available pages before exploring further.

Hermes is NousResearch’s open-source personal AI agent. Run it in a Superserve sandbox so its tools and shell commands stay isolated from your machine.

Via the console

  1. Go to console.superserve.ai and click Create sandbox.
  2. Pick the superserve/node-22 template.
  3. Open Advanced Options and add your model provider key (e.g. ANTHROPIC_API_KEY) under Environment Variables.
  4. Create the sandbox, open its Terminal, and run:
    curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash
    source ~/.bashrc
    hermes
    

Via the SDK

npm install @superserve/sdk
export SUPERSERVE_API_KEY=ss_live_...
import { Sandbox } from "@superserve/sdk"

const sandbox = await Sandbox.create({
  name: "hermes",
  fromTemplate: "superserve/node-22",
  envVars: { ANTHROPIC_API_KEY: "sk-ant-..." },
  timeoutMs: 100000,
})

await sandbox.commands.run(
  "curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash"
)
Open the sandbox in the console, launch the terminal, and run hermes.

Persist sessions

await sandbox.pause()
await sandbox.resume()