System Reference

Complete condensed reference: Hermes Agent config, local projects, skills, tools, infrastructure, deployment โ€” everything on one page.

referencecheat-sheetarchitecturedeployment

Hermes Agent

Config (~/.hermes/config.yaml)

SettingValue
Default modeldeepseek/deepseek-v4-flash:free
Fallback modelopenrouter/owl-alpha
Fallback chainopenrouter/owl-alpha โ†’ openrouter/free
Vision/medianvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free
ProviderOpenRouter
Goal turns77
Agent max turns60
Compressionenabled, threshold 0.33
Context enginecompressor
Gateway timeout1800s

CLI Essentials

hermes config set <key> <val>  # Set config value
hermes config show             # Full config
hermes skills list             # List skills
hermes skills reload           # Reload after edits
hermes sessions list           # Active sessions
hermes --resume <id>           # Resume session
hermes gateway restart         # Restart gateway
hermes logs --follow           # Live log tail

Key Paths

~/.hermes/config.yaml          # Main config
~/.hermes/.env                 # API keys
~/.hermes/skills/              # Installed skills
~/.hermes/cron/                # Cron job output
~/.hermes/logs/                # agent.log, errors.log, gateway.log

Local Projects

Active / Primary

ProjectPathStackPurpose
LLM-Wiki~/hugo-llm-wiki/Hugo + vanilla JSSelf-discovering docs site
Wiki~/wiki/MarkdownPersonal knowledge base (schema, concepts, entities)
macos-web~/macos-web/Svelte 5 + VitemacOS dashboard app
Lyrix~/lyrix-bench/Svelte 5 + ViteLyrix benchmark app
LRX~/lrx/Svelte + TailwindWeb app
Daisy~/daisyskull/Svelte + ViteDaisyUI project
Skeleton~/skeleton/Monorepo (pnpm)Skeleton UI framework
dev/~/dev/VariousDev experiments (eleven3, flow2batch, flow2draw, generative-ai-docs, terracraft, todprod, udytor, vibesdk, vinki, z_uditor)

Dashboards & CMS

ProjectPathStackPurpose
Svelte Flexiboards~/svelte-flexiboards-dashboard/Svelte 5FlexiBoard dashboard prototype
hugo-sveltia-lab~/hugo-sveltia-lab/Hugo + SveltiaHugo + Sveltia CMS experiment
sveltia-cms~/sveltia-cms/Svelte monorepoSveltia CMS core
svelteflow~/svelteflow/Svelte + XYFlowFlow editor
hugging_chat-ui~/hugging_chat-ui/Svelte + TailwindHuggingFace chat UI
deep-chat~/deep-chat/Web componentChat UI library
merms~/merms/-Mermaid ecosystem tools
Dicebear~/dicebear/-Avatar library dev

Nginx-Served Domains

DomainPathPurpose
llm-wiki.0rk.de~/hugo-llm-wiki/public/LLM Wiki site
beetle (local)-Beetle project
mixbox-review.0rk.de-Mixbox review
n8n.0rk.de-n8n automation
opendaw-studio.0rk.de-OpenDAW studio
opendaw-yjs.0rk.de-OpenDAW YJS sync
open-webui-Open WebUI

Archived / Reference

ProjectPathNotes
daistory~/daistory/DaisyUI monorepo (storybook, mcp, themes)
scrapez~/scrapez/Python scraping (scrapy, nakama, volkslieder)
GURU~/GURU/Reference material
ASSETS~/ASSETS/Static assets collection
.antigravity-server~/.antigravity-server/Server project
mj-tools~/mj-tools/sref-panel tool
docs~/docs/General docs

Skills

Active Skills

SkillPathPurpose
hermes-essentials~/.hermes/skills/hermes-essentials/Core config, debugging, planning, TDD
superpower-pipeline~/.hermes/skills/superpower-pipeline/Research + web search pipeline
superpower-research~/.hermes/skills/superpower-research/Deep research automation
svelte-flexiboards-dashboard~/.hermes/skills/frontend/svelte-flexiboards-dashboard/Svelte 5 dashboard patterns

