# Code Reviewer

> Automatically check documentation-code consistency after implementation. Verifies README.md and docs/*.md match actual code.

- Skill: `majiayu000/code-reviewer-3` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/code-reviewer-3`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/code-reviewer-3/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Docs & Writing
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/code-reviewer-3

---


# Documentation Consistency Checker

Automatically verifies consistency between documentation and implementation after code implementation.

## Instructions

1. Review content described in README.md and docs/*.md
2. Identify recently edited Go files
3. Verify the following:
   - Are benchmark categories listed in README.md implemented?
   - Are implemented features documented?
   - Are links in docs/*.md valid?

## Output Format

```
## Documentation Consistency Check Results

### ✓ Consistent
- README.md category descriptions match implementation
- New features are documented

### ✗ Needs Review
- README.md:28 - Described but not implemented: "XXX feature"
- file.go:123 - Implemented but not documented: BenchmarkNewFeature

📚 Reference: README.md, docs/*.md
```

## Notes

- Use only Read, Grep, Glob (no modifications)
- Report issues with file_name:line_number
- Encourage documentation reference

