<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Security on Derek's Guides</title><link>https://guides.derekleeds.cloud/tags/security/</link><description>Recent content in Security on Derek's Guides</description><generator>Hugo</generator><language>en</language><lastBuildDate>Wed, 18 Mar 2026 18:28:22 -0500</lastBuildDate><atom:link href="https://guides.derekleeds.cloud/tags/security/index.xml" rel="self" type="application/rss+xml"/><item><title>OpenClaw Secrets Management with 1Password</title><link>https://guides.derekleeds.cloud/docs/security/1password-secrets-management/</link><pubDate>Sat, 14 Mar 2026 00:00:00 +0000</pubDate><guid>https://guides.derekleeds.cloud/docs/security/1password-secrets-management/</guid><description>&lt;p&gt;This guide walks through setting up 1Password as a centralized secret provider for OpenClaw. By the end, every API key, token, and credential in your OpenClaw config will resolve at runtime through 1Password — nothing sensitive stored in plaintext.&lt;/p&gt;
&lt;h2 id="prerequisites"&gt;Prerequisites&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;OpenClaw installed and running&lt;/li&gt;
&lt;li&gt;1Password account (personal or business)&lt;/li&gt;
&lt;li&gt;1Password CLI (&lt;code&gt;op&lt;/code&gt;) installed&lt;/li&gt;
&lt;li&gt;Basic familiarity with OpenClaw&amp;rsquo;s &lt;code&gt;openclaw.json&lt;/code&gt; config&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="part-1-install-and-configure-1password-cli"&gt;Part 1: Install and Configure 1Password CLI&lt;/h2&gt;
&lt;h3 id="install-the-cli"&gt;Install the CLI&lt;/h3&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="c1"&gt;# Ubuntu/Debian&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;curl -sS https://downloads.1password.com/linux/keys/1password.asc &lt;span class="p"&gt;|&lt;/span&gt; &lt;span class="se"&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; sudo gpg --dearmor --output /usr/share/keyrings/1password-archive-keyring.gpg
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="nb"&gt;echo&lt;/span&gt; &lt;span class="s2"&gt;&amp;#34;deb [arch=&lt;/span&gt;&lt;span class="k"&gt;$(&lt;/span&gt;dpkg --print-architecture&lt;span class="k"&gt;)&lt;/span&gt;&lt;span class="s2"&gt; signed-by=/usr/share/keyrings/1password-archive-keyring.gpg] https://downloads.1password.com/linux/debian/&lt;/span&gt;&lt;span class="k"&gt;$(&lt;/span&gt;dpkg --print-architecture&lt;span class="k"&gt;)&lt;/span&gt;&lt;span class="s2"&gt; stable main&amp;#34;&lt;/span&gt; &lt;span class="p"&gt;|&lt;/span&gt; &lt;span class="se"&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; sudo tee /etc/apt/sources.list.d/1password.list
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;sudo apt update &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; sudo apt install 1password-cli
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="c1"&gt;# Verify&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;op --version
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id="create-a-service-account"&gt;Create a Service Account&lt;/h3&gt;
&lt;p&gt;For non-interactive (agent) access, you need a service account — not a personal sign-in.&lt;/p&gt;</description></item><item><title>SEL × Cynefin: Security and Autonomy for AI Agents</title><link>https://guides.derekleeds.cloud/docs/security/sel-cynefin-framework/</link><pubDate>Fri, 13 Mar 2026 00:00:00 +0000</pubDate><guid>https://guides.derekleeds.cloud/docs/security/sel-cynefin-framework/</guid><description>&lt;p&gt;AI agents need to know two things before acting:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;What tools can I use?&lt;/strong&gt; (Security Execution Level)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;How autonomous can I be in this domain?&lt;/strong&gt; (Cynefin classification)&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;This guide shows you how to implement both, with OpenClaw-specific examples and prompts.&lt;/p&gt;
&lt;h2 id="prerequisites"&gt;Prerequisites&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;OpenClaw installed and configured&lt;/li&gt;
&lt;li&gt;Basic understanding of AI agents&lt;/li&gt;
&lt;li&gt;Familiarity with &lt;a href="https://en.wikipedia.org/wiki/Cynefin_framework"&gt;Cynefin framework&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="background"&gt;Background&lt;/h2&gt;
&lt;h3 id="the-problem"&gt;The Problem&lt;/h3&gt;
&lt;p&gt;When you have 150+ agents (like we do after installing Agency), you need answers to:&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>