惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Y
Y Combinator Blog
腾讯CDC
Recent Announcements
Recent Announcements
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Hugging Face - Blog
Hugging Face - Blog
H
Help Net Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
博客园_首页
D
DataBreaches.Net
P
Proofpoint News Feed
云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
月光博客
月光博客
Jina AI
Jina AI
Stack Overflow Blog
Stack Overflow Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
Vercel News
Vercel News
WordPress大学
WordPress大学
J
Java Code Geeks
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
U
Unit 42

Show HN

GitHub - astefanutti/shaderbang: Shebang for Shaders Show HN: Generate Claude Code Workflows using Spec Driven Development approach Show HN: AI agents for UK GDAD PCF roles and their skills The Two Pillars: Mixer Mode and Meta-Software in the Reorganization of Software Work After AI GitHub - JaiCode08/teleport-env What 1,000+ Harness Experiments Taught Me About Self-Improving Agents Show HN: Liiists, a Markdown-first, iOS and CLI list app SwiperTab – Get this Extension for 🦊 Firefox (en-US) GitHub - kouhxp/fftext: Summarize, explain, fact-check, or translate any text, URL, or file. No GPU. No cloud. One command GitHub - sweetpad-dev/sweetpad: Develop Swift/iOS projects using VSCode GitHub - dogmaticdev/IRON: IRON a.k.a. Intermediate Representation Object Notation is a Interpreter/Database that is used to create Programming Languages. GitHub - sjhalani7/vaen: Package your AI coding harness into a portable .agent file, and share it across repos, teams, & the community without ever having to copy-paste instructions, skills, MCP config, or secrets. Show HN: Gandalf the Grader Show HN: Citadeld – replay any CI failure locally from a single file GitHub - tdortman/cuSBF: High-Performance GPU Super Bloom Filter coral-ai/claude-code-token-xray at main · Coral-Bricks-AI/coral-ai GitHub - ulyssestenn/funes: Funes is a Git-based framework for LLM-managed knowledge work: an AI Librarian ingests raw sources, builds an interlinked Markdown knowledge base, and uses it to produce cited reports, analyses, and other outputs. GitHub - ThatXliner/gah: Git Add Hunk, built for agents to use GitHub - harmont-dev/harmont-cli: Command-line client for the Harmont CI platform GitHub - brooksmcmillin/mcp-authflow: OAuth 2.0 Authorization Server framework for MCP servers GitHub - javaid-codes/audit-supply-chain-agents GitHub - amorey/gochan: A small library of common channel architectures for Go, inspired by Rust GitHub - arifozgun/OpenGem: Free, Open-Source AI API Gateway with Gemini, OpenAI & Anthropic Compatibility in 1 file GitHub - Pranesh950/BioPetals: 🌸 Run BIOxAI models at home, BitTorrent-style. Fine-tuning and inference up to 10x faster than offloading GitHub - cnguyen14/bounty-doctor: Diagnose a GitHub bounty issue before you waste hours: detects honeypot scam repos, AI-bot attempt swarms, and stale contests. Show HN: CoreMCP – MCP Server for On-Prem DBs Show HN: KittyHTML – Render HTML/CSS as an inline image in your terminal GitHub - bingud/filemat: Web-based file manager Show HN: TruthLens – Free multi-signal deepfake image detector GitHub - apexlocal-jz/claude-usage-tray: Windows system-tray app showing your Claude Code rate-limit usage at a glance. Zero deps, ~300 lines of PowerShell. Cross-IDE (works regardless of VS Code, Cursor, plain terminal).
GitHub - PujanMirani/NakshGuard: On-premises proxy that c...
PujanMirani · 2026-06-16 · via Show HN

NakshGuard blocking a runaway agent loop

A reverse proxy that detects and blocks runaway loops in AI agent traffic before they consume excessive API tokens.

NakshGuard sits between your agents and the LLM API. It inspects each request, tracks per-agent session state, and applies a set of detection layers to identify looping behaviour — rapid repetition, unbounded context growth, and rate spikes — then blocks or logs them according to your configuration. It runs on-premises with no external dependencies; request data never leaves your network.

nakshguard 0.4.0 | tier=v1 shadow=false
target: https://api.openai.com | listening on :8080

Features

  • Reverse proxy for the OpenAI and Anthropic chat APIs (auto-detected)
  • Four detection layers: rate limit, hard token limit, repetition, context velocity
  • Per-agent session tracking and configurable thresholds
  • Shadow mode for safe calibration before enforcement
  • Fail-open: if the proxy fails, traffic passes through to the upstream
  • Sub-millisecond overhead, in-memory state, zero external dependencies
  • Hot config reload via SIGHUP

Install

Or with Docker:

docker build -t nakshguard .
docker run -p 8080:8080 -e OPENAI_API_KEY=sk-... nakshguard

Usage

Run the proxy:

OPENAI_API_KEY=sk-... ./nakshguard

Point your client at the proxy and identify each agent with a header:

client = openai.OpenAI(
    api_key=os.environ["OPENAI_API_KEY"],
    base_url="http://localhost:8080",
    default_headers={"X-Agent-ID": "billing_bot"},
)

Requests now flow through NakshGuard. It estimates request cost, runs the detection layers, and forwards to the upstream or blocks with HTTP 429.

Detection layers

layer triggers on
rate limit too many requests in a short window
hard limit session token total exceeds a ceiling
repetition identical requests repeated within the window
cve context size growing across consecutive requests

Context velocity (cve) detects the common error-append loop, where an agent appends its last error to the context and retries, growing the request each turn. Additional detection layers are available in the Pro and Enterprise tiers; see COMMERCIAL.md.

Shadow mode

By default the proxy starts in shadow mode: every layer runs and logs what it would have blocked, without blocking anything. Run it against real traffic, review the logs, then disable shadow mode in proxy.yaml:

global_settings:
  shadow_mode: false

Reload without restarting:

kill -HUP $(pgrep nakshguard)

Blocking can also be enabled per agent for incremental rollout.

Configuration

All settings live in proxy.yaml: the upstream target, rate limits, and per-agent thresholds. The most common change is llm_target to match your provider.

If the host is reachable by untrusted clients, set NAKSHGUARD_AUTH_KEY so that only requests carrying the matching X-Nakshguard-Auth header are accepted. Without it, anyone who can reach the port can use your upstream credentials.

Endpoints

path purpose
/v1/... proxied to the upstream LLM API
/health liveness and current mode
/stats per-agent session counters

Testing

go test -race -v             # unit tests
python3 tests/run_all_tests.py   # integration tests (needs shadow_mode: false)

Scaling

One instance tracks hundreds of agents in memory. To run multiple instances behind a load balancer, route by X-Agent-ID so each agent maps to a consistent instance. Shared-state clustering is on the roadmap

Pro and Enterprise

The open-source version handles the common loop patterns. Teams running many agents in production, or with on-prem compliance requirements, can get additional detection layers, priority support, and deployment help. Email pujanmirani2708@gmail.com if that's you.

License

AGPL-3.0. Free for internal use with no source-sharing obligation. Commercial licensing and the Pro/Enterprise detection layers are covered in COMMERCIAL.md.