AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Agent Verifier

mcp-aurite-ai-agent-verifier ยท by Aurite-ai

๐Ÿ” Agent Verifier is a coding agent skill that verifies code against organizational policies, code quality patterns, security requirements, and framework best practices โ€” before code ships. Works with Claude Code, Cursor, Windsurf, and 30+ agents.

โ€” No reviews yet
0 installs
0 views
โ€” viewโ†’install

Install

$ agentstack add mcp-aurite-ai-agent-verifier

โœ“ scanned ยท โœ“ verified, works with Claude Code, Cursor, and more.

Security review

โœ“ Passed

No issues found. Passed automated security review. ยท v0.1.0 How review works โ†’

  • โœ“ Prompt-injection patterns
  • โœ“ Secret / credential exfiltration
  • โœ“ Dangerous shell & filesystem operations
  • โœ“ Untrusted network calls
  • โœ“ Known-malicious package signatures

What it can access

  • โœ“ Network access No
  • โœ“ Filesystem access No
  • โœ“ Shell / process execution No
  • โœ“ Environment & secrets No
  • โœ“ Dynamic code execution No

From automated source analysis of v0.1.0. โ€œUsedโ€ means the capability is present in the source โ€” more access means more to trust, not that itโ€™s unsafe.

View the full security report โ†’

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-aurite-ai-agent-verifier)

Reliability & compatibility

โœ“ Security review passed
0 installs to date
โ€” no reviews yet
โ— 3d ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work โ†’
Are you the author of Agent Verifier? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

๐Ÿ” Aurite Agent Verifier

Catch security issues, enforce standards, and validate agent patterns โ€” before code ships.

