odoo-agency-fleet-review

odoo-agency-fleet-review is a skill for Claude Code, Codex from MarioMillet2b/mcp-odoo. It costs 77 tokens per session (649 once invoked), scanned A, a copy of odoo-agency-fleet-review, MIT.

A review workflow for checking the health of several Odoo databases together. Odoo is business-management software, and each database can belong to a different client.

In plain words
What is it for?
It helps agencies compare accounting health, review receivables and payables by client, and investigate partial failures across a managed portfolio.
Why use it?
It removes the need to inspect client databases one by one and keeps one unavailable database from hiding results for the others.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It helps agencies compare accounting health, review receivables and payables by client, and investigate partial failures across a managed portfolio.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mariomillet2b/mcp-odoo/odoo-agency-fleet-review
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 MarioMillet2b/mcp-odoo --skill odoo-agency-fleet-review
Clone the repo
git clone --depth 1 https://github.com/MarioMillet2b/mcp-odoo

Made for: Claude Code, 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-agency-fleet-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/mariomillet2b/mcp-odoo/odoo-agency-fleet-review/github.svg)](https://agentmods.dev/skills/mariomillet2b/mcp-odoo/odoo-agency-fleet-review)
Your own site
<a href="https://agentmods.dev/skills/mariomillet2b/mcp-odoo/odoo-agency-fleet-review"><img src="https://agentmods.dev/badge/skills/mariomillet2b/mcp-odoo/odoo-agency-fleet-review/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-agency-fleet-review

Your own site · 80×15
<a href="https://agentmods.dev/skills/mariomillet2b/mcp-odoo/odoo-agency-fleet-review"><img src="https://agentmods.dev/badge/skills/mariomillet2b/mcp-odoo/odoo-agency-fleet-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 77 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 649 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 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.1 $0.00077 $0.00649
Opus 5 $0.00039 $0.00324
Sonnet 5 $0.00015 $0.00130
Haiku 4.5 $0.00008 $0.00065

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

Security

Grade A, and why

odoo-agency-fleet-review 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 11d 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.

Origin

This is a copy

100% identical to odoo-agency-fleet-review — 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.

skills/odoo-agency-fleet-review/SKILL.md · 56 lines

How it starts

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

Odoo agency fleet review

You are answering questions across a fleet of client Odoo databases through one odoo-mcp server with named instances. Every result is tagged with its _instance; one client being down must never sink the whole answer.

Prerequisites

  • Multi-instance config (ODOO_CONFIG_FILE with an instances map). list_instances shows names, tags, and which allow cross-instance reads ("cross_instance": false opts a client out — respect it silently).
  • Cross-instance tools are read-only by design. Writes happen per-instance through the normal gate, one client at a time.

Playbook

  1. Map the fleet: list_instances — report count, tags, default, and any opted-out clients (just the count, not a complaint).
  2. Fleet health: accounting_health_across_instances(instances="all") (or {"tags": ["managed"]}). For fleets >10, run via submit_async_task and poll.
  3. Triage the errors map first. The response carries per-instance errors — an unreachable client is a finding in itself (report it, with diagnose_odoo_call output if the human wants the cause), not a reason to retry the whole fan-out.
  4. Rank and drill down. Present a per-client table sorted by the metric the human asked about (e.g. overdue AR). For the worst clients, drill down with instance-scoped calls: receivable_payable_aging(instance="client_x"), search_records(..., instance="client_x").
  5. Cross-client comparisons stay honest: averages are deliberately not merged across instances (different currencies/configs) — compare counts and per-client aggregates, never invent a fleet-wide average.
  6. Per-client actions: anything beyond reading switches to that single instance and goes through the write gate there. Approval tokens are instance-bound; never reuse one across clients.

Output format

Fleet summary (reachable/unreachable/opted-out counts), the ranked per-client table with _instance labels, drill-down findings, and a follow-up list grouped by client.

Read the full file on GitHub · 56 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. 11d ago First seen · 56 lines · 77 tokens per session scan A c9d1042b4db2

Subscribe to this mod's changes

odoo-agency-fleet-review is a skill published in the GitHub repository MarioMillet2b/mcp-odoo (0 stars, last pushed 2mo ago), licensed MIT. It adds 77 tokens to every session and 649 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to odoo-agency-fleet-review, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

sector-rotation

An analysis framework for comparing industries in the Chinese A-share stock market, using business conditions, price momentum, valuation, and money flows. It produces rankings and higher- or lower-allocation suggestions.

HKUDS/Vibe-Trading · 39 tokens

strategy-pivot-designer

Detect backtest iteration stagnation and generate structurally different strategy pivot proposals when parameter tuning reaches a local optimum.

tradermonty/claude-trading-skills · 28 tokens

twitter-reader

Read Twitter/X for financial research using opencli (read-only). Use this skill whenever the user wants to read their Twitter feed, search for financial tweets, view bookmarks, look up user profiles, or gather market sentiment from Twitter/X. Triggers include: "check my feed", "search Twitter for", "show my…

himself65/finance-skills · 161 tokens

chenhao-limit-up

A framework for judging Chinese A-share stocks that have reached the daily price-rise limit, using market mood, sector leadership, and trading momentum.

questflowai/investorskills · 44 tokens

furusato

A Japanese hometown-tax donation manager for furusato nozei, a system where donations to municipalities can qualify for an income-tax or local-tax deduction. It reads donation receipts, stores donation records, and calculates deduction limits.

kazukinagata/shinkoku · 102 tokens

reading-receipt

An image-reading workflow for extracting structured information from receipts, invoices, and hometown-tax donation certificates. It can first extract text from PDFs and otherwise read their images.

kazukinagata/shinkoku · 64 tokens