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

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
G
Google Developers Blog
V
V2EX
美团技术团队
H
Help Net Security
月光博客
月光博客
爱范儿
爱范儿
Engineering at Meta
Engineering at Meta
The Cloudflare Blog
U
Unit 42
大猫的无限游戏
大猫的无限游戏
Recent Announcements
Recent Announcements
A
About on SuperTechFans
博客园 - Franky
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium
人人都是产品经理
人人都是产品经理
博客园 - 司徒正美
MyScale Blog
MyScale Blog
B
Blog
雷峰网
雷峰网
Y
Y Combinator Blog
云风的 BLOG
云风的 BLOG
T
The Blog of Author Tim Ferriss

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - PujanMirani/NakshGuard: On-premises proxy that c...
PujanMirani · 2026-06-16 · via Hacker News: 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.