odoo-workflow

odoo-workflow is a skill for Claude Code from unclecatvn/agent-skills. It costs 133 tokens per session (2,415 once invoked), scanned A, original, MIT.

A required workflow for changing Odoo, a business application framework, across versions 16 through 19. It requires tracing existing code and checking the correct version before writing Python or XML changes.

In plain words
What is it for?
Use it before adding fields, overriding methods, changing views, or making other Odoo changes; it also defines when the workflow may be skipped.
Why use it?
It helps prevent changes based on nonexistent fields, methods, or view elements, and requires evidence and verification before code is written.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions CLAUDE.md.

Part of the agent-skills plugin — 10 skills, 3 agents shipped together

Good fit Use it before adding fields, overriding methods, changing views, or making other Odoo changes; it also defines when the workflow may be skipped.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/unclecatvn/agent-skills/odoo-workflow
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add unclecatvn/agent-skills --skill odoo-workflow
Clone the repo
git clone --depth 1 https://github.com/unclecatvn/agent-skills

Made for: Claude Code.

Or install agent-skills, the plugin that ships this one along with the rest of its 10 skills, 3 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for odoo-workflow

README.md
[![agentmods](https://agentmods.dev/badge/skills/unclecatvn/agent-skills/odoo-workflow/github.svg)](https://agentmods.dev/skills/unclecatvn/agent-skills/odoo-workflow)
Your own site
<a href="https://agentmods.dev/skills/unclecatvn/agent-skills/odoo-workflow"><img src="https://agentmods.dev/badge/skills/unclecatvn/agent-skills/odoo-workflow/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for odoo-workflow

Your own site · 80×15
<a href="https://agentmods.dev/skills/unclecatvn/agent-skills/odoo-workflow"><img src="https://agentmods.dev/badge/skills/unclecatvn/agent-skills/odoo-workflow.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 133 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,415 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00133 $0.02415
Opus 5 $0.00067 $0.01208
Sonnet 5 $0.00027 $0.00483
Haiku 4.5 $0.00013 $0.00242

Measured today against content hash 0e1931075563, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

odoo-workflow scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/odoo-workflow/SKILL.md · 150 lines

How it starts

The opening of the file, as written. The whole thing — 150 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Odoo Workflow - trace first, then code

Procedure for every Odoo change. The expensive failures are always the same: a field or method that does not exist in the base addon, an xpath anchor that was never there, a sudo() nobody can audit, a .pot that was never regenerated. The fix is mechanical: no citation, no code.

When this applies

  • Any request that ends in Odoo Python or XML: new field, override, inherited view, wizard, cron, controller, report, security, bug fix, refactor, "optimize", "clean up".
  • Skip for pure questions, documentation-only changes, and git-only tasks (use odoo-commit).
  • Generic brainstorming/planning skills come after Step 2, and only if the business intent is still unclear - the Context Brief is the input they need.

Step 0 - Resolve the Odoo version, load the pack

Resolve ODOO_VERSION in this order and stop at the first hit:

  1. Explicit statement from the user or the project CLAUDE.md.
  2. .odoo-version at the repo root, odoo_version in .claude/odoo.json, odoo.version in package.json, tool.odoo.version in pyproject.toml.
  3. Dominant 'version' major across workspace __manifest__.py files.
  4. Nothing found: ask once, then offer to write .odoo-version so it is never asked again. Do not silently assume a version.

Then load the odoo-<major> skill (odoo-16 ... odoo-19) and read only the guide the task needs from its references/. If the pack is not installed, say so and continue with the trace below - the real source is the authority; never fill the gap from memory.

Step 1 - Trace the chain (grep first, read ranges)

Resolve ROOTS once: addons_path from *.conf / docker-compose*.yml / .claude/odoo.json; otherwise find . -maxdepth 4 -name __manifest__.py -exec dirname {} \; | xargs -n1 dirname | sort -u. Core (odoo/addons), enterprise, and custom addons are all roots.

For every model MODEL, method METHOD, field FIELD, or view the task touches (replace the uppercase placeholders):

Read the full file on GitHub · 150 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. today First seen · 150 lines · 133 tokens per session scan A 0e1931075563

Subscribe to this mod's changes

odoo-workflow is a skill published in the GitHub repository unclecatvn/agent-skills (132 stars, last pushed yesterday), licensed MIT. It adds 133 tokens to every session and 2,415 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-12.

Related

Other skills, from other repositories

convex-performance-audit

Audits Convex performance for reads, subscriptions, write contention, and function limits. Use for slow features, insights findings, OCC conflicts, or read amplification.

openclaw/clawhub · 38 tokens

convex-insights

Query a running Convex app's logs + health in natural language (official MCP): failures, slow/expensive functions, deploy causality — scoped, evidence-backed, with a dashboard deep link.

openclaw/clawhub · 45 tokens

odoo

Odoo engineering workflows for addon development, codebase exploration, debugging, architecture/refactor review, manifest/docs sync, and routing to migration work. Use when the user mentions Odoo, addons, modules, manifests, models, XML views, security CSVs, record rules, Odoo shell, OWL/QWeb/assets, or when an Odoo…

mart337i/odoo-skills · 78 tokens

convex-billing

Add Stripe billing/payments to the Convex app via @convex-dev/stripe (checkout + webhook + gating).

openclaw/clawhub · 29 tokens

printing-press-amend

Amend a published CLI from one of two input sources: (1) dogfood mode mines the active Claude Code session transcript for friction (missing flags, hand- rolled API payloads, silent-null returns); (2) direct-input mode accepts user-supplied asks (rename a command, add commands or feeds, fix a named bug, optionally…

mvanhorn/cli-printing-press · 222 tokens

api-and-namespace-design

API design conventions, namespace coordinate system, RBAC roles, ClawHub compatibility layer, OpenAPI contract sync rules, and CSRF/session handling.

iflytek/skillhub · 36 tokens