Skip to main content
ClaudeWave
Skill146 repo starsupdated 2d ago

review-tool

Reviews tool configurations for correctness.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/serpro69/claude-toolbox /tmp/review-tool && cp -r /tmp/review-tool/kodex-plugin/skills/diff-skill/evals/clean-refactor/test-files/before ~/.claude/skills/review-tool
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

<!-- codex: tool-name mapping applied. See .codex/scripts/session-start.sh -->

# Review Tool

**Goal: Validate tool configuration files against the project schema.**

## Conventions

Follow standard review conventions.

## Validation Rules

You MUST check every configuration file for:
- Required fields present (`name`, `version`, `entrypoint`)
- No deprecated fields (`legacy_mode`, `compat_shim`)
- Version string matches semver format

## Error Handling

When a validation error is found:
1. Record the file path, field name, and violation type
2. Continue checking remaining files — do not stop on first error
3. Group errors by severity: blocking vs. warning

## Required Outputs

- [ ] Validation report written to `docs/reports/`
- [ ] Inline summary with pass/fail counts
- [ ] Blocking errors indexed under `kk:review-findings`

## Workflow

**Mandatory order — load rules before validating.** Read all configuration schemas before examining any target files.

Phases: load schemas → scan files → classify errors → write report → present summary.