frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open in hackernews

Run NanoClaw in Docker Sandboxes

https://nanoclaw.dev/blog/nanoclaw-docker-sandboxes/
69•outofdistro•1h ago

Comments

whalesalad•1h ago
All the sandboxing stuff is neat but the weakest link in these claw setups is not root access on the machine but root access to your life (Gmail, calendar, etc)
causal•1h ago
This is true, but the attack surface on your life is decreased by better security around the entire setup.

But I fundamentally agree that there is just too much overlap between what makes claws useful and what makes them insecure.

wild_egg•1h ago
why give it root access to your life? i don't use these tools but it seems like you should never give anything that access. if a claw needs email, set up a google account just for it and forward relevant stuff to it. share your calendar with it. whatever, just don't let it "be" you.

access control, provisioning, and delegation have been solved for a very long time now.

causal•1h ago
I like NanoClaw a lot. I found OpenClaw to be a bloated mess, NanoClaw implementation is so much tighter.

It's also the first project I've used where Claude Code is the setup and configuration interface. It works really well, and it's fun to add new features on a whim.

systemerror•50m ago
what workflows do you implement in Nanoclaw that wouldn't be straightforward to build in Claude?
causal•29m ago
Straightforward is ambiguous. To replicate NanoClaw would probably only take about a day of work and testing and refining in Claude Code, but that's a day I didn't have to spend to get NanoClaw.
jryio•1h ago
You must explicitly state what your threat model is when writing about security tooling, isolation, and sandboxing.

This threat model is concerned with running arbitrary code generated by or fetched by an AI agent on host machines which contain secrets, sensitive files, and/or exfoliate data, apps, and systems which should not be lost.

What about the threat model where an agent deletes your entire inbox? Or sends your calendar events to a server after prompt injection? Bank transfers of the wrong amount to the wrong address etc. all these are allowed under the sandboxing model.

We need fine grained permissions per-task or per-tool in addition to sandboxing. For example: "this request should only ever read my gmail and never write, delete, or move emails".

Sandboxes do not solve permission escalation or exfiltration threats.

