You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add MiniClaw secure agent runtime docs: overview, quick start,
four-layer security model, API endpoints, dashboard, and config
defaults. Update architecture tree to include miniclaw/ directory.
Copy file name to clipboardExpand all lines: README.md
+116-5Lines changed: 116 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ Security auditor for AI agent configurations. Scans Claude Code setups for vulne
4
4
5
5
The AI agent ecosystem is growing fast — but security isn't keeping pace. 12% of one major agent marketplace contains malicious skills. A CVSS 8.8 CVE affected 17,500+ internet-facing instances. Developers install community skills, connect MCP servers, and configure hooks without any automated way to audit the security of their setup.
6
6
7
-
AgentShield scans your `.claude/` directory and agent configuration files to detect vulnerabilities before they become exploits.
7
+
AgentShield scans your `.claude/` directory and agent configuration files to detect vulnerabilities before they become exploits. It also includes **MiniClaw** — a minimal, sandboxed AI agent runtime that demonstrates what a secure-by-default agent looks like.
8
8
9
9
Built at the [Claude Code Hackathon](https://cerebralvalley.ai/e/claude-code-hackathon) (Cerebral Valley x Anthropic, Feb 2026).
A minimal, sandboxed AI agent that demonstrates secure-by-default design. Single HTTP endpoint, isolated filesystem, whitelist-based tool authorization, prompt injection filtering. See the [MiniClaw section](#miniclaw) below for full documentation.
├── server.ts HTTP server with rate limiting + CORS
250
+
├── dashboard.tsx React dashboard component
251
+
└── index.ts Entry point and re-exports
233
252
```
234
253
235
254
## Security Rules
@@ -243,6 +262,98 @@ src/
243
262
| Agents | 3 | High - Info |
244
263
|**Total**|**16**||
245
264
265
+
## MiniClaw
266
+
267
+
MiniClaw is a minimal, secure, sandboxed AI agent runtime — the antithesis of multi-channel orchestration platforms. Where platforms like OpenClaw expose many attack surfaces (Telegram, Discord, email, community plugins), MiniClaw presents a **single HTTP endpoint** backed by an **isolated sandbox**.
268
+
269
+
**Design mantra**: Minimal attack surface, maximum security, simple to deploy.
270
+
271
+
| Principle | Typical Agent Platform | MiniClaw |
272
+
|-----------|----------------------|----------|
273
+
| Access points | Many (Telegram, X, Discord, email) | One (single HTTP endpoint) |
0 commit comments