odoo-code-review

Installation
SKILL.md

Odoo Code Review

Objective

Review Odoo code changes against clear criteria, identify risks, and score using a weighted scale from an Odoo-expert perspective — using the reference pack that matches the target Odoo version.

Resolve the target Odoo version

Before reviewing, resolve ODOO_VERSION (one of 16.0, 17.0, 18.0, 19.0) in this order. Stop at the first one that succeeds:

  1. Explicit argument passed to the agent invocation (e.g. odoo_version: "19.0").
  2. Project config, in this order:
    • .odoo-version file at the repo root (contents: e.g. 19.0).
    • odoo_version key in .claude/odoo.json.
    • odoo.version key in package.json or tool.odoo.version in pyproject.toml.
  3. Manifest heuristic — scan workspace __manifest__.py files for the 'version' key. Use the dominant major version (e.g. 18.0.1.0.018.0).
  4. Fallback — default to 19.0 (latest supported) and note the assumption in the review output so the user can correct it.

Derive ODOO_MAJOR from ODOO_VERSION by stripping .0 (e.g. 18.018). All guide paths below use these placeholders.

Installs
4
GitHub Stars
126
First Seen
May 27, 2026
odoo-code-review — unclecatvn/agent-skills