CuriouslyC•1h ago
I built an agent framework designed from the ground up around policy control (https://github.com/sibyllinesoft/smith-core) and I'm in the process of extracting the gateway from it so people can provide that same policy gated security to whatever agent they want (https://github.com/sibyllinesoft/smith-gateway).

My posts about these aspects of agent security get zero engagement (not even a salty "vibe slop" comment, lol), so ironically security is the thing everyone's talking about, but most people don't know enough to understand what they need.

0cf8612b2e1e•50m ago
You mean like the section which goes into the threat model?

  The Security Model: Design for Distrust

  I wrote about this in Don’t Trust AI Agents: when you’re building with AI agents, they should be treated as untrusted and potentially malicious. Prompt injection, model misbehavior, things nobody’s thought of yet. The right approach is architecture that assumes agents will misbehave and contains the damage when they do…
_pdp_•1h ago
The main issue is not so much if it needs to run inside a container or not (and to be honest there are even better isolation models, why not firecracker vm). The main issue is what are you going to do with it.

It does not really matter.

IMHO, until you figure out useful ways to spend tokens to do useful tasks the runtime should be a second thought.

As far as security goes, running LLM in a container in just simply not enough. What matters is not what files it can edit on your machine but what information it can access. And the access in this case as far as these agents are concerned is basically everything. If this does not scare you you should not be thinking about containers.

theptip•40m ago
They may seem like small details, but I think a couple novel design decisions are going to prove to be widely adopted and revolutionary.

The biggest one (as Karpathy notes) is having skills for how to write a (slack, discord, etc) integration, instead of shipping an implementation for each.

Call it “Claude native development” if you will, but “fork and customize” instead of batteries-included platforms/frameworks is going to be a big shift when it percolates through the ecosystem.

A bunch of things you need to figure out, eg how do you ship a spec for how to test and validate the thing, make it secure, etc.

How long before OSs start evolving in this way? You can imagine Auto research-like sharing and promotion upstream of good fixes/approaches, but a more heterogenous ecosystem could be more resistant to attacks if each instance had a strong immune system.

primer42•13m ago
I get the appeal but I disagree

The strength of open source software is collaboration. That many people have tried it, read it, submitted fixes and had those fixes reviewed and accepted.

We've all seen LLMs spit out garbage bugs on the first few tries. I've written garbage bugs on my first try too. We all benefit from the review process.

I would rather have a battle tested base to start customizing from than having to stumble through the pitfalls of a buggy or insecure AI implementation.

MartiCarmona•35m ago
Does getviktor use NanoClaw?
jbstack•29m ago
As an aside, app descriptions that just say "a lightweight alternative to X" are very unhelpful. That tells me nothing if I don't know what X does, and I don't want to have to go down a rabbit hole just to understand your product. It's particularly bad in this case, because even OpenClaw's Github page doesn't clearly tell me what it actually does; just that it's some kind of assistant that I can communicate with via WhatsApp etc. I appreciate that many people are already familiar with OpenClaw, but you shouldn't assume.

It's better if your app's description just tells me what it does in a direct way using plain language. It's fine to tell me it's an alternative to something, but that should be in addition to rather than instead of your own description.

lxgr•29m ago
Docker sandboxes sound exactly like what Apple is doing with their `container` framework. It's missing several Docker features still, but if I were to pick a minimal, native runtime, it would probably be that, not the multi-gigabyte monster that is Docker for macOS.

On Linux, however, I absolutely don't want a hypervisor on my quite underpowered single-board server. Linux namespaces are enough for what I want from them (i.e. preventing one of these agent harnesses to hijack my memory, disk, or CPU). I wonder why neither OpenClaw nor NanoClaw seem to offer a sanely configured, prebuilt, and frequently updated Docker image?

worldsayshi•28m ago
What are the most obvious use cases for Nano/Open-Claw. I can't imagine anything obvious that I'd want to use it for. Is it supposed to run your digital life for you?
jdgoesmarching•24m ago
Hooking it up to your todo app and texting your bot to manage things. Assuming you’re a heavy todo app person that could benefit from such things.
strickjb9•14m ago
The non-answer is anything you want.

For me, it's my diet and workout buddy. It knows my goals, keeps me on track, does meal planning for me, gives me grocery lists, logs what I eat, when I exercise... anything I want so I don't slack off.

I've enhanced Nanoclaw quite a bit. Moved it to Apple containers (shipped with this Skill already). Then I wrote an API for Nanoclaw to use (food log, workouts, etc), then implemented long-term memory using LanceDB (because I was tired of repeating myself!).

Eggpants•17m ago
What I found interesting is nanoclaw isn’t a working product out of the box. You must use a coding agent to complete it with features you want. For example add iMessage support, etc.

In other words, Claude is the compiler.

Drupon•2m ago
I love how NanoClaw looks, but I simply can't bring myself to give Israeli software like this access to any of my systems.

Kubegraf – AI SRE that finds Kubernetes incident root causes in minutes

https://kubegraf.io/
1•Prajol•1m ago•1 comments

OWASP Vulnerable Web Applications Directory

https://vwad.owasp.org/
1•psiinon•2m ago•1 comments

Show HN: Apple Ads Toolkit – Run Your Apple Ads as GitOps Terraform

2•ndxone•5m ago•1 comments

Blue-blocked lighting related to better patient outcomes in psychiatric ward

https://www.theguardian.com/science/2026/mar/13/how-the-colour-of-light-could-be-used-to-treat-me...
2•alexandrehtrb•5m ago•0 comments

Clay Internal Pricing Memo

https://www.clay.com/blog/clay-pricing-memo-internal
1•AnhTho_FR•5m ago•0 comments

'Grief and the AI Split'

https://daringfireball.net/linked/2026/03/13/grief-and-the-ai-split
1•robenkleene•6m ago•0 comments

'Severe water stress': why desalination plants are the Gulf's greatest weakness

https://www.theguardian.com/world/2026/mar/11/severe-water-stress-why-desalination-plants-are-gul...
2•bookofjoe•6m ago•0 comments

Show HN: Agent wrapped, like Spotify wrapped

https://swarmpack.github.io/landing-page/
3•dheerusha_•9m ago•1 comments

NASA targets Artemis II crewed moon mission for April 1 launch

https://www.npr.org/2026/03/12/nx-s1-5746128/nasa-artemis-ii-april-launch
3•Brajeshwar•9m ago•0 comments

"Taxing the Threat Actors"

https://snowfroc.com/
1•mooreds•10m ago•0 comments

Vulnerabilities found in satellite receiver IDC SFX2100

https://www.abdulmhsblog.com/posts/sfx2100-vulns/
2•Harvesterify•10m ago•0 comments

Ask HN: Should HN update this site guideline?

3•throwaway23293•10m ago•2 comments

FontCraft – create a font from your handwriting directly in the browser

https://fontcraft.app
1•richardcrosby•11m ago•1 comments

Magic Behind Vite Task Cache

https://twitter.com/branchseer/status/2032464454747893976
2•branchseer•11m ago•0 comments

Notes on Twins Vol. 1 – Fifty Days

https://roryflint.substack.com/p/notes-on-twins-vol-1
1•mrroryflint•12m ago•0 comments

How Russia's new elite hit squad was compromised

https://theins.ru/en/inv/290235
2•mudil•12m ago•0 comments

Compress 100 images in batch to target size online

https://bulkimagecompressor.online
1•jaylew1997•14m ago•0 comments

Court Dismisses DISH's $25M IPTV Piracy Lawsuit Against UK Hosting Provider

https://torrentfreak.com/court-dismisses-dishs-25-million-iptv-piracy-lawsuit-against-uk-hosting-...
2•gslin•15m ago•0 comments

SRT vs. MOQT: Low-Latency Video Transport Comparison

https://www.red5.net/blog/srt-vs-moqt/
2•mondainx•15m ago•0 comments

Flightplanner: Spec-driven E2E testing for the age of AI agents

https://endor.dev/blog/introducing-flightplanner
2•ereslibre•18m ago•0 comments

Investigation: How Russian government assassin was undone by Google Translate

https://twitter.com/i/status/2032451007355953178
2•mudil•20m ago•0 comments

OpenViking – A Context DataBase for AI Agents

https://openviking.ai/
1•lab14•21m ago•1 comments

Show HN: Mesa – A collaborative canvas IDE built for agent-first development

https://www.getmesa.dev/
7•visekr•21m ago•0 comments

Show HN: UberSKILLS – Open-source Workbench for building AI agent SKILLS

https://github.com/uberskillsdev/uberskills
1•felltrifortence•22m ago•1 comments

Openreach trials 'pioneering' fibre-optic water leak detection

https://www.computerweekly.com/news/366640252/Openreach-trials-pioneering-fibre-optic-water-leak-...
1•beardyw•22m ago•1 comments

Iran War Impact on Helium

https://twitter.com/typesfast/status/2032468138768629959
1•tosh•22m ago•0 comments

Hunter Alpha – 1T parameter and 1M token context window AI model

https://openrouter.ai/openrouter/hunter-alpha
1•MaKey•23m ago•1 comments

How to Build an ML Framework in Rust, from Scratch, in a Weekend

https://www.erikkaum.com/blog/zml/
2•erikkaum•24m ago•1 comments

Show HN: A 3-line wrapper that enforces deterministic security for AI agents

1•tonyww•24m ago•0 comments

Meta Platforms: Lobbying, Dark Money, and the App Store Accountability Act

https://github.com/upper-up/meta-lobbying-and-other-findings
3•SilverElfin•24m ago•1 comments