Skip to main content

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.

Quick Install

zenable install auggie
See the CLI command reference for more options.
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.
The below is a minimal example. Consider using the quick install command to handle this automatically.
Use the Auggie CLI to add the Zenable MCP server:
auggie mcp add zenable --transport http --url https://mcp.zenable.app/
To verify the installation:
auggie mcp list
To remove:
auggie mcp remove zenable
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.
Hooks run automatically to check for conformance issues. The quick install command sets this up for you.
Place the following configuration in ~/.augment/settings.json (global) or .augment/settings.json (project):
{
  "hooks": {
    "SessionStart": [
      {
        "hooks": [
          {
            "type": "command",
            "command": "zenable hook"
          }
        ]
      }
    ],
    "Stop": [
      {
        "hooks": [
          {
            "type": "command",
            "command": "zenable hook"
          }
        ]
      }
    ]
  }
}
This uses Auggie’s hook system to run conformance checks at session boundaries.