Installation
Install Odoo agent skills with npx skills for Claude Code, Cursor, Windsurf, and 40+ other agents.
Prerequisites
- Node.js 18+ (for
npx) - An AI coding agent (Claude Code, Cursor, Windsurf, or any agent supported by skills.sh)
Skills work alongside the Odoo MCP Server. The MCP server provides the tools (read, write, execute), and skills teach the agent how to use them well.
Install all skills
npx skills add oconsole/odoo-skills
This discovers all 7 skills and prompts you to choose which agents to install to.
Install specific skills
# Just the read-only inspection skills
npx skills add oconsole/odoo-skills --skill odoo-model-inspect
npx skills add oconsole/odoo-skills --skill odoo-system-inspect
# The write tier (for production customization)
npx skills add oconsole/odoo-skills --skill odoo-model-customize
Install globally
npx skills add oconsole/odoo-skills --all --global
Global installs make skills available across all projects, not just the current one.
Non-interactive install
npx skills add oconsole/odoo-skills --all --yes
The --yes flag skips confirmation prompts.
Verify installation
npx skills list
You should see the installed skills listed with their paths.
Available skills
Read tier (safe on production)
| Skill | What it does |
|---|---|
odoo-model-inspect |
Inspect model structure, fields, views, record counts |
odoo-accounting-inspect |
Query invoices, payments, journal entries, aged receivables |
odoo-mrp-inspect |
Inspect manufacturing orders, BoMs, production KPIs |
odoo-stock-inspect |
Analyze stock levels, moves, transfers, reordering rules |
odoo-system-inspect |
System health: modules, cron jobs, error logs, user activity |
Write tier (mutates production)
| Skill | What it does |
|---|---|
odoo-model-customize |
Set defaults, sort orders, custom fields, inherited views, automations |
Demo tier (sandboxed mutations)
| Skill | What it does |
|---|---|
odoo-model-customize-demo |
Same as customize, but tagged [DEMO] / x_demo_ for clean rollback |
Uninstall
npx skills remove odoo-model-inspect
Or remove all:
npx skills remove