Claude Code Plugins

Community-maintained marketplace

Feedback

code-reviewer

@raiich/jumpstarter
0
0

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

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name code-reviewer
description Automatically check documentation-code consistency after implementation. Verifies README.md and docs/*.md match actual code.
allowed-tools Read, Grep, Glob

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