> ## 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.

# Quickstart

> Get started with nono in 2 minutes

Choose your platform to get started:

<Tabs>
  <Tab title="CLI">
    **Install**

    ```bash theme={null}
    brew install always-further/tap/nono
    ```

    **Run a sandboxed command**

    ```bash theme={null}
    nono run --profile claude-code -- claude
    ```

    **Check what's allowed**

    ```bash theme={null}
    nono why --path /etc/passwd
    ```
  </Tab>

  <Tab title="TypeScript">
    **Install**

    ```bash theme={null}
    npm install @anthropic-ai/nono
    ```

    **Basic usage**

    ```typescript theme={null}
    import { CapabilitySet, apply, AccessMode } from '@anthropic-ai/nono';

    const caps = new CapabilitySet()
      .allowPath('./data', AccessMode.Read)
      .blockNetwork();

    apply(caps);
    // Now sandboxed - only ./data is readable, no network
    ```
  </Tab>

  <Tab title="Python">
    **Install**

    ```bash theme={null}
    pip install nono
    ```

    **Basic usage**

    ```python theme={null}
    import nono

    caps = nono.CapabilitySet()
    caps.allow_path("./data", nono.AccessMode.READ)
    caps.block_network()

    nono.apply(caps)
    # Now sandboxed - only ./data is readable, no network
    ```
  </Tab>
</Tabs>

## Next Steps

<CardGroup cols={2}>
  <Card title="CLI Guide" icon="terminal" href="/cli/getting_started/quickstart">
    Full CLI usage guide with examples
  </Card>

  <Card title="Security Model" icon="shield" href="/cli/internals/security-model">
    Understand how nono protects your system
  </Card>
</CardGroup>
