Use this file to discover all available pages before exploring further.
Choose your platform to get started:
CLI
TypeScript
Python
Install
brew install nono
Run a sandboxed command
nono run --profile claude-code -- claude
Check what’s allowed
nono why --path /etc/passwd
Install
npm install nono-ts
Basic usage
import { CapabilitySet, apply, AccessMode } from 'nono-ts';const caps = new CapabilitySet();caps.allowPath('./data', AccessMode.Read);caps.blockNetwork();apply(caps);// Now sandboxed - only ./data is readable, no network
Install
pip install nono-py
Basic usage
from nono_py import CapabilitySet, AccessMode, applycaps = CapabilitySet()caps.allow_path("./data", AccessMode.READ)caps.block_network()apply(caps)# Now sandboxed - only ./data is readable, no network