Skip to main content

Omnyx personality adaptation for Hermes desktop AI assistant

Project description

Omnyx Hermes Plugin

Personality-driven adaptation for Hermes — the self-improving AI agent from Nous Research.

✅ NO FORK REQUIRED — Uses Hermes' native MCP (Model Context Protocol) support

Installation

pip install omnyx-hermes

Quick Start (MCP Integration - Recommended)

# 1. Setup with your Omnyx dashboard API key
omnyx-hermes setup --api-key omx_your_key_here

# 2. Configure Hermes MCP (adds to ~/.hermes/config.yaml)
omnyx-hermes setup-hermes

# 3. Restart Hermes — Omnyx tools auto-discover
hermes

# 4. In Hermes chat, try: @omnyx get_profile

Alternative: Bridge Mode (Legacy)

For proxy/WebSocket integration (requires Hermes configuration):

omnyx-hermes setup --api-key omx_your_key_here
omnyx-hermes run  # Start bridge service

How It Works

Hermes is a desktop AI assistant that integrates with your OS (file system, applications, browser). Unlike Codex (terminal) or Devin (autonomous), Hermes is:

  • Always available — hotkey-activated from anywhere
  • Context-aware — sees your screen, knows your open files
  • Conversational — ongoing chat history, not one-off commands

Omnyx Hermes adapts the assistant's personality and interaction style:

Trait Adaptation
High Conscientiousness Structured responses, step-by-step plans, checklist format
Low Conscientiousness Free-form, brainstorming mode, "here are some ideas"
High Openness Creative suggestions, "what if we tried...", novel approaches
Low Openness Practical, proven solutions, conservative recommendations
High Extraversion Warm, enthusiastic, proactive suggestions, explains reasoning
Low Extraversion Direct, minimal pleasantries, gets to the point
High Agreeableness Collaborative tone, asks clarifying questions, checks understanding
Low Agreeableness Challenger mode, points out flaws, debate-style
High Neuroticism Cautious warnings, multiple fallback options, risk highlighting
Low Neuroticism Confident recommendations, assumes success, optimistic framing

Commands

omnyx-hermes setup              # Configure API key and preferences
omnyx-hermes start             # Start background bridge service
omnyx-hermes stop              # Stop the bridge service
omnyx-hermes status            # Show connection and profile
omnyx-hermes run               # Run bridge in foreground (debug mode)
omnyx-hermes config            # View/change settings
omnyx-hermes test "prompt"     # Test adaptation on a sample prompt
omnyx-hermes suggest           # Review pending personalization suggestions
omnyx-hermes forget            # Clear all local data

Architecture

MCP Mode (Recommended — No Fork)

┌─────────────┐ MCP   ┌──────────────────┐     ┌─────────────────┐
│   Hermes    │──────▶│  omnyx-hermes    │────▶│  Omnyx Backend  │
│   Agent     │◄──────│   MCP Server     │◄────│  (/api/agentic) │
│             │stdio   │  (stdio/HTTP)    │     │                 │
└─────────────┘       └──────────────────┘     └─────────────────┘

Hermes calls tools:
• omnyx_get_profile → Returns personality profile
• omnyx_adapt_prompt → Returns adapted prompt with context
• omnyx_get_context → Returns system prompt addition

The MCP server:

  1. Runs as stdio server (managed by Hermes)
  2. Exposes tools Hermes can call
  3. Gets adaptation from Omnyx backend
  4. Returns formatted results to Hermes

Bridge Mode (Alternative)

WebSocket/HTTP proxy for scenarios where MCP isn't available:

omnyx-hermes run  # Starts WebSocket on localhost:8765

MCP Tools

Once connected, Hermes can call these tools:

Tool Purpose
omnyx_get_profile Get personality profile and confidence
omnyx_adapt_prompt Get personality-adapted prompt
omnyx_get_context Get system prompt context
omnyx_get_suggestions Check for pending suggestions
omnyx_accept_suggestion Accept a suggestion

Configuration

Hermes MCP config is auto-installed by setup-hermes, or manually:

# ~/.hermes/config.yaml
mcp_servers:
  omnyx:
    command: "omnyx-hermes"
    args: ["mcp"]
    env:
      OMNYX_API_KEY: "omx_your_key_here"
    enabled: true

Privacy Modes

  • raw_prompts (default): Full prompt context for best adaptation
  • summaries_only: Send conversation summaries, not full history
  • paused: No data transmission, Hermes runs normally

Configure: omnyx-hermes config --privacy-mode summaries_only

Context Awareness

Hermes can share context with Omnyx:

  • Active application (Chrome, VS Code, etc.)
  • Selected text or file path
  • Time of day (morning focus vs evening wind-down)

This enables situationally-aware adaptation:

  • High C user + morning + coding task → "Let's plan your approach"
  • Same user + evening + general chat → More relaxed, exploratory

Suggestion System

After 20-30 interactions with >70% confidence, Omnyx may suggest:

"You often ask for code explanations after receiving solutions. Would you like me to proactively include brief explanations with all code responses?"

Suggestions appear in the dashboard and can be accepted/dismissed. Accepted suggestions become part of the adaptation profile.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

omnyx_hermes-0.1.0.tar.gz (20.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

omnyx_hermes-0.1.0-py3-none-any.whl (18.9 kB view details)

Uploaded Python 3

File details

Details for the file omnyx_hermes-0.1.0.tar.gz.

File metadata

  • Download URL: omnyx_hermes-0.1.0.tar.gz
  • Upload date:
  • Size: 20.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for omnyx_hermes-0.1.0.tar.gz
Algorithm Hash digest
SHA256 50b8003fd3b2f93ded3df4c2b42136fb3c1f3d41e678d7f6bc1167b585b41ac5
MD5 f7c026d6699071523a21fd2de30604b1
BLAKE2b-256 080f643d623fd3960392caa8d6f58f837c95718ba763e1e6f33ca7f3300f36ee

See more details on using hashes here.

File details

Details for the file omnyx_hermes-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: omnyx_hermes-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 18.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for omnyx_hermes-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 25eb438283d564dd22708d8ab642fde40d256012e859c1858895242562d64d5c
MD5 bb4e19dafb489d491aa11a9414acc0da
BLAKE2b-256 6b777ca86c3e8ab60a23a69dd0186ab06e3e792bcaddd6533d310cb54bdbf60b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page