Traffic history
Local overview of observed traffic history inside the self-hosted environment.

Skilful Fox
Independent research studio for applied AI systems
GreyFox
GreyFox intercepts and routes local AI application traffic, allowing you to inspect, debug, and enforce policies on LLM data streams. It keeps the control plane self-hosted and telemetry-free, without sending operational data to the cloud.
Interface
GreyFox is designed as a self-hosted control surface for practical AI traffic workflows. The UI exists to help operators reason about local routing, users, providers, and usage signals without sending operational data outside the container boundary.
More interface surfaces
How it works
GreyFox sits between your application and an OpenAI-compatible provider only when you point traffic at its local proxy endpoint. The application still decides when to call AI.
Local proxy integration
GreyFox runs as a local proxy server. Instead of sending requests directly to an OpenAI-compatible provider, point your LLM client at the GreyFox endpoint and keep control inside your own Docker environment.
TypeScript
Base URL swap// Before: direct API call
// const openai = new OpenAI({
// baseUrl: 'https://api.openai.com/v1'
// });
// After: routed through GreyFox for local control
const openai = new OpenAI({
baseUrl: 'http://localhost:XXXX/v1'
}); Use your actual GreyFox host and port in place of localhost:XXXX. The same pattern applies to any OpenAI-compatible client that supports a configurable base URL.
Install from the command line
The package is published through GitHub Container Registry.
$ docker pull ghcr.io/skillful-fox-studio/grey-fox-community:0.1.1GreyFox only sees requests that are explicitly routed through its proxy endpoint. No hosted GreyFox control plane is involved, and no telemetry is sent outside your self-hosted Docker environment.
Editions
GreyFox now has a public Community Edition and a released Essential subscription. Pro is in development for deeper policy, audit, and quota-control workflows.
A public, telemetry-free baseline for inspecting local AI traffic and controlling simple proxy behavior inside your own environment. Version 0.1.1 is a maintenance patch focused on UI template and styling refinements.
Community Edition Scope
A released paid edition for repeatable local AI routing setups, richer request shaping, and deep traffic analytics views.
Included in Essential 0.2.1
Repository access is provided by private GitHub invite after purchase.
Advanced edition
An advanced edition in development for audit-heavy local AI traffic workflows, programmable routing, and shared policy artifacts.
Development scope
Design principles
Workflow direction