1
cc kodo tool
Alexey Efimchik edited this page 2026-04-27 09:49:30 +07:00

Kodo Skills for AI agents

This guide explains how to set up the code-review and apply-review skills so that they are available, for example, in Claude Code as slash commands: /code-review and /apply-review. In fact, this can be done not only in Claude Code but also in other providers that support skills.

Overview

Skill Slash Command What it does
code-review /code-review Reviews changes in the current branch and writes findings to review-result.md
apply-review /apply-review Reads review-result.md and automatically applies the suggested fixes

These two skills form a complete review → fix workflow. Run /code-review first, then /apply-review to patch the issues automatically.

Installation

Follow the official Claude Code skills documentation to learn how to install skills and where to place the files: https://code.claude.com/docs/en/skills

Once you understand the structure, place the two provided SKILL.md files into their respective skill folders:

.claude/
└── skills/
    ├── code-review/
    │   └── SKILL.md   ← use the provided code-review SKILL.md
    └── apply-review/
        └── SKILL.md   ← use the provided apply-review SKILL.md

Source files for code review skills: - code-review — source file for the code-review skill. - apply-review — source file for the apply-review skill.

How to Use

# 1. Make your changes on a branch, then run the review:
/code-review

# 2. Read review-result.md, then apply the fixes automatically:
/apply-review

The workflow always goes review first, apply second. /apply-review will stop and remind you to run /code-review if review-result.md does not exist yet.

Extending Review Rules with CONSTITUTION.md

You can add a .review/CONSTITUTION.md file containing custom review rules. The code-review skill reads it automatically and applies its rules during every review. Use it to encode project-specific conventions, forbidden patterns, naming rules, or architectural constraints. The .review/CONSTITUTION.md file has no effect on the /apply-review skill.

.review/
└── CONSTITUTION.md   ← project-specific review rules (optional)