Protect Your AI Coding Privacy 守护你的 AI 编程隐私

An open-source MITM proxy that automatically redacts sensitive data from your AI coding assistant requests — and restores them in responses. 一个开源 MITM 代理,自动脱敏 AI 编程助手请求中的敏感数据,并在响应中还原。

VibeGuard Protected

Why VibeGuard? 为什么选择 VibeGuard?

Built for developers who care about privacy without sacrificing productivity. 为重视隐私又不想牺牲效率的开发者而生。

Zero Config 零配置

Works out of the box with sensible defaults. Install and run — no YAML editing required. 开箱即用,合理的默认配置。安装即运行,无需手动编辑配置文件。

Process-Level Proxy 进程级代理

Only intercepts traffic from targeted processes. Your system network stays untouched. 仅代理目标进程流量,不影响系统网络。

Hot Reload Rules 热重载规则

Edit rules via the admin UI — changes apply instantly without restarting the proxy. 通过管理面板修改规则,无需重启即可生效。

Encrypted Storage 加密存储

Keywords and placeholder mappings are encrypted at rest using your local CA key. 关键词和映射使用本地 CA 密钥加密存储。

Multi-Layer Detection 多层检测

Rule lists + keyword matching + regex + optional NER — layered detection for maximum coverage. 规则列表 + 关键词 + 正则 + 可选 NER,多层识别全面覆盖。

Admin Dashboard 管理面板

Real-time audit log, visual analytics, rule management — all from your browser. 实时审计日志、可视化分析、规则管理 — 尽在浏览器中。

How It Works 工作原理

VibeGuard sits between your IDE and the AI API, transparently redacting and restoring data. VibeGuard 介于 IDE 和 AI API 之间,透明地脱敏和还原数据。

Your IDE / CLI 你的 IDE / CLI
Claude / Cursor / Codex
VibeGuard Proxy
redact ↔ restore 脱敏 ↔ 还原
secret_key → __VG_a3f1
AI API
Claude / GPT / Gemini
Before — Original Request 脱敏前 — 原始请求
{
"prompt": "Fix the bug in ProjectAlpha
using API key sk-4f9a...x7z2
on server 192.168.1.100"
}
After — Redacted Request 脱敏后 — 安全请求
{
"prompt": "Fix the bug in __VG_proj_a3f1
using API key __VG_key_9d2e
on server __VG_ip_7bc4"
}

Get Started in 3 Steps 3 步上手

1

Install 安装

One-line install for macOS and Linux. macOS 和 Linux 一行命令安装。

curl -fsSL https://vibeguard.top/install | bash

Windows (PowerShell): Windows(PowerShell):

powershell -NoProfile -ExecutionPolicy Bypass -Command "irm https://vibeguard.top/install.ps1 | iex"
2

Start & Trust 启动 & 信任证书

Start the proxy and trust the local CA certificate. 启动代理并信任本地 CA 证书。

vibeguard start && vibeguard trust
3

Use 使用

Launch your AI tool through VibeGuard's process launcher. 通过 VibeGuard 进程启动器运行你的 AI 工具。

vibeguard claude

Uninstall 卸载

Remove VibeGuard from your machine. 从本机移除 VibeGuard。

curl -fsSL https://vibeguard.top/uninstall | bash

Windows (PowerShell): Windows(PowerShell):

powershell -NoProfile -ExecutionPolicy Bypass -Command "& ([ScriptBlock]::Create((irm https://vibeguard.top/uninstall.ps1))) -Purge"