nono

Sandbox any AI agent in seconds - zero setup, zero latency. (by nolabs-ai)

Nono Alternatives

Similar projects and alternatives to nono

  1. claude-code

    457 nono VS claude-code

    Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

  2. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  3. zed

    303 nono VS zed

    Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.

  4. opencode

    136 nono VS opencode

    The open source coding agent.

  5. hermes-agent

    99 nono VS hermes-agent

    The agent that grows with you

  6. container

    52 nono VS container

    A tool for creating and running Linux containers using lightweight virtual machines on a Mac. It is written in Swift, and optimized for Apple silicon.

  7. piclaw

    45 nono VS piclaw

    pi coding agent in a technicolor web trenchcoat

  8. yoloai

    AI agent sandboxing done right.

  9. agent-safehouse

    Sandbox your local AI agents so they can read/write only what they need

  10. pi

    17 nono VS pi

    AI agent toolkit: coding agent CLI, unified LLM API, TUI & web UI libraries, Slack bot, vLLM pods

  11. maki

    16 nono VS maki

    An efficient AI coding agent extendable by neovim like Lua plugins

  12. gondolin

    9 nono VS gondolin

    Experimental Linux microvm setup with a TypeScript Control Plane as Agent Sandbox

  13. Litterbox

    Somewhat Isolated Development Environments

  14. microsandbox

    🧱 easy fast local-first microVM runtime and library

  15. amika

    10 nono VS amika

    Infra for computer agents and software factories

  16. leaf

    Terminal Markdown previewer — GUI-like experience. (by RivoLink)

  17. bouvet

    5 nono VS bouvet

    Sandbox for Agents

  18. bVisor

    3 nono VS bVisor

    Embedded bash sandbox for agents, inspired by gVisor

  19. boxlite

    11 nono VS boxlite

    The micro-VM for AI agents — light enough to embed on your laptop, elastic enough to power an agentic cloud.

  20. librefang

    5 nono VS librefang

    LibreFang is an open-source agent operating system written in Rust. Live demo: https://flyio.librefang.ai

  21. agent-fetch

    Sandboxed HTTP client with SSRF protection for AI agents. Prevents DNS rebinding, blocks private IPs, and validates every connection — available as a Rust crate and npm package.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better nono alternative or higher similarity.

nono discussion

Log in or Post with

nono reviews and mentions

Posts with mentions or reviews of nono. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2026-08-09.
  • Docker Sandboxes – Disposable, isolated sandboxes for AI agents
    47 projects | news.ycombinator.com | 9 Aug 2026
    This has both features and is open-source: https://nono.sh/

    It's an OS-level sandbox, though. It doesn't launch VMs or containers for sandboxing purposes; it uses whatever sandboxing features your host kernel offers.

  • OpenChamber: An Agentic Development Environment
    6 projects | news.ycombinator.com | 9 Aug 2026
  • Nono: Sandbox any AI agent in seconds – zero setup, zero latency
    1 project | news.ycombinator.com | 4 Aug 2026
  • Pi's Minimalism Is Its Advantage
    22 projects | news.ycombinator.com | 4 Aug 2026
    You might appreciate https://nono.sh/

    Its very easy to use and has a pre-made profile for pi. Just do something like `alias pi="nono run -v --profile pi --allow-cwd -- /opt/homebrew/bin/pi"` in your shell.

  • Git worktrees are not an isolation boundary for coding agents
    1 project | news.ycombinator.com | 30 Jul 2026
    Git worktrees are a great isolation boundary for _changes_, but not behavior. If you are trying to actually run autonomous agents securely you need something that lives outside the harness that actually blocks actions in a way that can't be prompted around.

    We use nono [1] for this internally, essentially blocking any actions we don't want agents to be able to do without human approval. Our developers can just run `task claude` or whatever their harness is) and it pre-wraps it with our profile that enforces:

    - Filesystem: read/write only the worktree plus dev-tooling dirs (Go, Doppler, Graphite caches, git common dir); explicitly no Docker socket and it can't edit its own Claude settings files (so it can't loosen its own permissions).

    - Network: outbound only to an allowlist — Anthropic, Doppler, Go module proxies, our dev environments while still allowing binding local dev-server ports.

    - GitHub: read anything in the org, and create/edit PRs and push branches — but it cannot merge, close, review, or comment on PRs, delete branches, touch repo settings/secrets, manage auth, oruse raw gh api. Those are all "human-only". GitHub tokens are never exposed to the agent; they're injected by a proxy so it can't read or exfiltrate them.

    This is great because it is harness agnostic - any developer can use whatever harness they want as long as they port the nono profile to it, as it will enforce all of the above in a way that is not tied to a specific harness implementation

    [1] https://github.com/nolabs-ai/nono

  • AI Coding at Home Without Going Broke
    9 projects | news.ycombinator.com | 13 Jun 2026
    If you don't want to do that, don't use a VM. I like nono:

    https://github.com/always-further/nono

  • Claude Fable is relentlessly proactive
    13 projects | news.ycombinator.com | 11 Jun 2026
  • Anthropic, please ship an official Claude Desktop for Linux
    14 projects | news.ycombinator.com | 7 Jun 2026
    There are a number of utilities for this. I use jai: https://jai.scs.stanford.edu/ but also have seen nono: https://github.com/always-further/nono smolvm: https://github.com/smol-machines/smolvm zerobox https://github.com/afshinm/zerobox and matchlock https://github.com/jingkaihe/matchlock

    They all have pros and cons. Pick the one that suits you best. Then you're also agent harness flexible (I use opencode).

  • Ask HN: What is your (AI) dev tech stack / workflow? (June 2026)
    33 projects | news.ycombinator.com | 5 Jun 2026
    I'm currently using herde[1] to handle/supervise multiple agents (with some patches I need to try to upstream) along with Nono[2] for sandboxing. This sandboxing approach avoids use of a microVM, which lets me use tooling I already have installed inside the sandbox. The downside is getting all the policies correct as it seems every project needs some new type of access, though Nono does try to make policy writing easy.

    I've been considering switching my approach to using a microVM through microsandbox[3]. The pro of this approach is you can essentially skip the policies and rely on the security of the VM boundary. The negative is that now you've lost all your installed tools, so you need to either provision at runtime or build something (like an image) beforehand to match your dev environment.

    I still don't know which is less maintenance. And while I think herde is pretty well thought out, I do think about something that works outside the terminal may be nicer.

    [1] https://github.com/ogulcancelik/herdr

    [2] https://github.com/always-further/nono

    [3] https://github.com/superradcompany/microsandbox

  • Why TUIs Are Back
    12 projects | news.ycombinator.com | 3 May 2026
    Try an external sandboxing tool. When you need to adjust the sandbox, close the agent, launch it with the new params, and resume the session. It doesn't take long to arrive at a stable configuration; for me it's mostly about rw access to the CWD, read access to other local repos, and access to Nix. Other than that I can just use YOLO modes and not sweat it.

    I briefly evaluated a bunch (had an LLM make a list of those that satisfied some basic criteria, then visited READMEs and websites) and chose nono. No regrets: https://nono.sh/

  • A note from our sponsor - SaaSHub
    www.saashub.com | 10 Aug 2026
    SaaSHub helps you find the best software and product alternatives Learn more →

Stats

Basic nono repo stats
25
3,518
9.9
6 days ago

nolabs-ai/nono is an open source project licensed under Apache License 2.0 which is an OSI approved license.

The primary programming language of nono is Rust.


Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com

Did you know that Rust is
the 3rd most popular programming language
based on number of references?