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

# Auggie

## Quick Install

```bash theme={null}
zenable install auggie
```

<Note>See the [CLI command reference](/integrations/zenable/commands#install) for more options.</Note>

**That's it! You're all set.** Start using Zenable's conformance checking in Auggie.

This installs both the MCP server and Auggie hooks for real-time code checking.

***

<Accordion title="Advanced: Manual MCP Configuration" icon="wrench">
  <Note>The below is a minimal example. Consider using the quick install command to handle this automatically.</Note>

  Use the Auggie CLI to add the Zenable MCP server:

  ```bash theme={null}
  auggie mcp add zenable --transport http --url https://mcp.zenable.app/
  ```

  To verify the installation:

  ```bash theme={null}
  auggie mcp list
  ```

  To remove:

  ```bash theme={null}
  auggie mcp remove zenable
  ```

  <Warning>We only recommend this manual approach if you can't use `zenable install`. Otherwise, `zenable install` is much safer and can handle configuration upgrades over time, handles merges with existing configs, performs backups and logging in case of issues, and more.</Warning>
</Accordion>

<Accordion title="Advanced: Manual Hook Configuration" icon="bolt">
  <Note>Hooks run automatically to check for conformance issues. The quick install command sets this up for you.</Note>

  Place the following configuration in `~/.augment/settings.json` (global) or `.augment/settings.json` (project):

  ```json theme={null}
  {
    "hooks": {
      "SessionStart": [
        {
          "hooks": [
            {
              "type": "command",
              "command": "zenable hook"
            }
          ]
        }
      ],
      "Stop": [
        {
          "hooks": [
            {
              "type": "command",
              "command": "zenable hook"
            }
          ]
        }
      ]
    }
  }
  ```

  This uses [Auggie's hook system](https://docs.augmentcode.com/cli/hooks?utm_source=zenable_docs\&utm_medium=web) to run conformance checks at session boundaries.
</Accordion>
