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.
npx skills add unclecatvn/agent-skills --skill odoo-workflowgit clone --depth 1 https://github.com/unclecatvn/agent-skillsWrote 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.
[](https://agentmods.dev/skills/unclecatvn/agent-skills/odoo-workflow)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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:
- Explicit statement from the user or the project
CLAUDE.md. .odoo-versionat the repo root,odoo_versionin.claude/odoo.json,odoo.versioninpackage.json,tool.odoo.versioninpyproject.toml.- Dominant
'version'major across workspace__manifest__.pyfiles. - Nothing found: ask once, then offer to write
.odoo-versionso 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):
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.
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.
- today First seen · 150 lines · 133 tokens per session scan A 0e1931075563
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.
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.
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.
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…
convex-billing
Add Stripe billing/payments to the Convex app via @convex-dev/stripe (checkout + webhook + gating).
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…
api-and-namespace-design
API design conventions, namespace coordinate system, RBAC roles, ClawHub compatibility layer, OpenAPI contract sync rules, and CSRF/session handling.