Private Beta

The circuit breaker for your AI agents

Vigil sits between your autonomous agent and the real world โ€” blocking dangerous actions, logging everything, and escalating to humans when it matters.

No spam. Just early access when we launch.

How it works

Your agent never touches Stripe or your database directly. Every action goes through Vigil first.

๐Ÿค–
Your
AI Agent
โ†’
๐Ÿ›ก๏ธ
Vigil
API Gateway
โ†’
๐ŸŒ
The
Real World
200 Passed โ€” Action allowed
403 Blocked โ€” Rule violated
202 Escalated โ€” Waiting for human

Built for teams deploying agents in production

โšก

Deterministic Rules Engine

No AI guessing. Pure logic: amount limits, rate limits, SQL injection blocks, PII filters. Always predictable.

๐Ÿ“ผ

Complete Audit Trail

Every action logged to ClickHouse โ€” what the agent tried, which rule fired, and the outcome. Full forensic replay.

๐Ÿ™‹

Human-in-the-Loop

Agent wants to charge $600? Vigil pauses, pings Slack or Telegram, waits for your Approve / Reject before continuing.

๐Ÿ“Š

LLM Cost Monitoring

Track token usage and cost per agent, per action. Know exactly how much each autonomous decision costs.

๐Ÿ”Œ

API-First

One POST request from your agent. Works with any framework โ€” LangChain, AutoGen, custom โ€” regardless of LLM provider.

๐Ÿณ

Self-Hosted

Your data stays in your infrastructure. Deploy with docker-compose in minutes. No vendor lock-in.

Two lines to protect an agent action

Before executing any real-world action, your agent calls Vigil's check endpoint.

# Before: agent calls Stripe directly โ€” no safety net
# After: agent asks Vigil first

POST https://vigilgate.tech/api/v1/check
X-Api-Key: your-api-key

{
  "agent_id": "billing-agent-v1",
  "target":   "stripe.charge",
  "action":   "create",
  "payload": { "amount": 150.00, "currency": "USD" }
}

// Rule: amount_limit $100 โ†’ BLOCKED
โ† 403 { "status": "blocked", "reason": "amount 150.00 exceeds limit 100.00 USD" }

// Rule: require_approval $500 โ†’ ESCALATED  
โ† 202 { "status": "escalated", "hitl_id": "550e8400-..." }

// No rules triggered โ†’ PASSED
โ† 200 { "status": "passed" }

Who is Vigil for?

Whether you're a developer shipping agents or a person using AI assistants daily.

B2B ยท Teams

Developers & AI Agencies

You're building autonomous agents for clients or internal use and need a safety layer before go-live.

  • Configure rules via API or SQL
  • Slack/Telegram HITL escalations
  • Full ClickHouse audit trail
  • Multi-agent, multi-tenant
  • Self-hosted in your infra
B2C ยท Personal

Power Users & Families

You use AI assistants (n8n, Zapier AI, ChatGPT Actions) and want guardrails without writing code.

  • No-code rule builder (coming soon)
  • Block purchases over your limit
  • Parental controls for kids' AI
  • Telegram bot for approvals
  • Monthly spend dashboard

Simple, transparent pricing

Start free. Scale when your agents do.

Free
$0/mo
For experimenting and side projects
  • 100 checks / month
  • 1 agent
  • All rule types
  • 7-day audit log
  • Community support
Get Started
Personal
$9/mo
For individuals with AI assistants
  • Unlimited checks
  • 1 agent
  • Telegram notifications
  • 30-day audit log
  • No-code rule builder
Join Waitlist
Family
$19/mo
For households with multiple AI users
  • Unlimited checks
  • 5 agents
  • Shared spend dashboard
  • Parental control templates
  • 90-day audit log
Join Waitlist
Enterprise
Custom
Self-hosted or managed, SLA, SSO
  • Unlimited everything
  • Self-hosted deployment
  • SSO / SAML
  • Custom rule types
  • Dedicated support
Contact Us