clawmoat 0.7.0 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CONTRIBUTING.md +4 -2
- package/README.md +64 -2
- package/SECURITY.md +58 -10
- package/clawmoat-0.8.0.tgz +0 -0
- package/docs/blog/386-malicious-skills.html +255 -0
- package/docs/blog/40000-exposed-openclaw-instances.html +194 -0
- package/docs/blog/agent-trust-protocol.html +197 -0
- package/docs/blog/clawmoat-vs-llamafirewall-nemo-guardrails.html +223 -0
- package/docs/blog/ibm-experts-agent-runtime-protection.html +238 -0
- package/docs/blog/index.html +144 -0
- package/docs/blog/mcp-30-cves-security-crisis.html +279 -0
- package/docs/blog/microsoft-openclaw-workstation-security.html +234 -0
- package/docs/blog/nist-ai-agent-standards-clawmoat.html +369 -0
- package/docs/blog/oasis-websocket-hijack.html +205 -0
- package/docs/blog/ollama-openclaw-security.html +154 -0
- package/docs/blog/openclaw-enterprise-readiness-claw10.html +198 -0
- package/docs/blog/openclaw-security-reckoning-2026.html +361 -0
- package/docs/business/index.html +530 -0
- package/docs/business/install.html +247 -0
- package/docs/checklist.html +168 -0
- package/docs/finance/index.html +217 -0
- package/docs/hall-of-fame.html +168 -0
- package/docs/index.html +213 -49
- package/docs/install.sh +557 -0
- package/docs/privacy-policy/index.html +122 -0
- package/docs/scan/index.html +214 -0
- package/docs/sitemap.xml +132 -2
- package/docs/support/index.html +124 -0
- package/docs/terms-of-service/index.html +122 -0
- package/examples/basic-usage.js +38 -0
- package/package.json +1 -1
- package/server/index.js +87 -8
- package/server/index.js.patch +1 -0
- package/src/finance/index.js +585 -0
- package/src/finance/mcp-firewall.js +486 -0
- package/src/guardian/gateway-monitor.js +590 -0
- package/src/index.js +3 -0
|
@@ -0,0 +1,530 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<link rel="icon" type="image/png" href="/favicon.png">
|
|
5
|
+
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
|
|
6
|
+
<meta charset="UTF-8">
|
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
8
|
+
<title>ClawMoat for Business — Your Team Deployed AI Agents. Do You Know What They Can Access?</title>
|
|
9
|
+
<meta name="description" content="Enterprise AI agent security. We install ClawMoat on your team's machines in under an hour — permission tiers, credential protection, audit trails, compliance reports. From $99/month.">
|
|
10
|
+
<meta name="keywords" content="AI agent security enterprise, OpenClaw security business, AI agent compliance, agentic AI security, AI agent audit trail, enterprise AI governance">
|
|
11
|
+
<link rel="canonical" href="https://clawmoat.com/business/">
|
|
12
|
+
|
|
13
|
+
<meta property="og:title" content="Your Team Deployed 20 AI Agents Last Month. Do You Know What They Can Access?">
|
|
14
|
+
<meta property="og:description" content="ClawMoat for Business — enterprise agent security installed in under an hour. Permission tiers, forbidden zones, full audit trails. From $99/month.">
|
|
15
|
+
<meta property="og:image" content="https://clawmoat.com/og-image.png">
|
|
16
|
+
<meta property="og:url" content="https://clawmoat.com/business/">
|
|
17
|
+
<meta property="og:type" content="website">
|
|
18
|
+
|
|
19
|
+
<meta name="twitter:card" content="summary_large_image">
|
|
20
|
+
<meta name="twitter:title" content="Your Team Deployed 20 AI Agents Last Month. Do You Know What They Can Access?">
|
|
21
|
+
<meta name="twitter:description" content="Enterprise AI agent security. Installed in under an hour. Permission tiers, credential protection, compliance reports.">
|
|
22
|
+
<meta name="twitter:image" content="https://clawmoat.com/og-image.png">
|
|
23
|
+
|
|
24
|
+
<script type="application/ld+json">
|
|
25
|
+
{
|
|
26
|
+
"@context": "https://schema.org",
|
|
27
|
+
"@type": "Service",
|
|
28
|
+
"name": "ClawMoat for Business",
|
|
29
|
+
"description": "Enterprise AI agent security — remote installation, configuration, and ongoing monitoring for companies deploying AI agents on dedicated machines.",
|
|
30
|
+
"provider": {
|
|
31
|
+
"@type": "Organization",
|
|
32
|
+
"name": "ClawMoat"
|
|
33
|
+
},
|
|
34
|
+
"url": "https://clawmoat.com/business/",
|
|
35
|
+
"offers": [
|
|
36
|
+
{ "@type": "Offer", "name": "Starter", "price": "99", "priceCurrency": "USD", "description": "Up to 5 agent machines" },
|
|
37
|
+
{ "@type": "Offer", "name": "Growth", "price": "249", "priceCurrency": "USD", "description": "Up to 25 agent machines" },
|
|
38
|
+
{ "@type": "Offer", "name": "Scale", "price": "499", "priceCurrency": "USD", "description": "Up to 50 agent machines" }
|
|
39
|
+
]
|
|
40
|
+
}
|
|
41
|
+
</script>
|
|
42
|
+
|
|
43
|
+
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🏰</text></svg>">
|
|
44
|
+
<style>
|
|
45
|
+
*{margin:0;padding:0;box-sizing:border-box}
|
|
46
|
+
:root{--navy:#0F172A;--navy-light:#1E293B;--navy-mid:#334155;--blue:#3B82F6;--emerald:#10B981;--white:#F8FAFC;--gray:#94A3B8;--red:#EF4444;--amber:#F59E0B;--orange:#F97316}
|
|
47
|
+
html{scroll-behavior:smooth}
|
|
48
|
+
body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;background:var(--navy);color:var(--white);line-height:1.6;overflow-x:hidden}
|
|
49
|
+
a{color:var(--blue);text-decoration:none}
|
|
50
|
+
a:hover{text-decoration:underline}
|
|
51
|
+
.container{max-width:1040px;margin:0 auto;padding:0 24px}
|
|
52
|
+
|
|
53
|
+
/* Nav */
|
|
54
|
+
nav{position:fixed;top:0;left:0;right:0;z-index:100;background:rgba(15,23,42,.92);backdrop-filter:blur(12px);border-bottom:1px solid rgba(59,130,246,.15);padding:16px 0}
|
|
55
|
+
nav .container{display:flex;align-items:center;justify-content:space-between}
|
|
56
|
+
.logo{font-size:1.25rem;font-weight:700;display:flex;align-items:center;gap:8px;color:var(--white)}
|
|
57
|
+
.logo span{color:var(--emerald)}
|
|
58
|
+
.logo img{height:44px;width:auto}
|
|
59
|
+
.nav-links{display:flex;gap:28px;align-items:center}
|
|
60
|
+
.nav-links a{color:var(--gray);font-size:.9rem;transition:color .2s}
|
|
61
|
+
.nav-links a:hover{color:var(--white);text-decoration:none}
|
|
62
|
+
.nav-links .btn-sm{color:var(--navy);background:var(--emerald);padding:6px 28px;border-radius:20px;font-weight:600;font-size:.85rem;white-space:nowrap}
|
|
63
|
+
|
|
64
|
+
/* Hero */
|
|
65
|
+
.hero{padding:160px 0 100px;text-align:center;position:relative}
|
|
66
|
+
.hero::before{content:'';position:absolute;top:0;left:50%;transform:translateX(-50%);width:800px;height:800px;background:radial-gradient(circle,rgba(59,130,246,.1) 0%,transparent 70%);pointer-events:none}
|
|
67
|
+
.hero h1{font-size:clamp(2.2rem,5vw,3.2rem);font-weight:800;line-height:1.15;margin-bottom:24px;letter-spacing:-.02em;max-width:800px;margin-left:auto;margin-right:auto}
|
|
68
|
+
.hero h1 .highlight{background:linear-gradient(135deg,var(--blue),var(--emerald));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
|
|
69
|
+
.hero p{font-size:1.15rem;color:var(--gray);max-width:640px;margin:0 auto 40px}
|
|
70
|
+
.btn{display:inline-flex;align-items:center;gap:8px;padding:14px 28px;border-radius:10px;font-weight:600;font-size:1rem;transition:all .2s;border:none;cursor:pointer}
|
|
71
|
+
.btn-primary{background:var(--emerald);color:#fff}
|
|
72
|
+
.btn-primary:hover{background:#059669;text-decoration:none}
|
|
73
|
+
.btn-outline{background:transparent;color:var(--white);border:1.5px solid var(--navy-mid)}
|
|
74
|
+
.btn-outline:hover{border-color:var(--blue);text-decoration:none}
|
|
75
|
+
|
|
76
|
+
/* Sections */
|
|
77
|
+
section{padding:80px 0}
|
|
78
|
+
.section-label{font-size:.8rem;font-weight:700;text-transform:uppercase;letter-spacing:.12em;color:var(--emerald);margin-bottom:12px}
|
|
79
|
+
.section-title{font-size:clamp(1.6rem,3.5vw,2.2rem);font-weight:700;margin-bottom:16px;letter-spacing:-.02em}
|
|
80
|
+
.section-sub{color:var(--gray);font-size:1.05rem;max-width:600px;margin-bottom:40px}
|
|
81
|
+
|
|
82
|
+
/* Problem cards */
|
|
83
|
+
.problem{background:var(--navy-light)}
|
|
84
|
+
.problem-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:20px}
|
|
85
|
+
.p-card{background:var(--navy);border:1px solid rgba(255,255,255,.06);border-radius:14px;padding:28px;transition:border-color .2s}
|
|
86
|
+
.p-card:hover{border-color:var(--red)}
|
|
87
|
+
.p-card .icon{font-size:2rem;margin-bottom:12px}
|
|
88
|
+
.p-card h3{font-size:1.05rem;margin-bottom:8px}
|
|
89
|
+
.p-card p{color:var(--gray);font-size:.9rem}
|
|
90
|
+
|
|
91
|
+
/* Steps */
|
|
92
|
+
.steps{counter-reset:step}
|
|
93
|
+
.step{display:flex;gap:24px;align-items:flex-start;margin-bottom:40px}
|
|
94
|
+
.step-num{counter-increment:step;width:48px;height:48px;background:var(--blue);color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:1.2rem;flex-shrink:0}
|
|
95
|
+
.step-num::before{content:counter(step)}
|
|
96
|
+
.step h3{font-size:1.1rem;margin-bottom:4px}
|
|
97
|
+
.step p{color:var(--gray);font-size:.9rem}
|
|
98
|
+
|
|
99
|
+
/* Pricing */
|
|
100
|
+
.pricing-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:20px}
|
|
101
|
+
.price-card{background:var(--navy-light);border:1px solid rgba(255,255,255,.06);border-radius:14px;padding:28px;display:flex;flex-direction:column}
|
|
102
|
+
.price-card.popular{border-color:var(--blue);position:relative}
|
|
103
|
+
.price-card.popular::before{content:'Most Popular';position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--blue);color:#fff;padding:4px 16px;border-radius:20px;font-size:.75rem;font-weight:700}
|
|
104
|
+
.price-card h3{font-size:1.1rem;margin-bottom:4px}
|
|
105
|
+
.price-card .price{font-size:2.5rem;font-weight:800;margin:12px 0 4px}
|
|
106
|
+
.price-card .period{color:var(--gray);font-size:.85rem}
|
|
107
|
+
.price-card ul{list-style:none;margin:20px 0;flex:1}
|
|
108
|
+
.price-card li{padding:5px 0;font-size:.9rem;color:var(--gray)}
|
|
109
|
+
.price-card li::before{content:'✓ ';color:var(--emerald);font-weight:700}
|
|
110
|
+
.price-card .btn{width:100%;justify-content:center;margin-top:auto}
|
|
111
|
+
|
|
112
|
+
/* Guarantee */
|
|
113
|
+
.guarantee{background:linear-gradient(135deg,rgba(16,185,129,.08),rgba(59,130,246,.08));border:1px solid rgba(16,185,129,.2);border-radius:14px;padding:40px;text-align:center;max-width:700px;margin:0 auto}
|
|
114
|
+
|
|
115
|
+
/* Form */
|
|
116
|
+
.intake-form{background:var(--navy-light);border:1px solid rgba(59,130,246,.2);border-radius:14px;padding:40px;max-width:600px;margin:0 auto}
|
|
117
|
+
.intake-form label{display:block;font-size:.85rem;font-weight:600;margin-bottom:6px;color:var(--gray)}
|
|
118
|
+
.intake-form input,.intake-form select,.intake-form textarea{width:100%;padding:12px 16px;border-radius:8px;border:1px solid var(--navy-mid);background:var(--navy);color:var(--white);font-size:.95rem;margin-bottom:20px}
|
|
119
|
+
.intake-form input:focus,.intake-form select:focus,.intake-form textarea:focus{outline:none;border-color:var(--blue)}
|
|
120
|
+
.intake-form textarea{min-height:80px;resize:vertical}
|
|
121
|
+
.intake-form .btn{width:100%;justify-content:center}
|
|
122
|
+
|
|
123
|
+
/* Comparison */
|
|
124
|
+
.compare{display:grid;grid-template-columns:1fr 1fr;gap:24px;max-width:800px;margin:0 auto}
|
|
125
|
+
@media(max-width:600px){.compare{grid-template-columns:1fr}}
|
|
126
|
+
.compare-card{border-radius:14px;padding:28px}
|
|
127
|
+
.compare-card h3{font-size:1.1rem;margin-bottom:16px}
|
|
128
|
+
.compare-card ul{list-style:none}
|
|
129
|
+
.compare-card li{padding:5px 0;font-size:.9rem}
|
|
130
|
+
.compare-bad{background:rgba(239,68,68,.08);border:1px solid rgba(239,68,68,.2)}
|
|
131
|
+
.compare-bad li::before{content:'✗ ';color:var(--red);font-weight:700}
|
|
132
|
+
.compare-good{background:rgba(16,185,129,.08);border:1px solid rgba(16,185,129,.2)}
|
|
133
|
+
.compare-good li::before{content:'✓ ';color:var(--emerald);font-weight:700}
|
|
134
|
+
|
|
135
|
+
/* Logos / trust */
|
|
136
|
+
.trust-bar{display:flex;gap:32px;justify-content:center;flex-wrap:wrap;align-items:center;opacity:.7;margin-top:40px;font-size:.85rem;color:var(--gray)}
|
|
137
|
+
.trust-bar span{display:flex;align-items:center;gap:6px}
|
|
138
|
+
|
|
139
|
+
/* Responsive */
|
|
140
|
+
@media(max-width:768px){
|
|
141
|
+
.hero{padding:120px 0 60px}
|
|
142
|
+
.nav-links{display:none}
|
|
143
|
+
section{padding:60px 0}
|
|
144
|
+
.step{flex-direction:column;gap:12px}
|
|
145
|
+
}
|
|
146
|
+
</style>
|
|
147
|
+
</head>
|
|
148
|
+
<body>
|
|
149
|
+
|
|
150
|
+
<!-- Nav -->
|
|
151
|
+
<nav>
|
|
152
|
+
<div class="container">
|
|
153
|
+
<a href="/" class="logo">🏰 Claw<span>Moat</span> <span style="font-size:.75rem;color:var(--gray);font-weight:400;margin-left:4px">for Business</span></a>
|
|
154
|
+
<div class="nav-links">
|
|
155
|
+
<a href="#problem">The Risk</a>
|
|
156
|
+
<a href="#how">How It Works</a>
|
|
157
|
+
<a href="#pricing">Pricing</a>
|
|
158
|
+
<a href="/business/install.html">Self-Install</a>
|
|
159
|
+
<a href="/">Open Source</a>
|
|
160
|
+
<a href="#contact" class="btn-sm">Get a Quote</a>
|
|
161
|
+
</div>
|
|
162
|
+
</div>
|
|
163
|
+
</nav>
|
|
164
|
+
|
|
165
|
+
<!-- HERO — Schwartz Stage 5: Identification headline. CISOs don't know ClawMoat. Don't mention product. Echo their state of mind. -->
|
|
166
|
+
<section class="hero">
|
|
167
|
+
<div class="container">
|
|
168
|
+
<div style="display:inline-block;background:rgba(239,68,68,.12);border:1px solid rgba(239,68,68,.3);border-radius:20px;padding:6px 16px;font-size:.85rem;color:var(--red);margin-bottom:24px">⚠️ <a href="https://www.microsoft.com/en-us/security/blog/2026/02/19/running-openclaw-safely-identity-isolation-runtime-risk/" style="color:var(--red)">Microsoft says</a> "not appropriate for enterprise workstations" · 135K exposed instances · 341+ malicious skills</div>
|
|
169
|
+
<h1>Your team deployed AI agents last month.<br><span class="highlight">Do you know what they can access?</span></h1>
|
|
170
|
+
<p>SSH keys. AWS credentials. Customer databases. Browser sessions. Every AI agent on your network has the same access as the employee who installed it — with none of the accountability. We fix that in under an hour.</p>
|
|
171
|
+
<div style="display:flex;gap:16px;justify-content:center;flex-wrap:wrap">
|
|
172
|
+
<a href="#contact" class="btn btn-primary">Get a Security Assessment →</a>
|
|
173
|
+
<a href="#how" class="btn btn-outline">See How It Works</a>
|
|
174
|
+
<a href="/business/install.html" class="btn btn-outline" style="border-color:var(--emerald);color:var(--emerald)">⚡ Self-Install in 60s</a>
|
|
175
|
+
</div>
|
|
176
|
+
<div class="trust-bar">
|
|
177
|
+
<span>🔬 Based on <a href="https://arxiv.org/abs/2501.13011" style="color:var(--gray)">Anthropic research</a></span>
|
|
178
|
+
<span>📊 Mapped to <a href="https://genai.owasp.org/" style="color:var(--gray)">OWASP Agentic AI 2026</a></span>
|
|
179
|
+
<span>📦 MIT Open Source</span>
|
|
180
|
+
<span>⚡ Zero Dependencies</span>
|
|
181
|
+
</div>
|
|
182
|
+
</div>
|
|
183
|
+
</section>
|
|
184
|
+
|
|
185
|
+
<!-- PROBLEM — Schwartz: Intensify the desire. Make the CISO feel the risk in their gut. -->
|
|
186
|
+
<section class="problem" id="problem">
|
|
187
|
+
<div class="container">
|
|
188
|
+
<div class="section-label">The Risk You're Not Measuring</div>
|
|
189
|
+
<h2 class="section-title">Every AI agent is an unmonitored employee with admin access</h2>
|
|
190
|
+
<p class="section-sub">Your security stack covers endpoints, networks, and cloud. But who's watching the AI agent that just read your entire ~/.aws directory?</p>
|
|
191
|
+
<div class="problem-grid">
|
|
192
|
+
<div class="p-card">
|
|
193
|
+
<div class="icon">🔓</div>
|
|
194
|
+
<h3>Credential Theft</h3>
|
|
195
|
+
<p>Researchers built a weather skill that exfiltrates SSH keys and API tokens. It passed every review. Your agents install skills from a public marketplace with no signature verification.</p>
|
|
196
|
+
</div>
|
|
197
|
+
<div class="p-card">
|
|
198
|
+
<div class="icon">💉</div>
|
|
199
|
+
<h3>Prompt Injection at Scale</h3>
|
|
200
|
+
<p>A single poisoned email can hijack an agent's behavior. Cisco found the leading agent platform "fails decisively" against injection. Your agents process hundreds of external inputs per day.</p>
|
|
201
|
+
</div>
|
|
202
|
+
<div class="p-card">
|
|
203
|
+
<div class="icon">👻</div>
|
|
204
|
+
<h3>Zero Audit Trail</h3>
|
|
205
|
+
<p>If an agent exfiltrates data right now, you have no log, no alert, and no way to know it happened. There is no native identity or access control system for AI agents.</p>
|
|
206
|
+
</div>
|
|
207
|
+
<div class="p-card">
|
|
208
|
+
<div class="icon">📋</div>
|
|
209
|
+
<h3>Compliance Gap</h3>
|
|
210
|
+
<p>SOC 2 requires access controls and audit trails for all systems that touch sensitive data. Your AI agents touch everything — and none of it is logged.</p>
|
|
211
|
+
</div>
|
|
212
|
+
</div>
|
|
213
|
+
</div>
|
|
214
|
+
</section>
|
|
215
|
+
|
|
216
|
+
<!-- WHAT WE DO — Schwartz Stage 3: Lead with the MECHANISM, not the claim -->
|
|
217
|
+
<section id="solution">
|
|
218
|
+
<div class="container">
|
|
219
|
+
<div class="section-label">The Mechanism</div>
|
|
220
|
+
<h2 class="section-title">Four permission tiers between your agent and your machine</h2>
|
|
221
|
+
<p class="section-sub">ClawMoat sits between the AI agent and the operating system. Every file read, shell command, and network request is validated against your policy — in real time, in under 1ms.</p>
|
|
222
|
+
|
|
223
|
+
<div class="compare" style="margin-bottom:48px">
|
|
224
|
+
<div class="compare-card compare-bad">
|
|
225
|
+
<h3>❌ Without ClawMoat</h3>
|
|
226
|
+
<ul>
|
|
227
|
+
<li>Agent reads ~/.ssh/id_rsa — no one knows</li>
|
|
228
|
+
<li>Malicious skill runs curl to exfiltrate tokens</li>
|
|
229
|
+
<li>No audit trail of agent actions</li>
|
|
230
|
+
<li>No permission boundaries</li>
|
|
231
|
+
<li>Compliance team has no visibility</li>
|
|
232
|
+
<li>Incident response starts from zero</li>
|
|
233
|
+
</ul>
|
|
234
|
+
</div>
|
|
235
|
+
<div class="compare-card compare-good">
|
|
236
|
+
<h3>✅ With ClawMoat</h3>
|
|
237
|
+
<ul>
|
|
238
|
+
<li>SSH keys in forbidden zone — blocked + logged</li>
|
|
239
|
+
<li>Egress to unknown domains — blocked + alerted</li>
|
|
240
|
+
<li>Full audit trail of every action</li>
|
|
241
|
+
<li>4 permission tiers (observer → full)</li>
|
|
242
|
+
<li>Compliance reports for SOC 2, ISO 27001</li>
|
|
243
|
+
<li>Incident forensics in 30 seconds</li>
|
|
244
|
+
</ul>
|
|
245
|
+
</div>
|
|
246
|
+
</div>
|
|
247
|
+
</div>
|
|
248
|
+
</section>
|
|
249
|
+
|
|
250
|
+
<!-- HOW IT WORKS — Schwartz: Gradualization. Walk them through the process step by step. -->
|
|
251
|
+
<section style="background:var(--navy-light)" id="how">
|
|
252
|
+
<div class="container">
|
|
253
|
+
<div class="section-label">Remote Setup</div>
|
|
254
|
+
<h2 class="section-title">Installed on your machines in under an hour. By us.</h2>
|
|
255
|
+
<p class="section-sub">You don't need to learn a new tool. We handle everything — you just provide access.</p>
|
|
256
|
+
|
|
257
|
+
<div class="steps">
|
|
258
|
+
<div class="step">
|
|
259
|
+
<div class="step-num"></div>
|
|
260
|
+
<div>
|
|
261
|
+
<h3>You give us access</h3>
|
|
262
|
+
<p>SSH, Tailscale, TeamViewer, or any remote access you already use. We need a user account on each agent machine — that's it.</p>
|
|
263
|
+
</div>
|
|
264
|
+
</div>
|
|
265
|
+
<div class="step">
|
|
266
|
+
<div class="step-num"></div>
|
|
267
|
+
<div>
|
|
268
|
+
<h3>We run the installer</h3>
|
|
269
|
+
<p>Our setup script detects your OS (macOS/Linux/WSL), creates a locked-down agent user account, installs ClawMoat, and applies your hardened config. Takes ~10 minutes per machine.</p>
|
|
270
|
+
</div>
|
|
271
|
+
</div>
|
|
272
|
+
<div class="step">
|
|
273
|
+
<div class="step-num"></div>
|
|
274
|
+
<div>
|
|
275
|
+
<h3>We configure your policy</h3>
|
|
276
|
+
<p>Permission tier, forbidden zones, allowed domains, alert channels (Slack, email, webhook), and audit log destinations. Customized to your security requirements.</p>
|
|
277
|
+
</div>
|
|
278
|
+
</div>
|
|
279
|
+
<div class="step">
|
|
280
|
+
<div class="step-num"></div>
|
|
281
|
+
<div>
|
|
282
|
+
<h3>You get a security report</h3>
|
|
283
|
+
<p>Within 24 hours: a full audit of what your agents currently have access to, what we've locked down, and your OWASP Agentic AI compliance status. Then ongoing monitoring kicks in.</p>
|
|
284
|
+
</div>
|
|
285
|
+
</div>
|
|
286
|
+
</div>
|
|
287
|
+
</div>
|
|
288
|
+
</section>
|
|
289
|
+
|
|
290
|
+
<!-- WHAT'S INCLUDED -->
|
|
291
|
+
<section>
|
|
292
|
+
<div class="container">
|
|
293
|
+
<div class="section-label">What You Get</div>
|
|
294
|
+
<h2 class="section-title">Not just software. A security layer that's managed for you.</h2>
|
|
295
|
+
<p class="section-sub">Open source ClawMoat is free. The business plan adds installation, configuration, monitoring, and compliance — so your team doesn't have to.</p>
|
|
296
|
+
|
|
297
|
+
<div class="problem-grid">
|
|
298
|
+
<div class="p-card" style="border-color:rgba(16,185,129,.2)">
|
|
299
|
+
<div class="icon">🛡️</div>
|
|
300
|
+
<h3>Host Guardian</h3>
|
|
301
|
+
<p>4 permission tiers, 20+ forbidden zones, dangerous command blocking. Your agent can only do what you explicitly allow.</p>
|
|
302
|
+
</div>
|
|
303
|
+
<div class="p-card" style="border-color:rgba(16,185,129,.2)">
|
|
304
|
+
<div class="icon">📊</div>
|
|
305
|
+
<h3>Audit Trail</h3>
|
|
306
|
+
<p>Every file access, shell command, and network request logged. Searchable, exportable, and ready for your compliance team.</p>
|
|
307
|
+
</div>
|
|
308
|
+
<div class="p-card" style="border-color:rgba(16,185,129,.2)">
|
|
309
|
+
<div class="icon">🚨</div>
|
|
310
|
+
<h3>Real-Time Alerts</h3>
|
|
311
|
+
<p>Slack, email, or webhook notifications when an agent hits a forbidden zone, attempts a blocked command, or matches a threat pattern.</p>
|
|
312
|
+
</div>
|
|
313
|
+
<div class="p-card" style="border-color:rgba(16,185,129,.2)">
|
|
314
|
+
<div class="icon">🔍</div>
|
|
315
|
+
<h3>Skill Integrity</h3>
|
|
316
|
+
<p>Hash-based verification of every installed skill. Know immediately if a skill has been tampered with or contains suspicious patterns.</p>
|
|
317
|
+
</div>
|
|
318
|
+
<div class="p-card" style="border-color:rgba(16,185,129,.2)">
|
|
319
|
+
<div class="icon">🌐</div>
|
|
320
|
+
<h3>Network Egress Control</h3>
|
|
321
|
+
<p>Domain allow/blocklists. See exactly where your agents send data. Block exfiltration to unknown endpoints automatically.</p>
|
|
322
|
+
</div>
|
|
323
|
+
<div class="p-card" style="border-color:rgba(16,185,129,.2)">
|
|
324
|
+
<div class="icon">📋</div>
|
|
325
|
+
<h3>Compliance Reports</h3>
|
|
326
|
+
<p>Pre-built reports for SOC 2, ISO 27001, and OWASP Agentic AI 2026. Map your agent security posture to frameworks your auditors already know.</p>
|
|
327
|
+
</div>
|
|
328
|
+
</div>
|
|
329
|
+
</div>
|
|
330
|
+
</section>
|
|
331
|
+
|
|
332
|
+
<!-- PRICING — Schwartz: At Stage 2, lead with the direct claim, enlarged. -->
|
|
333
|
+
<section style="background:var(--navy-light)" id="pricing">
|
|
334
|
+
<div class="container">
|
|
335
|
+
<div class="section-label">Pricing</div>
|
|
336
|
+
<h2 class="section-title">Less than the cost of one security incident.</h2>
|
|
337
|
+
<p class="section-sub">Setup fee covers installation and hardening. Monthly covers monitoring, alerts, updates, and support. Cancel anytime.</p>
|
|
338
|
+
|
|
339
|
+
<div class="pricing-grid">
|
|
340
|
+
<div class="price-card">
|
|
341
|
+
<h3>Starter</h3>
|
|
342
|
+
<p style="color:var(--gray);font-size:.85rem">Up to 5 agent machines</p>
|
|
343
|
+
<div class="price" style="color:var(--emerald)">$99<span style="font-size:1rem;font-weight:400;color:var(--gray)">/mo</span></div>
|
|
344
|
+
<p class="period">+ $500 one-time setup</p>
|
|
345
|
+
<ul>
|
|
346
|
+
<li>Remote installation on up to 5 machines</li>
|
|
347
|
+
<li>Hardened config per machine</li>
|
|
348
|
+
<li>Permission tiers + forbidden zones</li>
|
|
349
|
+
<li>Email + Slack alerts</li>
|
|
350
|
+
<li>Monthly compliance report</li>
|
|
351
|
+
<li>Email support (24h response)</li>
|
|
352
|
+
</ul>
|
|
353
|
+
<a href="#contact" class="btn btn-outline">Get Started</a>
|
|
354
|
+
</div>
|
|
355
|
+
|
|
356
|
+
<div class="price-card popular">
|
|
357
|
+
<h3>Growth</h3>
|
|
358
|
+
<p style="color:var(--gray);font-size:.85rem">Up to 25 agent machines</p>
|
|
359
|
+
<div class="price" style="color:var(--emerald)">$249<span style="font-size:1rem;font-weight:400;color:var(--gray)">/mo</span></div>
|
|
360
|
+
<p class="period">+ $1,000 one-time setup</p>
|
|
361
|
+
<ul>
|
|
362
|
+
<li>Everything in Starter</li>
|
|
363
|
+
<li>Up to 25 machines</li>
|
|
364
|
+
<li>Centralized policy management</li>
|
|
365
|
+
<li>Webhook + custom alert channels</li>
|
|
366
|
+
<li>Weekly compliance reports</li>
|
|
367
|
+
<li>Dedicated Slack channel support</li>
|
|
368
|
+
<li>Quarterly security review call</li>
|
|
369
|
+
</ul>
|
|
370
|
+
<a href="#contact" class="btn btn-primary">Get Started</a>
|
|
371
|
+
</div>
|
|
372
|
+
|
|
373
|
+
<div class="price-card">
|
|
374
|
+
<h3>Scale</h3>
|
|
375
|
+
<p style="color:var(--gray);font-size:.85rem">Up to 50 agent machines</p>
|
|
376
|
+
<div class="price" style="color:var(--emerald)">$499<span style="font-size:1rem;font-weight:400;color:var(--gray)">/mo</span></div>
|
|
377
|
+
<p class="period">+ $2,000 one-time setup</p>
|
|
378
|
+
<ul>
|
|
379
|
+
<li>Everything in Growth</li>
|
|
380
|
+
<li>Up to 50 machines</li>
|
|
381
|
+
<li>Inter-agent message scanning</li>
|
|
382
|
+
<li>Custom policy engine rules</li>
|
|
383
|
+
<li>Real-time compliance dashboard</li>
|
|
384
|
+
<li>Priority support (4h response)</li>
|
|
385
|
+
<li>Monthly security review call</li>
|
|
386
|
+
</ul>
|
|
387
|
+
<a href="#contact" class="btn btn-outline">Get Started</a>
|
|
388
|
+
</div>
|
|
389
|
+
</div>
|
|
390
|
+
|
|
391
|
+
<p style="text-align:center;color:var(--gray);font-size:.85rem;margin-top:24px">50+ machines? <a href="#contact">Contact us</a> for Enterprise pricing with custom SLAs, on-prem options, and dedicated support.</p>
|
|
392
|
+
</div>
|
|
393
|
+
</section>
|
|
394
|
+
|
|
395
|
+
<!-- GUARANTEE -->
|
|
396
|
+
<section>
|
|
397
|
+
<div class="container">
|
|
398
|
+
<div class="guarantee">
|
|
399
|
+
<div style="font-size:2.5rem;margin-bottom:16px">🛡️</div>
|
|
400
|
+
<h2 style="font-size:1.5rem;font-weight:700;margin-bottom:12px">30-Day Money-Back Guarantee</h2>
|
|
401
|
+
<p style="color:var(--gray);max-width:500px;margin:0 auto">If ClawMoat doesn't reduce your agent security risk measurably within 30 days, we'll refund your setup fee and first month. No questions asked.</p>
|
|
402
|
+
</div>
|
|
403
|
+
</div>
|
|
404
|
+
</section>
|
|
405
|
+
|
|
406
|
+
<!-- SOCIAL PROOF — Schwartz: Identification. Show them people like them. -->
|
|
407
|
+
<section style="background:var(--navy-light)">
|
|
408
|
+
<div class="container" style="text-align:center">
|
|
409
|
+
<div class="section-label">Who This Is For</div>
|
|
410
|
+
<h2 class="section-title" style="max-width:700px;margin:0 auto 40px">Teams that use AI agents and take security seriously</h2>
|
|
411
|
+
<div class="problem-grid" style="text-align:left">
|
|
412
|
+
<div class="p-card" style="border-color:rgba(59,130,246,.2)">
|
|
413
|
+
<div class="icon">🏢</div>
|
|
414
|
+
<h3>Engineering Teams</h3>
|
|
415
|
+
<p>Your devs use OpenClaw, Claude Code, or Cursor on company laptops. They have access to production credentials. You need guardrails without slowing them down.</p>
|
|
416
|
+
</div>
|
|
417
|
+
<div class="p-card" style="border-color:rgba(59,130,246,.2)">
|
|
418
|
+
<div class="icon">🔒</div>
|
|
419
|
+
<h3>Security Teams</h3>
|
|
420
|
+
<p>You can see endpoints, cloud, and network. But AI agents are a blind spot. You need visibility and control before your next audit.</p>
|
|
421
|
+
</div>
|
|
422
|
+
<div class="p-card" style="border-color:rgba(59,130,246,.2)">
|
|
423
|
+
<div class="icon">📊</div>
|
|
424
|
+
<h3>Compliance Officers</h3>
|
|
425
|
+
<p>SOC 2, ISO 27001, and OWASP Agentic AI 2026 all require access controls and audit trails for systems touching sensitive data. Your agents have neither.</p>
|
|
426
|
+
</div>
|
|
427
|
+
</div>
|
|
428
|
+
</div>
|
|
429
|
+
</section>
|
|
430
|
+
|
|
431
|
+
<!-- FAQ — Schwartz: Overcome objections before they form -->
|
|
432
|
+
<section id="faq">
|
|
433
|
+
<div class="container" style="max-width:700px">
|
|
434
|
+
<div class="section-label" style="text-align:center">FAQ</div>
|
|
435
|
+
<h2 class="section-title" style="text-align:center;margin-bottom:40px">Questions security teams ask</h2>
|
|
436
|
+
|
|
437
|
+
<div style="margin-bottom:32px">
|
|
438
|
+
<h3 style="font-size:1.05rem;margin-bottom:8px">Will this slow down our agents?</h3>
|
|
439
|
+
<p style="color:var(--gray);font-size:.9rem">No. ClawMoat validates actions in under 1ms. Zero dependencies means no supply chain bloat. Your agents won't notice it's there — until it blocks something dangerous.</p>
|
|
440
|
+
</div>
|
|
441
|
+
<div style="margin-bottom:32px">
|
|
442
|
+
<h3 style="font-size:1.05rem;margin-bottom:8px">Is this open source? Can we audit it?</h3>
|
|
443
|
+
<p style="color:var(--gray);font-size:.9rem">100% open source, MIT licensed, on <a href="https://github.com/darfaz/clawmoat">GitHub</a>. 142 tests passing, zero dependencies. The business plan adds managed installation and monitoring — the security engine itself is fully auditable.</p>
|
|
444
|
+
</div>
|
|
445
|
+
<div style="margin-bottom:32px">
|
|
446
|
+
<h3 style="font-size:1.05rem;margin-bottom:8px">What agent platforms do you support?</h3>
|
|
447
|
+
<p style="color:var(--gray);font-size:.9rem">Any Node.js-based agent: OpenClaw, Claude Code, custom LangChain/LlamaIndex deployments. If it runs on macOS, Linux, or WSL, we can protect it.</p>
|
|
448
|
+
</div>
|
|
449
|
+
<div style="margin-bottom:32px">
|
|
450
|
+
<h3 style="font-size:1.05rem;margin-bottom:8px">What access do you need to our machines?</h3>
|
|
451
|
+
<p style="color:var(--gray);font-size:.9rem">SSH or any remote access tool (Tailscale, TeamViewer). We create a dedicated agent user account, install ClawMoat, apply the config, and hand it back. We don't need ongoing access unless you want managed monitoring.</p>
|
|
452
|
+
</div>
|
|
453
|
+
<div style="margin-bottom:32px">
|
|
454
|
+
<h3 style="font-size:1.05rem;margin-bottom:8px">Can we self-install instead?</h3>
|
|
455
|
+
<p style="color:var(--gray);font-size:.9rem">Absolutely. ClawMoat is free and open source. The business plans are for teams that want professional installation, hardened configs, ongoing monitoring, and compliance reports without doing it themselves.</p>
|
|
456
|
+
</div>
|
|
457
|
+
<div style="margin-bottom:32px">
|
|
458
|
+
<h3 style="font-size:1.05rem;margin-bottom:8px">How does this compare to LlamaFirewall or Lakera?</h3>
|
|
459
|
+
<p style="color:var(--gray);font-size:.9rem">They protect the model layer (prompt filtering, guardrails). We protect the host layer (file system, credentials, shell commands). They're complementary — we recommend using both. <a href="/blog/clawmoat-vs-llamafirewall-nemo-guardrails.html">See the full comparison →</a></p>
|
|
460
|
+
</div>
|
|
461
|
+
</div>
|
|
462
|
+
</section>
|
|
463
|
+
|
|
464
|
+
<!-- CTA / CONTACT FORM — Schwartz: Remove all friction. Make taking action feel inevitable. -->
|
|
465
|
+
<section style="background:var(--navy-light)" id="contact">
|
|
466
|
+
<div class="container" style="text-align:center">
|
|
467
|
+
<div class="section-label">Get Started</div>
|
|
468
|
+
<h2 class="section-title" style="max-width:700px;margin:0 auto 12px">Your agents are running right now.<br>Find out what they can access.</h2>
|
|
469
|
+
<p style="color:var(--gray);max-width:500px;margin:0 auto 40px">Free security assessment. We'll audit one machine and show you exactly what your agents have access to — no commitment, no sales pitch.</p>
|
|
470
|
+
|
|
471
|
+
<form class="intake-form" action="mailto:hello@clawmoat.com" method="POST" enctype="text/plain">
|
|
472
|
+
<div style="display:grid;grid-template-columns:1fr 1fr;gap:0 20px">
|
|
473
|
+
<div>
|
|
474
|
+
<label for="name">Your Name</label>
|
|
475
|
+
<input type="text" id="name" name="name" required placeholder="Jane Smith">
|
|
476
|
+
</div>
|
|
477
|
+
<div>
|
|
478
|
+
<label for="email">Work Email</label>
|
|
479
|
+
<input type="email" id="email" name="email" required placeholder="jane@company.com">
|
|
480
|
+
</div>
|
|
481
|
+
</div>
|
|
482
|
+
<label for="company">Company</label>
|
|
483
|
+
<input type="text" id="company" name="company" placeholder="Acme Corp">
|
|
484
|
+
<div style="display:grid;grid-template-columns:1fr 1fr;gap:0 20px">
|
|
485
|
+
<div>
|
|
486
|
+
<label for="agents">How many AI agents?</label>
|
|
487
|
+
<select id="agents" name="agents">
|
|
488
|
+
<option value="1-5">1–5</option>
|
|
489
|
+
<option value="6-25">6–25</option>
|
|
490
|
+
<option value="26-50">26–50</option>
|
|
491
|
+
<option value="50+">50+</option>
|
|
492
|
+
</select>
|
|
493
|
+
</div>
|
|
494
|
+
<div>
|
|
495
|
+
<label for="platform">Agent Platform</label>
|
|
496
|
+
<select id="platform" name="platform">
|
|
497
|
+
<option value="openclaw">OpenClaw</option>
|
|
498
|
+
<option value="claude-code">Claude Code</option>
|
|
499
|
+
<option value="custom">Custom / Other</option>
|
|
500
|
+
<option value="multiple">Multiple</option>
|
|
501
|
+
</select>
|
|
502
|
+
</div>
|
|
503
|
+
</div>
|
|
504
|
+
<label for="details">Anything else we should know?</label>
|
|
505
|
+
<textarea id="details" name="details" placeholder="Current security concerns, compliance requirements, deployment details..."></textarea>
|
|
506
|
+
<button type="submit" class="btn btn-primary">Get Your Free Security Assessment →</button>
|
|
507
|
+
<p style="color:var(--gray);font-size:.75rem;margin-top:12px">We'll respond within 24 hours. No spam, no auto-sequences.</p>
|
|
508
|
+
</form>
|
|
509
|
+
</div>
|
|
510
|
+
</section>
|
|
511
|
+
|
|
512
|
+
<!-- Footer -->
|
|
513
|
+
<footer style="padding:40px 0;border-top:1px solid rgba(255,255,255,.06)">
|
|
514
|
+
<div class="container" style="display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:16px">
|
|
515
|
+
<div style="color:var(--gray);font-size:.85rem">
|
|
516
|
+
🏰 ClawMoat — Open source AI agent security
|
|
517
|
+
</div>
|
|
518
|
+
<div style="display:flex;gap:24px;font-size:.85rem;flex-wrap:wrap">
|
|
519
|
+
<a href="/" style="color:var(--gray)">Home</a>
|
|
520
|
+
<a href="https://github.com/darfaz/clawmoat" style="color:var(--gray)">GitHub</a>
|
|
521
|
+
<a href="/blog/" style="color:var(--gray)">Blog</a>
|
|
522
|
+
<a href="mailto:hello@clawmoat.com" style="color:var(--gray)">hello@clawmoat.com</a>
|
|
523
|
+
<a href="tel:+16503838190" style="color:var(--gray)">(650) 383-8190</a>
|
|
524
|
+
<span style="color:var(--gray)">10000 Washington Blvd, Culver City, CA 90232</span>
|
|
525
|
+
</div>
|
|
526
|
+
</div>
|
|
527
|
+
</footer>
|
|
528
|
+
|
|
529
|
+
</body>
|
|
530
|
+
</html>
|