[](https://github.com/aurite-ai/agent-verifier/stargazers) [](LICENSE) [](https://github.com/aurite-ai/agent-verifier/pulls) [](https://github.com/aurite-ai/agent-verifier/commits) [](https://doi.org/10.5281/zenodo.22125316)

Works with Claude Code ยท Cursor ยท Windsurf ยท Roo Code ยท Codex ยท 30+ more


Why?

AI coding agents are powerful โ€” but they skip linting, ignore security basics, and hallucinate tool calls. Code reviews catch some of this, but not consistently.

Agent Verifier is an AI agent skill that acts as an automated reviewer. It checks for:

  • ๐Ÿ”’ Security gaps โ€” hardcoded secrets, missing input validation, exposed stack traces
  • ๐Ÿ”„ Dangerous agent patterns โ€” infinite loops, unbounded retries, hallucinated tools
  • ๐Ÿ“ Code quality โ€” naming, docs, error handling, magic values
  • ๐Ÿ๐ŸŸฆ๐Ÿน Language-specific issues โ€” Python type hints, TypeScript strict mode, Go error handling

Install it once. It runs every time you say "verify agent".


Author's Note

> ๐Ÿ’ก If Agent Verifier looks interesting to you โ€” or saves you a prod bug โ€” consider giving it a โญ. It's the only signal GitHub gives us that this is worth maintaining and adding more capabilities to this repo.

> ๐Ÿค Contributions and feature requests welcome โ€” open an issue or PR any time.

What You Get

Run "verify agent" in your coding assistant (eg. Claude Code, Cursor or others) and get a structured report:

โœ… 8 checks passed | โš ๏ธ 3 warnings | โŒ 2 issues

โŒ Hardcoded API key at config.py:12
  โ†’ Move to environment variable

โŒ Hallucinated tool reference: execute_sql
  โ†’ Tool referenced in prompts but not defined

โš ๏ธ Unbounded loop at agent/loop.py:45
  โ†’ Add MAX_ITERATIONS constant

โš ๏ธ System prompt exceeds recommended size (6.2K tokens)
  โ†’ Split into modular sections

> All analysis runs locally. Your code never leaves your machine.

See full report format

# Verification Report

**Project:** my-project
**Date:** 2026-03-04
**Mode:** Standalone
**Files analyzed:** 12
**Agent type detected:** LangGraph

## Summary

โœ… 8 checks passed | โš ๏ธ 3 warnings | โŒ 2 issues

### By Category
| Category | Pass | Warn | Issue |
|----------|------|------|-------|
| Code Quality | 5 | 1 | 0 |
| Security | 2 | 0 | 1 |
| Agent Patterns | 1 | 2 | 1 |

## Agent Pattern Analysis

### Loop Safety
- [x] All retry mechanisms have explicit limits
- [ ] โš ๏ธ Potential unbounded loop at `agent/loop.py:45`

### Tool Consistency
- [x] Tool registry found: 5 tools defined
- [ ] โŒ 1 hallucinated tool reference in prompts

### Context Management
- [ ] โš ๏ธ System prompt exceeds recommended size (6.2K tokens)
- [x] Tool descriptions within limits

## Findings

### โœ… Passing
- Naming conventions: Consistent camelCase used throughout
- Error handling: All async functions have try/catch

### โš ๏ธ Warnings
- Missing type hints: `utils.py:45`
  - **Location:** `utils.py:45`
  - **Suggestion:** Add type hints to `process_data()` function

### โŒ Issues
- Hardcoded API key: `config.py:12`
  - **Location:** `config.py:12`
  - **Rule:** No secrets in source code
  - **Fix:** Move to environment variable

## Recommendations

1. Move API keys to environment variables
2. Add type hints to public functions

## Agent-Specific Recommendations

1. **Loop Safety:** Add `MAX_ITERATIONS` constant to `agent/loop.py`
2. **Tool Registry:** Remove or implement `execute_sql` tool
3. **Context Management:** Split system prompt into modular sections

Quickstart

# Install (works with Claude Code, Roo Code, Cursor, and 30+ agents)
npx skills add aurite-ai/agent-verifier -a claude-code -a cursor -a 

# Then in your agent folder just ask your coding assistant (eg. Claude Code, Cursor, or others):
verify agent

That's it. For more installation options, see [Installation](#installation).

Learn More

New to Agent Verifier? These guides walk you through everything:

  • [Getting Started](docs/getting-started.md) โ€” Install and run your first verification in 5 minutes
  • [Tutorials](docs/tutorials/) โ€” Step-by-step guides:
  • [Installation](docs/tutorials/01-installation.md) โ€” Detailed installation options
  • [First Verification](docs/tutorials/02-first-verification.md) โ€” Run your first verification
  • [Understanding Reports](docs/tutorials/03-understanding-reports.md) โ€” Interpret and prioritize findings
  • [Focused Checks](docs/tutorials/04-focused-checks.md) โ€” Use individual verification skills

The rest of this README serves as a technical reference.


Contributions

We welcome contributions of all kinds! Here's how you can help:


Table of Contents

  • [Why?](#why)
  • [What You Get](#what-you-get)
  • [Quickstart](#quickstart)
  • [Architecture](#architecture)
  • [Available Skills](#available-skills)
  • [Installation](#installation)
  • [Updating Installed Skills](#updating-installed-skills)
  • [Usage](#usage)
  • [Features](#features)
  • [How It Compares](#how-it-compares)
  • [Check Reliability](#check-reliability)
  • [Privacy](#privacy)
  • [Contributing](#contributing)
  • [Citation](#citation)
  • [License](#license)

Architecture

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚                      verification                           โ”‚
โ”‚                 Full Suite Orchestrator                     โ”‚
โ”‚                 trigger: "verify agent"                     โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
            โ”‚           โ”‚           โ”‚           โ”‚
            โ–ผ           โ–ผ           โ–ผ           โ–ผ
    โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
    โ”‚  verify-  โ”‚ โ”‚  verify-  โ”‚ โ”‚  verify-  โ”‚ โ”‚  verify-  โ”‚
    โ”‚ security  โ”‚ โ”‚ patterns  โ”‚ โ”‚  quality  โ”‚ โ”‚ language  โ”‚
    โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
    โ”‚ โ€ข secrets โ”‚ โ”‚ โ€ข loops   โ”‚ โ”‚ โ€ข naming  โ”‚ โ”‚ โ€ข Python  โ”‚
    โ”‚ โ€ข deps    โ”‚ โ”‚ โ€ข retries โ”‚ โ”‚ โ€ข docs    โ”‚ โ”‚ โ€ข TypeScriptโ”‚
    โ”‚ โ€ข input   โ”‚ โ”‚ โ€ข tools   โ”‚ โ”‚ โ€ข errors  โ”‚ โ”‚ โ€ข Go      โ”‚
    โ”‚ โ€ข errors  โ”‚ โ”‚ โ€ข context โ”‚ โ”‚ โ€ข magic   โ”‚ โ”‚           โ”‚
    โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

Each skill can run independently: "verify agent security", "verify agent patterns", etc.

Available Skills

| Skill | Purpose | |-------|---------| | verification | Full verification suite (orchestrator) โ€” runs all checks below | | verify-security | Security checks (secrets, input validation, dependencies) | | verify-patterns | Agent patterns (loops, retries, tools, context) | | verify-quality | Code quality (naming, organization, docs) | | verify-language | Language-specific checks (Python, TypeScript, Go) |

Installation

Recommended

# Install all skills to all detected agents (Claude Code, Roo Code, Cursor, etc.)
npx skills add aurite-ai/agent-verifier -a claude-code -a 

More install options (specific agents, skills, or version)

# List available skills in this package
npx skills add aurite-ai/agent-verifier --list

# Install to specific agents (multi select allowed)
npx skills add aurite-ai/agent-verifier -a claude-code -a roo

# Install specific skills only
npx skills add aurite-ai/agent-verifier --skill verification verify-security

# Install globally (available in all projects)
npx skills add aurite-ai/agent-verifier -g

Install from GitHub repository

Install directly from a GitHub repo (public or private with access):

# List available skills
npx skills add github:aurite-ai/agent-verifier --list

# Install to specific agents (multi select allowed)
npx skills add github:aurite-ai/agent-verifier -a claude-code -a roo

# Install all skills from public GitHub repo
npx skills add github:aurite-ai/agent-verifier --all

# Install specific skills only
npx skills add github:aurite-ai/agent-verifier --skill verification verify-security

# From a specific branch
npx skills add github:aurite-ai/agent-verifier#main --all

# From a specific tag/release
npx skills add github:aurite-ai/agent-verifier#v1.0.0 --all

# From private repo (requires GitHub authentication)
npx skills add github:your-org/your-private-skill --all

Install from local source

Install from a local directory during development:

# List available skills in local repo
npx skills add ./path/to/agent-verifier --list

# Install to specific agents (multi select allowed)
npx skills add ./path/to/agent-verifier -a claude-code -a roo

# Install all skills from local path
npx skills add ./path/to/agent-verifier --all

# Install specific skills only
npx skills add ./path/to/agent-verifier --skill verification verify-patterns

# Install with link (for development - changes reflect immediately)
npx skills link .

Manual installation

For agents that don't support the skills CLI, copy the skill files directly:

# For Roo Code (copy all skills)
cp -r skills/* ~/.roo/skills/

# For Claude Code (copy all skills)
cp -r skills/* ~/.claude/skills/

# For other agents, check their documentation for the skills directory location

Updating Installed Skills

From NPM Registry

Re-run the install command to get the latest published version:

# Update all skills to latest version
npx skills add aurite-ai/agent-verifier --all

More update options

# Install to specific agents (multi select allowed)
npx skills add aurite-ai/agent-verifier -a claude-code

# Update specific skills only
npx skills add aurite-ai/agent-verifier --skill verification verify-security -a claude-code

# Or specify a version
npx skills add aurite-ai/agent-verifier@1.2.0 -a claude-code

Update from GitHub repository

Re-run with the same source to pull latest changes:

# Update all skills from default branch
npx skills add github:aurite-ai/agent-verifier --all -a claude-code

# Update from specific branch
npx skills add github:aurite-ai/agent-verifier#main --all -a claude-code

# Update to specific tag/release
npx skills add github:aurite-ai/agent-verifier#v1.2.0 -a claude-code

Update from local source or manual update

Symlink install: If installed with npx skills link ., changes reflect automatically. No action needed.

Check if you're using symlink:

# Check the skills-lock.json in your project
cat skills-lock.json  # Look for "method": "symlink"

# Or check the installed skill directly
ls -la .agents/skills/verification  # Should show -> pointing to source

Copy install: Re-run the install command to update:

# Reinstall from source
npx skills add /path/to/agent-verifier -a claude-code

# Or force reinstall
npx skills add /path/to/agent-verifier -a claude-code --force

Remove and reinstall:

# Remove each skill by skill name
npx skills remove verification

# Reinstall from any source
npx skills add aurite-ai/agent-verifier -a claude-code

Manual update:

# Copy updated files directly
cp -r /path/to/agent-verifier/skills/verification ~/.claude/skills/

Usage

Once installed, trigger verification by asking your coding agent:

Full Verification Suite

"verify agent"

This runs the complete verification suite covering security, agent patterns, code quality, and language-specific checks. Use this for comprehensive audits or pre-release reviews.

Focused Verification

For faster, targeted checks, use domain-specific invocations:

| Command | What it checks | |---------|----------------| | "verify agent security" | Secrets, input validation, error exposure, dependency vulnerabilities | | "verify agent patterns" | Loop safety, retry limits, tool registry, context size, LangGraph cycles | | "verify agent quality" | Naming, organization, documentation, magic values, error handling | | "verify agent language" | Python type hints, TypeScript strict mode, Go error handling |

Legacy Triggers (Still Supported)

These phrases also trigger the full verification suite:

  • "review this implementation"
  • "check compliance"
  • "audit my agent"
  • "validate against best practices"

Features

Dual-Mode Operation

Standalone Mode (default):

  • Automatically detects project language and framework
  • Applies built-in best practices for code quality and security
  • Honors existing lint configs (ESLint, Biome, etc.)

Kahuna-Enhanced Mode (when Kahuna is installed):

  • Loads organization-specific rules from knowledge base
  • Uses kahuna_ask for deeper context queries
  • Applies framework patterns surfaced by kahuna_prepare_context

Verification Checks

The skill performs comprehensive verification across multiple categories:

1. Code Quality

| Check | Description | Severity | |-------|-------------|----------| | Naming conventions | Clear, descriptive, consistent naming | โš ๏ธ Warning | | Code organization | Appropriate structure and modularity | โš ๏ธ Warning | | Error handling | Proper try/catch, error propagation | โŒ Issue | | Magic values | No unexplained numbers/strings | โš ๏ธ Warning | | Documentation | Comments for complex logic | โš ๏ธ Warning |

2. Security

| Check | Description | Severity | |-------|-------------|----------| | Hardcoded secrets | No API keys, passwords in source | โŒ Issue | | Input validation | Validate external data | โŒ Issue | | Error exposure | No stack traces in production | โš ๏ธ Warning | | Secure defaults | Safe default configurations | โš ๏ธ Warning | | Dependency vulnerabilities | Known CVEs in dependencies | โŒ Issue |

3. Language-Specific

Python: | Check | Description | |-------|-------------| | Type hints | Public functions should have type annotations | | Docstrings | Modules, classes, functions should be documented | | Requirements pinning | Dependencies should specify versions |

TypeScript/JavaScript: | Check | Description | |-------|-------------| | Type safety | Prefer strict mode, avoid any | | Async handling | Proper error handling for promises | | Dependency security | No outdated/vulnerable packages |

Go: | Check | Description | |-------|-------------| | Error handling | No ignored errors (_ = err) | | Context propagation | Pass context through call chains |

4. AI Agent Patterns

Loop Safety: | Pattern | Language | Severity | |---------|----------|----------| | while True: without break | Python | โš ๏ธ Warning | | while (true) without break | TS/JS | โš ๏ธ Warning | | for { } without break/return | Go | โš ๏ธ Warning | | Recursive calls without depth limit | All | โš ๏ธ Warning |

Retry Limits: | Pattern | Required Parameter | Severity | |---------|-------------------|----------| | @retry (tenacity) | stop=stop_after_attempt(n) | โŒ Issue | | @backoff.on_exception | max_tries=n | โŒ Issue | | retry (async-retry) | retries: n | โŒ Issue | | p-retry | retries: n | โŒ Issue |

Tool Registry: | Check | Description | Severity | |-------|-------------|----------| | Hallucinated tools | Tool references not in registry | โŒ Issue | | Undocumented tools | Tools not listed in prompts | โš ๏ธ Warning |

Context Management: | Content Type | Warning | Issue | |--------------|---------|-------| | System prompt | > 4,000 tokens (~16KB) | > 8,000 tokens (~32KB) | | Single tool description | > 500 tokens (~2KB) | > 1,000 tokens (~4KB) | | Total tool descriptions | > 2,000 tokens (~8KB) | > 4,000 tokens (~16KB) |

> Note: "System prompt" refers

โ€ฆ

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source โ€” we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.