ito-review
A skill to generate and follow peer-review checklists for specific project changes.
Install
mkdir -p .claude/skills/ito-review && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/13094" && unzip -o skill.zip -d .claude/skills/ito-review && rm skill.zipInstalls to .claude/skills/ito-review
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Review and validate Ito changes, specs, or implementations. Use when the user wants a quality check, code review, or validation of project artifacts.Key capabilities
- →Generate structured peer-review checklist
- →Determine target change ID
- →Follow printed instructions exactly
- →Return findings with `[blocking]`, `[suggestion]`, or `[note]` prefixes
- →Provide a verdict: `approve`, `request-changes`, or `needs-discussion`
How it works
The skill uses the `ito agent instruction review` CLI command to generate a structured peer-review checklist for a specific change, then follows the instructions and returns findings with a verdict.
Inputs & outputs
When to use ito-review
- →Reviewing a new spec implementation
- →Validating a pull request change
- →Getting a quality check on code
About this skill
Run the CLI-generated review instructions for a specific change.
This skill uses:
ito agent instruction review --change "<change-id>"
to generate a structured peer-review checklist before implementation.
Steps
-
Determine the target change ID (ask the user if unclear).
-
Generate instructions (source of truth):
ito agent instruction review --change "<change-id>" -
Follow the printed instructions exactly.
-
Return findings using tags and verdict required by the instruction template:
- Prefix each item with
[blocking],[suggestion], or[note]. - End with
Verdict: approve,Verdict: request-changes, orVerdict: needs-discussion.
- Prefix each item with
When not to use it
- →When the user does not want a quality check or code review
- →When the `ito` CLI tool is not available
Limitations
- →Requires the `ito` CLI tool
- →Requires a specific change ID
How it compares
This skill generates a structured, CLI-driven review checklist for project changes, providing a consistent quality check compared to informal or manual code reviews.
Compared to similar skills
ito-review side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| ito-review (this skill) | 0 | 2mo | Review | Intermediate |
| python-testing-patterns | 77 | 2mo | Review | Intermediate |
| dependency-upgrade | 26 | 5mo | Review | Intermediate |
| test-cases | 57 | 7mo | No flags | Beginner |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by withakay
View all by withakay →You might also like
python-testing-patterns
wshobson
Implement comprehensive testing strategies with pytest, fixtures, mocking, and test-driven development. Use when writing Python tests, setting up test suites, or implementing testing best practices.
dependency-upgrade
wshobson
Manage major dependency version upgrades with compatibility analysis, staged rollout, and comprehensive testing. Use when upgrading framework versions, updating major dependencies, or managing breaking changes in libraries.
test-cases
cexll
This skill should be used when generating comprehensive test cases from PRD documents or user requirements. Triggers when users request test case generation, QA planning, test scenario creation, or need structured test documentation. Produces detailed test cases covering functional, edge case, error handling, and state transition scenarios.
reviewing-code
CaptainCrouton89
Systematically evaluate code changes for security, correctness, performance, and spec alignment. Use when reviewing PRs, assessing code quality, or verifying implementation against requirements.
wcag-audit-patterns
wshobson
Conduct WCAG 2.2 accessibility audits with automated testing, manual verification, and remediation guidance. Use when auditing websites for accessibility, fixing WCAG violations, or implementing accessible design patterns.
code-coverage-with-gcov
gadievron
Add gcov code coverage instrumentation to C/C++ projects