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 agentmods add agents/fhidalgodev/odoo-development-skill/odoo-skill-findergit clone --depth 1 https://github.com/fhidalgodev/odoo-development-skillWrote 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/agents/fhidalgodev/odoo-development-skill/odoo-skill-finder)<a href="https://agentmods.dev/agents/fhidalgodev/odoo-development-skill/odoo-skill-finder"><img src="https://agentmods.dev/badge/agents/fhidalgodev/odoo-development-skill/odoo-skill-finder.svg" alt="Measured on agentmods" 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.00044 | $0.00511 |
| Opus 5 | $0.00022 | $0.00255 |
| Sonnet 5 | $0.00009 | $0.00102 |
| Haiku 4.5 | $0.00004 | $0.00051 |
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 6d 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.
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.
Copies of this mod
1 near-identical copy found in the catalogue:
- odoo-skill-finder — 100% identical, 0 lines differ
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:
- The specific file path(s) that are relevant
- A brief excerpt (max 50 lines) of the most relevant section
- 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
- First, read
SKILL.mdto find the right skill file - Read the specific skill file
- Find the most relevant section (usually 20-50 lines)
- 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.
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.
- 6d ago First seen · 84 lines · 44 tokens per session scan A 9566a24bc2c3
odoo-skill-finder is an agent published in the GitHub repository fhidalgodev/odoo-development-skill (69 stars, last pushed 6mo 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. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
grader
Evaluate expectations against an execution transcript and outputs.
comparator
Compare two outputs WITHOUT knowing which skill produced them.
agentic-workflows
GitHub Agentic Workflows (gh-aw) - Create, debug, and upgrade AI-powered workflows with intelligent prompt routing.