Pruned / Prunable

SkillReason
hugo-llm-wikiDocs merged into this page
svelte-dashboard-integrationReplaced by vanilla dashboard
discord-interview-dashboardNot actively used

Topic Knowledge Base

Managed in ~/hugo-llm-wiki/content/topics/. Fed by JSON API at /topics/index.json.

TopicFileStatus
Hugo documentation automationhugo-documentation-automation-patterns.mdStub โ†’ needs content
LLM-powered knowledge basesllm-powered-knowledge-bases.mdStub โ†’ needs content
Self-discovering doc systemsself-discovering-documentation-systems.mdStub โ†’ needs content
AI content evolutionai-content-evolution-strategies.mdStub โ†’ needs content

Infrastructure

Hugo Site

hugo-llm-wiki/
โ”œโ”€โ”€ config.toml              # Site config, baseURL, outputs
โ”œโ”€โ”€ content/
โ”‚   โ”œโ”€โ”€ _index.md            # Homepage
โ”‚   โ”œโ”€โ”€ llm-wiki-reference.md  # This page
โ”‚   โ”œโ”€โ”€ topics/              # AI/Hugo research topics
โ”‚   โ”œโ”€โ”€ research/            # Research automation
โ”‚   โ””โ”€โ”€ evolving/            # Continuously updated content
โ”œโ”€โ”€ themes/lotusdocs/
โ”‚   โ”œโ”€โ”€ layouts/
โ”‚   โ”‚   โ”œโ”€โ”€ _default/
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ baseof.html      # HTML shell + sidebar + nav
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ single.html      # Article layout
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ list.html        # Section index
โ”‚   โ”‚   โ”‚   โ””โ”€โ”€ list.json.json   # JSON feed per section
โ”‚   โ”‚   โ”œโ”€โ”€ index.html           # Homepage layout
โ”‚   โ”‚   โ””โ”€โ”€ topic/list.json.json # Topic JSON
โ”‚   โ””โ”€โ”€ static/css/main.css      # Single-file dark theme
โ”œโ”€โ”€ scripts/
โ”‚   โ”œโ”€โ”€ deploy.sh            # hugo --minify โ†’ nginx reload
โ”‚   โ””โ”€โ”€ research-automation.py # DuckDuckGo โ†’ Hugo markdown
โ””โ”€โ”€ public/                  # Built output โ†’ Nginx

Deploy Pipeline

# Manual
cd ~/hugo-llm-wiki && hugo --minify && sudo nginx -t && sudo systemctl reload nginx

# Script
bash ~/hugo-llm-wiki/scripts/deploy.sh

Nginx

server {
    listen 443 ssl;
    server_name llm-wiki.0rk.de;
    root /home/dv/hugo-llm-wiki/public;
    index index.html;
    ssl_certificate /etc/letsencrypt/live/llm-wiki.0rk.de/fullchain.pem;
    ssl_certificate_key /etc/letsencrypt/live/llm-wiki.0rk.de/privkey.pem;
    location / {
        try_files $uri $uri/ =404;
    }
}

Quick Ref

TaskCommand
Hermes model switchhermes config set model.default "prov/model:free"
New Hugo contenthugo new content/topics/my-topic.md
Hugo dev serverhugo server -D
Hugo buildhugo --minify
Deploybash ~/hugo-llm-wiki/scripts/deploy.sh
Check JSON feedcurl -s llm-wiki.0rk.de/topics/index.json | python3 -m json.tool
Proxy researchpython3 ~/hugo-llm-wiki/scripts/research-automation.py
View Hermes logstail -f ~/.hermes/logs/agent.log
Nginx test+reloadsudo nginx -t && sudo systemctl reload nginx