I Built an AI Agent Risk Auditor for Agentic Repositories
James Bridges developed Hermes Guard, an AI agent risk auditor for repositories. This tool scans local repositories for risky automation patterns and generates detailed reports. It is designed to be safe and operates without executing any repository code.
- ▪Hermes Guard scans for risky AI-agent automation patterns in local repositories.
- ▪The tool produces evidence-backed Markdown and JSON reports for review.
- ▪It is designed to be safe to run without executing any repository code.
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 === 3910439) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } James Bridges Posted on May 17 • Originally published at github.com I Built an AI Agent Risk Auditor for Agentic Repositories #hermesagentchallenge #devchallenge #agents #ai Hermes Agent Challenge Submission GitHub repo: https://github.com/jbridges82/hermes-guard Live demo: https://hermes-guard.vercel.app What I Built I built Hermes Guard, a local-first risk auditor for repositories touched by AI agents.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).