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

# Installation

> One command to install. Dashboard opens automatically.

## 30 Seconds to Protected

<Tabs>
  <Tab title="macOS / Linux">
    ```bash theme={null}
    curl -fsSL https://get.panguard.ai | bash
    ```

    That's it. Panguard installs, connects to your AI agents, and opens the dashboard.
  </Tab>

  <Tab title="Windows">
    ```powershell theme={null}
    irm https://get.panguard.ai/windows | iex
    ```

    Run in PowerShell. Panguard installs, connects to your AI agents, and opens the dashboard.
  </Tab>

  <Tab title="npm (all platforms)">
    ```bash theme={null}
    npm install -g panguard && pga up
    ```

    Requires [Node.js 20+](https://nodejs.org/).
  </Tab>
</Tabs>

After install, your browser opens to `http://127.0.0.1:9100` with the Guard dashboard.

***

## What Just Happened?

The installer did 3 things:

1. **Installed Panguard** — CLI + 768 ATR detection rules (OWASP Agentic Top 10: 10/10 covered)
2. **Connected your AI agents** — auto-detected Claude Code, Cursor, OpenClaw, and [13 more platforms](/guides/claw-setup)
3. **Started Guard** — 24/7 monitoring with dashboard at `http://127.0.0.1:9100`

You're now protected. Every MCP skill your AI agents use is being monitored in real-time.

***

## Verify It's Working

```bash theme={null}
panguard --version
```

```
1.8.26
```

```bash theme={null}
panguard guard status
```

You should see Guard running in learning mode (day 1/7).

***

## What's Next

<CardGroup cols={2}>
  <Card title="Scan Your AI Skills" icon="magnifying-glass" href="/quickstart">
    Audit all installed MCP skills for prompt injection, credential theft, and more.
  </Card>

  <Card title="Understand Your Score" icon="chart-line" href="/concepts/security-score">
    Your A-F security grade and how to improve it.
  </Card>

  <Card title="Set Up Notifications" icon="bell" href="/guides/notifications-setup">
    Get alerts via Telegram, Slack, or email when threats are detected.
  </Card>

  <Card title="Platform Setup Guide" icon="bolt" href="/guides/claw-setup">
    Manual setup for OpenClaw, NemoClaw, ArkClaw, and other platforms.
  </Card>
</CardGroup>

***

## System Requirements

|             | Minimum                               |
| ----------- | ------------------------------------- |
| **OS**      | macOS 12+, Ubuntu 20.04+, Windows 10+ |
| **Node.js** | 20+                                   |
| **Disk**    | 200 MB                                |
| **Memory**  | 512 MB (1 GB for Guard)               |

<Accordion title="Platform support details">
  | Feature           | macOS | Linux | Windows |
  | ----------------- | ----- | ----- | ------- |
  | **Skill Auditor** | Full  | Full  | Full    |
  | **Scan**          | Full  | Full  | Partial |
  | **Guard**         | Full  | Full  | Full    |
  | **Threat Cloud**  | Full  | Full  | Full    |

  Windows supports all core features. Some OS-level network monitoring is limited compared to macOS/Linux.
</Accordion>

<Accordion title="Install from source (contributors)">
  ```bash theme={null}
  git clone https://github.com/panguard-ai/panguard-ai.git
  cd panguard-ai
  pnpm install && pnpm build
  ./bin/panguard --help
  ```

  Requires [pnpm](https://pnpm.io/) 10+ and Node.js 20+.
</Accordion>

<Accordion title="Uninstall">
  <Tabs>
    <Tab title="npm">`bash npm uninstall -g panguard `</Tab>
    <Tab title="curl install">`bash rm "$(which panguard)" `</Tab>
  </Tabs>
</Accordion>
