<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>OpenClaw on Derek's Guides</title><link>https://guides.derekleeds.cloud/docs/openclaw/</link><description>Recent content in OpenClaw on Derek's Guides</description><generator>Hugo</generator><language>en</language><atom:link href="https://guides.derekleeds.cloud/docs/openclaw/index.xml" rel="self" type="application/rss+xml"/><item><title>Getting Started with OpenClaw</title><link>https://guides.derekleeds.cloud/docs/openclaw/getting-started-openclaw/</link><pubDate>Sun, 01 Mar 2026 00:00:00 +0000</pubDate><guid>https://guides.derekleeds.cloud/docs/openclaw/getting-started-openclaw/</guid><description>&lt;p&gt;OpenClaw is an open-source agent orchestration platform that helps you build AI agents with persistent memory, skill systems, and multi-agent coordination.&lt;/p&gt;
&lt;h2 id="core-concepts"&gt;Core Concepts&lt;/h2&gt;
&lt;h3 id="memory-architecture"&gt;Memory Architecture&lt;/h3&gt;
&lt;p&gt;OpenClaw uses a three-tier memory model:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Episodic&lt;/strong&gt; - Daily logs (&lt;code&gt;memory/episodic/YYYY-MM-DD.md&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Semantic&lt;/strong&gt; - Knowledge base (&lt;code&gt;memory/semantic/topic.md&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Procedural&lt;/strong&gt; - Workflows (&lt;code&gt;memory/procedural/process.md&lt;/code&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="skills-system"&gt;Skills System&lt;/h3&gt;
&lt;p&gt;Skills are modular capabilities stored in &lt;code&gt;~/.openclaw/skills/&lt;/code&gt;. Each skill has:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;SKILL.md&lt;/code&gt; - Documentation&lt;/li&gt;
&lt;li&gt;Scripts or tools&lt;/li&gt;
&lt;li&gt;Configuration&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="sub-agents"&gt;Sub-agents&lt;/h3&gt;
&lt;p&gt;OpenClaw can spawn specialized sub-agents for tasks:&lt;/p&gt;</description></item><item><title>Lossless Claw: Never Lose Context Again</title><link>https://guides.derekleeds.cloud/docs/openclaw/lossless-claw/</link><pubDate>Sun, 15 Mar 2026 00:00:00 +0000</pubDate><guid>https://guides.derekleeds.cloud/docs/openclaw/lossless-claw/</guid><description>&lt;p&gt;Every LLM has a context window — a maximum number of tokens it can process. When a conversation exceeds this limit, most agents simply truncate older messages. &lt;strong&gt;Lossless Claw&lt;/strong&gt; replaces truncation with a DAG (Directed Acyclic Graph) summarization system that preserves every message while keeping active context within model token limits.&lt;/p&gt;
&lt;h2 id="what-youll-learn"&gt;What You&amp;rsquo;ll Learn&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Why context loss happens and why it matters&lt;/li&gt;
&lt;li&gt;How LCM (Lossless Context Management) preserves every message&lt;/li&gt;
&lt;li&gt;Step-by-step installation and configuration&lt;/li&gt;
&lt;li&gt;Best practices for long-lived agent sessions&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="the-problem-context-loss"&gt;The Problem: Context Loss&lt;/h2&gt;
&lt;p&gt;When context exceeds the token limit:&lt;/p&gt;</description></item><item><title>OpenClaw + Hermes: Multi-Agent Infrastructure</title><link>https://guides.derekleeds.cloud/docs/openclaw/openclaw-hermes-integration/</link><pubDate>Tue, 14 Apr 2026 00:00:00 +0000</pubDate><guid>https://guides.derekleeds.cloud/docs/openclaw/openclaw-hermes-integration/</guid><description>&lt;p&gt;Connect OpenClaw (Clawdia) to Hermes Agent for delegating infrastructure tasks via HTTP API. This lets you manage Docker, Kubernetes, and GitOps operations through conversational commands.&lt;/p&gt;
&lt;h2 id="what-youll-learn"&gt;What You&amp;rsquo;ll Learn&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;When to use multi-agent architecture for infrastructure tasks&lt;/li&gt;
&lt;li&gt;How to connect OpenClaw to Hermes via HTTP API&lt;/li&gt;
&lt;li&gt;Configuring the Hermes integration skill&lt;/li&gt;
&lt;li&gt;Querying Docker, deploying stacks, and managing GitOps&lt;/li&gt;
&lt;li&gt;Security considerations for agent-to-agent communication&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="why-multi-agent"&gt;Why Multi-Agent?&lt;/h2&gt;
&lt;p&gt;Running everything in one agent creates a security problem. Infrastructure tasks need terminal and Docker access—capabilities you don&amp;rsquo;t want tied to your general-purpose assistant.&lt;/p&gt;</description></item><item><title>Building Modular Content Moderation with Guardrails</title><link>https://guides.derekleeds.cloud/docs/openclaw/guardrails-skill/</link><pubDate>Wed, 18 Mar 2026 00:00:00 +0000</pubDate><guid>https://guides.derekleeds.cloud/docs/openclaw/guardrails-skill/</guid><description>&lt;p&gt;When building AI agents, content moderation is often an afterthought — if it&amp;rsquo;s considered at all. This guide walks through building a &lt;strong&gt;modular guardrails skill&lt;/strong&gt; for OpenClaw that can be optionally imported into any skill that needs content filtering.&lt;/p&gt;
&lt;h2 id="why-modular-over-middleware"&gt;Why Modular Over Middleware?&lt;/h2&gt;
&lt;p&gt;Traditional approaches often bake moderation into the core agent loop. This has drawbacks:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;All-or-nothing&lt;/strong&gt; — You either moderate everything or nothing&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Hard to test&lt;/strong&gt; — Global changes affect everything&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Inflexible&lt;/strong&gt; — Different skills may need different rules&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;A modular approach lets you:&lt;/p&gt;</description></item></channel></rss>