Skip to main content
NanoClaw is an open-source agent runtime that isolates every agent in its own Docker container. Hogpass is an open-source credential and policy layer for AI agents. Together, they give you the full stack: runtime isolation, credential isolation, and policy enforcement.

The full stack

NanoClaw solves the problem of agents escaping their sandbox. Hogpass solves the problem of agents misusing the access they’ve been given. You need both.

How it works

NanoClaw runs each agent in a Docker container. Hogpass runs as a sidecar (or shared service) that acts as the HTTP gateway for all agent traffic. When NanoClaw spawns an agent container, it configures the agent to route HTTP traffic through Hogpass’s gateway.
  1. NanoClaw creates a Docker container for the agent
  2. The container’s HTTP_PROXY / HTTPS_PROXY environment variables point to Hogpass’s gateway
  3. The agent makes normal HTTP requests. It doesn’t know Hogpass exists
  4. Hogpass checks rules (block/rate-limit), injects credentials, and forwards the request
  5. The response flows back to the agent

Setup

Prerequisites

1. Start Hogpass

2. Configure agents and credentials in Hogpass

You can do this through the dashboard at localhost:10254, or automate it with the Hogpass CLI:

3. Configure NanoClaw to route through Hogpass

When NanoClaw spawns agent containers, configure them to use Hogpass as their HTTP proxy. The agent containers need:
  • HTTP_PROXY and HTTPS_PROXY pointing to Hogpass’s gateway
  • The Hogpass CA certificate for HTTPS interception
  • A Proxy-Authorization header with the agent’s access token
If you’re using the Node.js SDK, applyContainerConfig() handles all of this automatically:

One-line install (Cloud)

If you’re using Hogpass Cloud, the dashboard provides a one-line install command that clones NanoClaw, configures your .env with the correct Cloud URL and API key, installs dependencies, and sets up the CLI:
After the script completes, follow the on-screen instructions to run the /setup wizard inside the NanoClaw directory.

Migrating from self-hosted to Cloud

If you’re already running NanoClaw with a self-hosted Hogpass instance and want to move to Cloud, use the migration script:
The migration script:
  1. Exports secrets from your local Hogpass instance
  2. Updates your CLI config to point at Hogpass Cloud
  3. Finds all NanoClaw installations on your machine (via launchd, systemd, or common directories)
  4. Updates each NanoClaw .env with the Cloud URL and API key
  5. Restarts NanoClaw services so they route through Cloud
After migration, reconnect your OAuth app integrations (Gmail, GitHub, etc.) in the Cloud dashboard since OAuth tokens are not transferable between instances.

Per-agent policies

Since each NanoClaw agent gets its own Hogpass agent identity, you can set different rules per agent:
  • Your “email-agent” can read emails but not delete them
  • Your “code-agent” can access GitHub but not Slack
  • Your “research-agent” has read-only access to everything, rate-limited to 100 requests per hour
See Rules for the full details on setting up policies.