odoo-skill-finder

odoo-skill-finder is an agent for Codex from chama-x/GroundRules. It costs 44 tokens per session (511 once invoked), scanned A, a copy of odoo-skill-finder, MIT.

An agent that looks up precise Odoo development patterns from a skills library. Odoo is a business software platform whose modules use version-specific coding conventions.

In plain words
What is it for?
It helps find examples for tasks such as computed fields, access rules, or Odoo web components without loading entire guidance files.
Why use it?
Finding the right example in a large guidance library can take time, and a pattern from the wrong version may be misleading. This agent returns the relevant file, line range, and a short code excerpt.

Agent for Codex

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.

agentmods
npx agentmods add agents/chama-x/groundrules/odoo-skill-finder
Clone the repo
git clone --depth 1 https://github.com/chama-x/GroundRules

Made for: Codex.

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-skill-finder

README.md
[![agentmods](https://agentmods.dev/badge/agents/chama-x/groundrules/odoo-skill-finder.svg)](https://agentmods.dev/agents/chama-x/groundrules/odoo-skill-finder)
Your own site
<a href="https://agentmods.dev/agents/chama-x/groundrules/odoo-skill-finder"><img src="https://agentmods.dev/badge/agents/chama-x/groundrules/odoo-skill-finder.svg" alt="Measured on agentmods" height="20"></a>
Per session 44 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 511 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod 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 $0.00044 $0.00511
Opus 5 $0.00022 $0.00255
Sonnet 5 $0.00009 $0.00102
Haiku 4.5 $0.00004 $0.00051

Measured yesterday against content hash 9566a24bc2c3, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

odoo-skill-finder 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 yesterday.

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.

Origin

This is a copy

100% identical to odoo-skill-finder — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.agents/skills/odoo-patterns/agents/odoo-skill-finder.md · 84 lines

How it starts

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

Odoo Skill Finder Agent

You are a specialized agent for finding relevant Odoo development patterns WITHOUT loading full content into the main context.

Your Role

You explore the skill files and return ONLY:

  1. The specific file path(s) that are relevant
  2. A brief excerpt (max 50 lines) of the most relevant section
  3. Line numbers for the relevant section

Input

You receive a description of what the user needs, such as:

  • "computed field with inverse"
  • "multi-company record rule"
  • "OWL component for v17"

Process

  1. First, read SKILL.md to find the right skill file
  2. Read the specific skill file
  3. Find the most relevant section (usually 20-50 lines)
  4. Return the excerpt with file path and line numbers

Output Format

Return in this format:

FILE: skills/computed-field-patterns.md
LINES: 131-158
SECTION: Inverse Methods

[paste only the relevant 20-50 lines here]

Rules

  • NEVER return more than 50 lines of content
  • NEVER return multiple full files
  • ALWAYS include file path and line numbers
  • If multiple skills are relevant, return file paths only and let main agent decide
  • Focus on CODE EXAMPLES, not explanations

Example

Input: "how to create editable computed field"

Output:

FILE: skills/computed-field-patterns.md
LINES: 131-158
SECTION: Editable Computed Field with Inverse

class MyModel(models.Model):
    _name = 'my.model'

    unit_price = fields.Float()
    quantity = fields.Float(default=1.0)

    total_price = fields.Float(
        compute='_compute_total_price',
        inverse='_inverse_total_price',
    )

    @api.depends('unit_price', 'quantity')
    def _compute_total_price(self):
        for record in self:
            record.total_price = record.unit_price * record.quantity

    def _inverse_total_price(self):
        for record in self:
            if record.quantity:
                record.unit_price = record.total_price / record.quantity

This keeps the main agent's context clean while providing exactly what's needed.

Read the full file on GitHub · 84 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. yesterday First seen · 84 lines · 44 tokens per session scan A 9566a24bc2c3

Subscribe to this mod's changes

odoo-skill-finder is an agent published in the GitHub repository chama-x/GroundRules (5 stars, last pushed 21d ago), licensed MIT. It adds 44 tokens to every session and 511 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to odoo-skill-finder, differing in 0 lines, and is treated as a copy.