> ## Documentation Index
> Fetch the complete documentation index at: https://nono.sh/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# OpenClaw

> Sandboxing OpenClaw AI coding agent with nono

[OpenClaw](https://openclaw.dev) is an AI coding agent that reads your codebase, writes files, and executes commands in your terminal.

## Quick Start

```bash theme={null}
nono run --profile nolabs-ai/openclaw -- openclaw
```

Install the registry pack first if you haven't already:

```bash theme={null}
nono pull nolabs-ai/openclaw
```

## What the Profile Grants

* **Read+write access** to the current working directory
* **Read+write access** to `~/.openclaw` (agent state and local config)
* **Read+write access** to `~/.config/openclaw` (configuration)
* **Network access** enabled (required for AI provider API calls)
* **Interactive mode** enabled for the terminal UI

## Custom Profile

To extend the OpenClaw profile with additional permissions:

```json theme={null}
{
  "extends": "openclaw",
  "meta": { "name": "my-openclaw", "version": "1.0.0" },
  "filesystem": {
    "read": ["$HOME/shared-libs"]
  }
}
```

Then run:

```bash theme={null}
nono run --profile my-openclaw -- openclaw
```

See [Security Profiles](/docs/cli/features/profiles-groups) for details on profile format and precedence rules.
