Getting Started with Agent Verifier

March 31, 2026 Β· View on GitHub

Agent Verifier catches security issues, enforces coding standards, and validates AI agent patterns before your code ships. It works with Claude Code, Roo Code, Cursor, Windsurf, and 30+ other coding agents.

All analysis happens locallyβ€”your code never leaves your machine.


Quick Start

Get from zero to first verification in under 2 minutes.

1. Install the skill

Install to specific agents:

# Single agent
npx skills add aurite-ai/agent-verifier -a claude-code

# Multiple agents
npx skills add aurite-ai/agent-verifier -a claude-code -a roo -a <your_favorite_coding_agent>

Or install to all detected agents:

npx skills add aurite-ai/agent-verifier --all

πŸ’‘ Tip: Add -g for global installation across all projects: npx skills add aurite-ai/agent-verifier -g --all

2. Run verification

In your coding agent, say:

"verify agent"

3. Review the report

The agent generates a markdown report showing:

  • βœ… Passing checks β€” What's working well
  • ⚠️ Warnings β€” Potential issues to review
  • ❌ Issues β€” Problems that need fixing

That's it! For detailed guidance, continue to the tutorials.

4. Add custom rules with Kahuna MCP (optional)

For project-specific or organizational policies, Agent Verifier integrates with Kahuna MCP:

  1. Set up Kahuna in your project with a .kahuna/ directory
  2. Add custom rules to .kahuna/context-guide.md
  3. Agent Verifier automatically loads these rules during verification

Enterprise Features

Looking for team and organizational capabilities?

  • Centralized policy management β€” Define and enforce rules across all projects
  • Shared context pools β€” Consistent verification context for your organization
  • Administrative controls β€” Manage skills and policies at scale
  • CI/CD integration support β€” Run verification in your pipelines
  • Custom integrations β€” Tailored solutions for your workflow

Contact info@aurite.ai to learn more about enterprise options.


What Gets Checked?

Agent Verifier runs four types of checks:

CategoryWhat it checksCommand
SecurityHardcoded secrets, dependency vulnerabilities, input validation"verify agent security"
PatternsLoop safety, retry limits, tool consistency, context size"verify agent patterns"
QualityNaming conventions, code organization, documentation"verify agent quality"
LanguagePython type hints, TypeScript strict mode, Go error handling"verify agent language"

The full suite ("verify agent") runs all four. Use individual commands for faster, focused checks.


Supported Languages & Frameworks

Languages: Python, TypeScript/JavaScript, Go

Agent frameworks: LangGraph, CrewAI, AutoGen, LangChain, or custom agents using direct SDK calls

Agent Verifier automatically detects your project's language and framework.


Next Steps


Need Help?