odoo-code-tracer

odoo-code-tracer is a skill for Claude Code from unclecatvn/agent-skills. It costs 56 tokens per session (3,089 once invoked), scanned B, original, MIT.

A code-tracing assistant for Odoo, a business software platform written largely in Python. It follows a feature from its starting point through function calls, overrides, inheritance, and callbacks across supported Odoo versions.

In plain words
What is it for?
Understanding existing Odoo features, planning changes, reviewing code, and documenting the complete path from an entry point to the final result.
Why use it?
It helps explain what actually runs when Odoo handles a request, including code that is replaced or extended elsewhere. This reduces the chance of missing part of a feature’s execution path.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter.

Part of the agent-skills plugin — 11 skills, 1 agent shipped together

Good fit Understanding existing Odoo features, planning changes, reviewing code, and documenting the complete path from an entry point to the final result.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/unclecatvn/agent-skills/odoo-code-tracer
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-code-tracer
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 11 skills, 1 agent.

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-code-tracer

README.md
[![agentmods](https://agentmods.dev/badge/skills/unclecatvn/agent-skills/odoo-code-tracer.svg)](https://agentmods.dev/skills/unclecatvn/agent-skills/odoo-code-tracer)
Your own site
<a href="https://agentmods.dev/skills/unclecatvn/agent-skills/odoo-code-tracer"><img src="https://agentmods.dev/badge/skills/unclecatvn/agent-skills/odoo-code-tracer.svg" alt="Measured on agentmods" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,089 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Privilege Escalation · line 82
    Commands invoke sudo or root privileges. Verify this elevated access is necessary and justified.
    Fix: Avoid sudo/root unless strictly required. Prefer least-privilege patterns. If elevation is needed, document the justification and scope.
How audits are shown
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.00056 $0.03089
Opus 5 $0.00028 $0.01545
Sonnet 5 $0.00011 $0.00618
Haiku 4.5 $0.00006 $0.00309

Measured 7d ago against content hash d344c2eb9ec3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade B, and why

odoo-code-tracer scanned grade B with 1 finding 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 7d ago.

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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

- **Security checks**: Access rights, record rules, sudo usage
agents/odoo-code-tracer/SKILL.md · 327 lines

How it starts

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

Odoo Code Tracer Agent

You are an expert Odoo code execution tracer (Odoo 16, 17, 18, or 19). Your mission is to trace code flow from start to finish, identifying every function call, override, and execution path — using the reference pack that matches the target Odoo version.

Resolve the target Odoo version

Before tracing, 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: .odoo-version file at the repo root, odoo_version in .claude/odoo.json, odoo.version 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.
  4. Fallback: default to 19.0 and note the assumption in your trace output.

Derive ODOO_MAJOR from ODOO_VERSION (e.g. 18.018). Supported: 16.0, 17.0, 18.0, 19.0 — anything else is out of scope.

Before tracing, read skills/odoo-${ODOO_VERSION}/references/api-highlights.md so you recognise version-distinguishing constructs (<tree> vs <list>, group_operator= vs aggregator=, optional _name in v19, etc.) as you follow the code.

Objective

When given a starting point (user action, API call, cron job, etc.), trace the complete execution flow through the Odoo codebase, identifying:

  • Entry points (controllers, cron, webhooks, etc.)
  • Method call chains
  • Inheritance and overrides
  • Callbacks and hooks
  • Database operations
  • Side effects (emails, notifications, external API calls)
  • Exit points and return values

Tracing Process

1. Identify Entry Point

Determine how the code execution starts:

  • HTTP Request: Which controller/route?
  • Cron Job: Which model method and interval?
  • Model Action: Which button/action triggers it?
  • API Call: Which external system calls which endpoint?
  • Manual: Which user interface action?
  • Event: Which event triggers the code (on_change, computed field, constraint)?

Read the full file on GitHub · 327 lines

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. 7d ago First seen · 327 lines · 56 tokens per session scan B d344c2eb9ec3

Subscribe to this mod's changes

odoo-code-tracer is a skill published in the GitHub repository unclecatvn/agent-skills (130 stars, last pushed 15d ago), licensed MIT. It adds 56 tokens to every session and 3,089 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

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

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

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

ssl-proxy-troubleshoot

Systematic workflow for troubleshooting SSL/proxy connectivity issues with government websites.

HKUDS/OpenSpace · 20 tokens

diagnose-backend-bug

Diagnose a bounded backend or multi-service failure from GitHub Issues, Jira, Aone, user-provided exports, logs, traces, responses, stack traces, or job records. Use when a service, API, RPC, worker, queue, CLI, or scheduled job bug needs correlation through the project's existing observability route before repair; do…

QoderAI/better-harness · 87 tokens