Agentcheck banner
devlyai devlyai

Agentcheck

AI community intermediate

Description

**Local AI-powered code review agents for Claude Code**

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

AgentCheck

**Local AI-powered code review agents for Claude Code**

We believe code reviews should be faster and more efficient, focused on trade-offs, knowledge sharing and accountability, not on policing style, naming quirks, or catching trivial regressions and security issues.

Use AgentCheck to run specialized agents before you commit, directly in your dev flow. AgentCheck pulls in your real project context (docs, conventions, architecture) and local ecosystem (MCP tools, resources) to deliver focused, actionable feedback.

Highlights

  • βœ… Local review β€” catch issues while you’re coding, not after PRs
  • 🧠 Project-aware β€” understands your docs, conventions, and methodology
  • πŸ”§ Open source & customizable β€” adapt each agent to your stack and standards
  • πŸ–₯️ Integrated flow β€” runs inside your environment, no black-box platforms
  • πŸ’Έ Free to use β€” no seat licenses, no subscription fees

Quick Start

1) Install into your repo

# In your project root
git clone https://github.com/devlyai/AgentCheck.git .claude-temp
cp -r .claude-temp/agentcheck .claude/
cp -r .claude-temp/agents .claude/
rm -rf .claude-temp
echo ".claude/agentcheck/reports/" >> .gitignore

This adds:

.claude/
  agentcheck/     # context and outputs
  agents/         # the review agents 

2) Initialize project context

Ask Claude Code to analyze your project and customize the agent templates:

"Initialize AgentCheck context for this project"

This analyzes your codebase and generates project-specific context files in `.claude/agentcheck/project-context/`.

3) Register the task in your Claude Code notes

Add to your `AGENTS.md` / `CLAUDE.md`:

## AgentCheck β€” Local AI Code Review

Before committing ask Claude Code to "Run AgentCheck analysis"

The agents (logic-reviewer, security-checker, guidelines-compliance,
style-compliance, product-reviewer) analyze **staged changes** and write reports to:

...