Llm

Mnemosyne for Hermes Agent: Local Memory Quickstart

Mnemosyne for Hermes Agent: Local Memory Quickstart

Local Hermes memory with controlled writes.

Mnemosyne is a local-first memory provider for Hermes Agent, storing working memory, structured facts, temporal data, and episodic history in local SQLite — no hosted service, no mandatory network calls, and unusually granular write control.

Self-Reinforcing Memory Loops in AI Agents: Causes and Fixes

Self-Reinforcing Memory Loops in AI Agents: Causes and Fixes

When remembered conclusions become new evidence.

Persistent memory turns an agent from a re-explained tool into one that carries context forward — but it opens a failure mode stateless chat avoids: an interpretation can become memory, retrieved as fact, and justify a stronger version of itself.

How to Migrate from OpenClaw to Hermes Agent Safely

How to Migrate from OpenClaw to Hermes Agent Safely

A safe cutover beyond the one-line import

Migrating an AI assistant is not the same as copying an application config. The hard part is preserving identity, memory, tool behavior, scheduled work, and messaging access without two gateways acting as the same bot.

KV Cache on 16 GB GPUs: Making Long Context Actually Fit

KV Cache on 16 GB GPUs: Making Long Context Actually Fit

Why 128K context dies on 16 GB

A model can advertise a 128K context window and still fail at 40K tokens on a 16 GB GPU. The architecture ceiling never promised that weights, KV cache, compute buffers, and the desktop compositor would fit on your card at the same time.

Data Gravity: The Real Cost of API-First AI

Data Gravity: The Real Cost of API-First AI

Why your AI stack gets stickier every month.

Every API call feels like a simple transaction - until enough of them accumulate that your fine-tuning data, evaluation harnesses, and tool schemas are all shaped around one vendor, and switching stops being a routing change.

Ollama to vLLM: When to Migrate Your Local LLM Server

Ollama to vLLM: When to Migrate Your Local LLM Server

When to move from Ollama to vLLM

Ollama is one of the easiest ways to run a local language model, but convenience can conceal the moment when a local experiment becomes a shared inference service that needs better scheduling and observability.

Keeping Specs, Tests, And Code In Sync In AI Development

Keeping Specs, Tests, And Code In Sync In AI Development

Stop AI agents drifting from specs, tests, and code.

AI coding agents ship features fast, but specs, tests, and code quietly drift apart. This guide covers a traceability model, spec-to-test and spec-to-code mapping, and the CI checks that catch drift before a merge.