~/bevigil/README.md

# Vigil — agent-aware data plane

Vigil is the agent-aware data plane that sits between AI agents and the systems they touch (databases, APIs, services). It speaks both languages: it knows what agents are trying to do, and it speaks SQL, HTTP, and gRPC to the backend.

Open source. Single binary. Free for individuals. Version v0.1.0. Source: https://github.com/constantinexanthos/vigil


## The problem

Today's infrastructure (Postgres, Redis, Cloudflare rate limiters, AWS API Gateway) was tuned for human-shaped traffic. Agents shift the traffic shape from 1 user → 1 request → 1 response to 1 agent goal → 5,000 sub-requests → many of them redundant. Legacy infrastructure interprets agent traffic as a DDoS attack.

### Humans vs. agents


## What it does

  1. Per-agent identity. Every agent gets a stable ID issued by Vigil. The proxy attaches it to every request. Now the database, the logs, and the rate limiter can all distinguish “Claude doing the refactor” from “Cursor running tests” from “your production web traffic.”
  2. Per-agent rate limiting. Token-bucket throttling that knows which agent is which. The analytics agent gets 100 q/sec, the refactor agent gets 20 q/sec. They don’t starve each other and they don’t starve production.
  3. Fan-out coalescing. When an agent fires the same query repeatedly (which they do constantly), Vigil deduplicates and serves cached results. The single biggest cost-saver: cuts agent infrastructure costs 40–80% in early benchmarks.
  4. Blast-radius control (coming next). Coming in v0.1.0e. “Agent X cannot DELETE from production. Agent Y cannot touch the migrations folder. Agent Z requires human approval before touching auth.” Policies enforced at the proxy, not in the agent’s prompt where it can be jailbroken out of.
  5. Audit trail. Every action — what agent, what request, what response, was it cached, was it rate-limited, was it blocked by policy — is signed and logged. When something does go wrong, you can replay it. When auditors come, you have answers.

## Scenario: 10-person startup, 5 coding agents

### Without Vigil

### With Vigil

Not glamorous. Deeply useful.


## Where we sit

Vigil sits in the request path between agents and your systems. Orchestration, observability, and identity tools sit adjacent to it — they spawn agents, watch what they did, and know who they are, but none of them sit in line on every request. Different layer, different job.

in the request path, not adjacent to it.


## Get the binary

Vigil ships as a single Go binary. Drop it between an agent and your data store, point it at a config file, watch the audit trail land. Free for individuals; paid tiers when you need team policy and cloud retention.

Source: https://github.com/constantinexanthos/vigil
Proxy quickstart: https://github.com/constantinexanthos/vigil/tree/main/proxy