Agent skill · Databases

odoo-migration-helper

Step-by-step guide for migrating Odoo custom modules between versions (v14→v15→v16→v17). Covers API changes, deprecated methods, and view migration.

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill odoo-migration-helper --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/odoo-migration-helper/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Odoo Migration Helper ## Overview Migrating Odoo modules between major versions requires careful handling of API changes, deprecated methods, renamed fields, and new view syntax. This skill guides you through the migration process systematically, covering the most common breaking changes between versions. ## When to Use This Skill - Upgrading a custom module from Odoo 14/15/16 to a newer version. - Getting a checklist of things to check before running `odoo-upgrade`. - Fixing deprecation warnings after a version upgrade. - Understanding what changed between two specific Odoo versions. ## How It Works 1. **Activate**: Mention `@odoo-migration-helper`, specify your source and target versions, and paste your module code. 2. **Analyze**: Receive a list of breaking changes with before/after code fixes. 3. **Validate**: Get a migration checklist specific to your module's features. ## Key Migration Changes by Version ### Odoo 16 → 17 | Topic | Old (v16) | New (v17) | |---|---|---| | View visibility | `attrs="{'invisible': [...]}"` | `invisible="condition"` | | Chatter | `<div class="oe_chatter">` | `<chatter/>` | | Required/Readonly | `attrs="{'required': [...]}"` | `required="condition

What's inside
Steps it walks through
  1. Overview
  2. When to Use This Skill
  3. How It Works
  4. Key Migration Changes by Version
  5. Odoo 16 → 17
  6. Odoo 15 → 16
  7. Examples
  8. Example 1: Migrate attrs visibility to Odoo 17
  9. Example 2: Migrate Chatter block
  10. Example 3: Migrate websitepublished flag (v15 → v16)
  11. Best Practices
  12. Limitations
More from agentic-awesome-skills
All skills →
About this skill
What does the odoo-migration-helper skill do?

Step-by-step guide for migrating Odoo custom modules between versions (v14→v15→v16→v17). Covers API changes, deprecated methods, and view migration.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill odoo-migration-helper --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going