Tutorial 1: Installation

March 31, 2026 · View on GitHub

This tutorial walks you through installing Agent Verifier on your system. By the end, you'll have the verification skill ready to use in your coding agent.

Time: ~5 minutes
Prerequisites: Node.js v18+, a supported coding agent


Choose Your Installation Method

MethodBest forDifficulty
NPM RegistryMost usersEasy
GitHub RepositoryCustom branches, private forksEasy
Local SourceDevelopment, testing changesMedium
Manual CopyAgents without CLI supportMedium

The simplest way to install—pulls the latest stable release.

Step 1: Check available skills

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

You'll see:

Available skills in aurite-ai/agent-verifier:
  - verification (full verification suite)
  - verify-security
  - verify-patterns
  - verify-quality
  - verify-language

Step 2: Install to your coding agents

Install to all detected agents:

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

Or 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

Or install specific skills only:

npx skills add aurite-ai/agent-verifier --skill verification verify-security

Step 3: Verify installation

Open your coding agent and say:

"verify agent"

If installed correctly, the agent will begin analyzing your project.


Option 2: GitHub Repository

Install directly from GitHub—useful for specific branches, tags, or private forks.

From the main branch

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

From a specific branch

npx skills add github:aurite-ai/agent-verifier#main --all

From a specific release tag

npx skills add github:aurite-ai/agent-verifier#v1.0.0 --all

From a private fork

# Requires GitHub authentication
npx skills add github:your-org/your-private-fork --all

Option 3: Local Source

Install from a local directory—ideal for development or testing modifications.

Clone and install

# Clone the repository
git clone https://github.com/aurite-ai/agent-verifier.git
cd agent-verifier

# Install to your agents
npx skills add . --all

For active development, use symlink so changes reflect immediately:

npx skills link .

Changes to skill files take effect without reinstalling.

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

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

Option 4: Manual Installation

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

For Roo Code

cp -r skills/* ~/.roo/skills/

For Claude Code

cp -r skills/* ~/.claude/skills/

For other agents

Check your agent's documentation for the skills directory location, then copy the skills/ folder contents there.


Global vs Local Installation

TypeFlagScopeUse case
Local(default)Current project onlyPer-project verification
Global-gAll projectsOrganization-wide policies

Install globally

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

Global installation makes the skill available in all projects without per-project setup.


Troubleshooting

"Command not found: npx"

Cause: Node.js not installed or not in PATH

Fix: Install Node.js v18+ from nodejs.org

"No agents detected"

Cause: The skills CLI couldn't find supported coding agents

Fix: Specify the agent explicitly:

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

"Permission denied"

Cause: File system permissions on the skills directory

Fix: Check permissions on your agent's skills directory:

ls -la ~/.claude/skills/  # or ~/.roo/skills/

Skill not recognized by agent

Cause: Installation succeeded but agent can't find the skill

Fix:

  1. Restart your coding agent
  2. Check the skill directory exists:
    ls ~/.claude/skills/verification/  # or your agent's skills dir
    
  3. Verify SKILL.md exists in the directory

Wrong version installed

Cause: Cached version or incorrect source

Fix: Force reinstall:

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

Next Steps

Installation complete! Continue to Tutorial 2: First Verification →