-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (104 loc) · 5.45 KB
/
index.html
File metadata and controls
108 lines (104 loc) · 5.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="/favicon.png" />
<link rel="apple-touch-icon" href="/favicon.png" />
<meta name="theme-color" content="#0a0a0a" />
<link rel="canonical" href="https://clawless.io/" />
<title>ClawLess — Serverless Browser Runtime for Claw AI Agents</title>
<meta name="description" content="Run Claw AI Agents in the browser. No server required. WASM sandbox, 3.4M+ npm packages, policy engine, audit logging, and GitHub integration — all client-side." />
<meta name="author" content="ClawLess" />
<meta name="keywords" content="clawless, claw ai agents, browser runtime, webcontainer, wasm sandbox, serverless agents, ai agent runtime, clawcontainer, browser ai, npm in browser" />
<meta property="og:title" content="ClawLess — Serverless Browser Runtime for Claw AI Agents" />
<meta property="og:description" content="Run Claw AI Agents in the browser. No server required. WASM sandbox, 3.4M+ npm packages, policy engine, audit logging, and GitHub integration." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://clawless.io/" />
<meta property="og:image" content="https://clawless.io/og-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="ClawLess — Serverless Browser Runtime for AI Agents. WASM sandbox, 3.4M+ npm packages, policy engine, audit logging." />
<meta property="og:site_name" content="ClawLess" />
<meta property="og:locale" content="en_US" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="ClawLess — Serverless Browser Runtime for Claw AI Agents" />
<meta name="twitter:description" content="Run Claw AI Agents in the browser. No server required. WASM sandbox, 3.4M+ npm packages, policy engine, audit logging, and GitHub integration." />
<meta name="twitter:image" content="https://clawless.io/og-image.png" />
<meta name="twitter:image:alt" content="ClawLess — Serverless Browser Runtime for AI Agents. WASM sandbox, 3.4M+ npm packages, policy engine, audit logging." />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Organization",
"name": "ClawLess",
"url": "https://clawless.io",
"sameAs": [
"https://github.com/open-gitagent/clawless",
"https://www.npmjs.com/package/clawcontainer"
]
},
{
"@type": "SoftwareApplication",
"name": "ClawLess",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Browser",
"offers": { "@type": "Offer", "price": "0", "priceCurrency": "USD" },
"description": "Serverless browser-based runtime for Claw AI Agents. WASM sandbox with full npm ecosystem access, policy engine, audit logging, and GitHub integration.",
"url": "https://clawless.io",
"downloadUrl": "https://www.npmjs.com/package/clawcontainer",
"softwareVersion": "1.0.0",
"license": "https://opensource.org/licenses/MIT"
},
{
"@type": "WebSite",
"name": "ClawLess",
"url": "https://clawless.io"
},
{
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What is ClawLess?",
"acceptedAnswer": {
"@type": "Answer",
"text": "ClawLess is a serverless browser-based runtime for Claw AI Agents. It uses WebContainers (WASM) to run a full Node.js environment in the browser — no server required. Install npm packages, run agents, and interact with GitHub, all client-side."
}
},
{
"@type": "Question",
"name": "How does ClawLess work without a server?",
"acceptedAnswer": {
"@type": "Answer",
"text": "ClawLess uses WebContainers to boot a WASM-based Node.js runtime directly in your browser tab. It installs real npm packages, runs real processes, and provides a full terminal — all sandboxed within the browser with no backend infrastructure."
}
},
{
"@type": "Question",
"name": "What is the ClawLess policy engine?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The policy engine is a YAML-based guardrail system that controls what agents can do. You define rules for file access, process spawning, port binding, and tool usage. Every action is checked against the policy before execution."
}
},
{
"@type": "Question",
"name": "Can I use ClawLess with any AI provider?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. ClawLess supports Anthropic (Claude), OpenAI (GPT-4o), and Google (Gemini) models. Configure your provider and API key through the UI or programmatically via the SDK."
}
}
]
}
]
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>