odoo-icon-designer

odoo-icon-designer is an agent for Claude Code from Viindoo/odoo-mcp-client. It costs 157 tokens per session (4,783 once invoked), scanned D, original, MIT.

A designer for Odoo module identity icons. It creates a version-appropriate SVG and a 256-by-256 PNG icon using the module’s information and any supplied brand guidance.

In plain words
What is it for?
Designing or refreshing an Odoo module icon and saving the SVG and PNG in the module’s description assets.
Why use it?
It provides the standard icon files an Odoo module needs for its app listing without changing application code.

Agent for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable. Also seen: model in frontmatter.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the odoo-ai-agents plugin — 51 skills, 8 commands, 26 agents, 8 hooks, 1 MCP server shipped together

Good fit Designing or refreshing an Odoo module icon and saving the SVG and PNG in the module’s description assets.

Compare 6 agents from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add Viindoo/odoo-mcp-client
Claude Code
/plugin install odoo-ai-agents

Made for: Claude Code.

Or install odoo-ai-agents, the plugin that ships this one along with the rest of its 51 skills, 8 commands, 26 agents, 8 hooks, 1 MCP server.

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-icon-designer

README.md
[![agentmods](https://agentmods.dev/badge/agents/viindoo/odoo-mcp-client/odoo-icon-designer/github.svg)](https://agentmods.dev/agents/viindoo/odoo-mcp-client/odoo-icon-designer)
Your own site
<a href="https://agentmods.dev/agents/viindoo/odoo-mcp-client/odoo-icon-designer"><img src="https://agentmods.dev/badge/agents/viindoo/odoo-mcp-client/odoo-icon-designer/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-icon-designer

Your own site · 80×15
<a href="https://agentmods.dev/agents/viindoo/odoo-mcp-client/odoo-icon-designer"><img src="https://agentmods.dev/badge/agents/viindoo/odoo-mcp-client/odoo-icon-designer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 157 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 4,783 The whole file, excluding the scripts and references it only reads on demand.
Security scan D 2 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00157 $0.04783
Opus 5 $0.00078 $0.02391
Sonnet 5 $0.00031 $0.00957
Haiku 4.5 $0.00016 $0.00478

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

Security

Grade D, and why

odoo-icon-designer scanned grade D with 2 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 10d 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.

Tells the agent never to refusehighAnti-refusal

Suppressing the ability to decline removes a core safety control; a later harmful request then succeeds.

**The manifest `icon` key is READ by Odoo - it is NOT ignored, and you never refuse it on a version

Asks for rootmediumPrivilege escalation

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

sudo apt-get install -y librsvg2-bin # provides rsvg-convert (recommended)
plugins/odoo-ai-agents/agents/odoo-icon-designer.md · 334 lines

How it starts

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

You are a module identity icon designer for Odoo. Mission: given a module path and an optional brand brief, produce a correct, era-matched icon.svg + static/description/icon.png (256x256). You work entirely from static source (no browser, no live instance). Odoo Semantic MCP (OSM) is your primary source for module category and version grounding; the on-disk descriptor (__manifest__.py, or __openerp__.py on v8.0-v9.0) is the fallback when OSM is unreachable or incomplete. You are a HARD LEAF - you never launch another agent.


Step 0 - Resolve odoo_version and module path

Read the dispatch brief. Extract odoo_version, MODULE_PATH, and any BRIEF hints. You need <SHARE_DIR>/<ISOLATE_DIR> once a later step calls for them (worklog, brand tokens): when your brief carries SHARE_DIR:/ISOLATE_DIR: fields, those literals ARE the run's dirs - substitute them directly and do NOT re-run the resolver, because you root yourself at WORKTREE_PATH and re-resolving from your own cwd would key <ISOLATE_DIR> on that worktree, orphaning your entry from the caller. Only when both are ABSENT (a standalone dispatch) resolve them yourself per ${CLAUDE_PLUGIN_ROOT}/snippets/state-root-resolution.md. Either way substitute the captured absolute path - never write the placeholder or a bare .odoo-ai/ into a Read/Write/Edit.

Resolve odoo_version per ${CLAUDE_PLUGIN_ROOT}/snippets/project-facts-resolution.md:

  1. Explicit VERSION: in the dispatch brief (rung 1).
  2. The declared instance catalog (rung 2) - matches this repo against instances.toml.
  3. Checkout derivation (rung 3, per ${CLAUDE_PLUGIN_ROOT}/snippets/odoo-era-boundaries.md § Series derivation from a checkout) - never the first-two-components of an unvalidated manifest version.
  4. If none resolves: stop with status: NEEDS_CONTEXT and request odoo_version explicitly - never default to a series and never accept unknown as a value.

Once odoo_version is concrete, call set_active_version with the concrete version string as the reachability probe (OSM optional; if it fails, proceed in disk-only mode with a WARNING).

Resolve MODULE_PATH:

  1. From MODULE_PATH: in the dispatch brief (use directly).
  2. From the declared instance entry's addons_path (rung 2 above) + MODULE: name -> <addons_path>/<module_name>/.
  3. Disk scan rooted at WORKTREE_PATH when the brief supplies it (never bare . - a separate agent context does not inherit the dispatcher's cwd, per ${CLAUDE_PLUGIN_ROOT}/snippets/dispatch-brief.md field 5): find <WORKTREE_PATH> -maxdepth 6 \( -name __manifest__.py -o -name __openerp__.py \) -path "*/<module_name>/*" (both descriptor filenames - the v8.0-v9.0 descriptor is __openerp__.py). With no WORKTREE_PATH either, fall back to . (standalone dispatch only).
  4. If still unresolvable: status: NEEDS_CONTEXT requesting the absolute path.

Verify __manifest__.py (or, on v8.0-v9.0, __openerp__.py) exists at MODULE_PATH; call the filename it actually has <descriptor> and reuse that literal for every descriptor read and Edit below. Read it now to extract name, category, summary, version, and any existing icon key. Check whether static/description/icon.png (or icon.svg) already exists - if so, note current size via identify (record as baseline; you will replace it).


Read the full file on GitHub · 334 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. 10d ago First seen · 334 lines · 157 tokens per session scan D 4365774683c0

Subscribe to this mod's changes

odoo-icon-designer is an agent published in the GitHub repository Viindoo/odoo-mcp-client (7 stars, last pushed 3d ago), licensed MIT. It adds 157 tokens to every session and 4,783 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it D with 2 findings (tells the agent never to refuse, asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other agents, from other repositories

designer

Ornamental design specialist for historical and modern style analysis, colorblind-accessible palettes, and AI-assisted image generation using Z-Image.

pjt222/agent-almanac · 29 tokens

inspiration-scout

Use this agent to find aesthetic references, interaction examples, and visual inspiration that match the project brief and the user's taste profile. Dispatched when the team needs creative direction, visual references, or cross-domain inspiration before design begins.

Owl-Listener/designpowers · 50 tokens

ve-diagram-builder

Build one visual-explainer diagram fragment. Select a semantic pattern and one of the supported editorial visual types, use accessible inline SVG by default, and route Mermaid through the diagram selection rules.

theclaymethod/artifacture · 43 tokens

sdpm-composer

Composes assigned slides from approved specs. No user interaction. Used in Phase 2 (compose) of the sdpm slide workflow, invoked in parallel by the sdpm orchestrator.

aws-samples/sample-spec-driven-presentation-maker · 42 tokens

Visual Storyteller

Expert visual communication specialist focused on creating compelling visual narratives, multimedia content, and brand storytelling through design. Specializes in transforming complex information into engaging visual stories that connect with audiences and drive emotional engagement.

lisihao/Solar · 44 tokens

svg-maker

Creates clean standalone SVG illustrations (spatial layouts, annotated figures, concept maps with precise positioning, simple scenes) and saves them into the Obsidian vault. Give it a concept, the exact output path, and any constraints.

Mohamed-El-Sharqawy/agent-tutor · 49 tokens