I Built a Browser SDK That Detects LLM Agents. Here's How It Works.
The article discusses the development of Nyasa, a browser SDK designed to detect AI agents alongside traditional bots and humans. It highlights the limitations of existing bot detection systems and introduces a three-actor model that includes authorized AI agents. Nyasa aims to improve user experience by allowing legitimate AI agents to bypass traditional bot detection measures.
- ▪Nyasa classifies sessions as Human, AuthorizedAgent, or UnauthorizedBot.
- ▪Existing bot detection systems fail to recognize AI agents that behave like humans.
- ▪The SDK uses 24 signals across behavioral, fingerprint, and network layers to assess user sessions.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 679755) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Devansh Posted on May 22 • Originally published at devanshtiwari.com I Built a Browser SDK That Detects LLM Agents. Here's How It Works. #security #ai #typescript #javascript Every bot detection system I've seen works with two actors: human or bot. Block the bot, let the human through. That model is wrong in 2026. There is a third actor: AI agents acting legitimately on behalf of real users. Shopping assistants. Automated onboarding flows. Fintech integrations.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).