odoo-theme-fix

odoo-theme-fix is a skill for Claude Code, Codex from 19prince/claude-odoo-builder. It costs 0 tokens per session (842 once invoked), scanned A, original, MIT.

A specialized instruction set for fixing the appearance of Odoo pages, an open-source business application, after reviewing a screenshot. It writes targeted CSS, or styling rules, and updates the site’s custom code through RPC, a way for software to call another system.

In plain words
What is it for?
Correcting Odoo page colors, readability, form controls, search bars, cards, pagination, badges, and other visual elements.
Why use it?
It helps identify theme, contrast, spacing, and styling problems without changing the page’s underlying structure.

Skill for Claude CodeCodex

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

Good fit Correcting Odoo page colors, readability, form controls, search bars, cards, pagination, badges, and other visual elements.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/19prince/claude-odoo-builder/odoo-theme-fix
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 19prince/claude-odoo-builder --skill odoo-theme-fix
Clone the repo
git clone --depth 1 https://github.com/19prince/claude-odoo-builder

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-theme-fix

README.md
[![agentmods](https://agentmods.dev/badge/skills/19prince/claude-odoo-builder/odoo-theme-fix/github.svg)](https://agentmods.dev/skills/19prince/claude-odoo-builder/odoo-theme-fix)
Your own site
<a href="https://agentmods.dev/skills/19prince/claude-odoo-builder/odoo-theme-fix"><img src="https://agentmods.dev/badge/skills/19prince/claude-odoo-builder/odoo-theme-fix/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-theme-fix

Your own site · 80×15
<a href="https://agentmods.dev/skills/19prince/claude-odoo-builder/odoo-theme-fix"><img src="https://agentmods.dev/badge/skills/19prince/claude-odoo-builder/odoo-theme-fix.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 842 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 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.00000 $0.00842
Opus 5 $0.00000 $0.00421
Sonnet 5 $0.00000 $0.00168
Haiku 4.5 $0.00000 $0.00084

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

Security

Grade A, and why

odoo-theme-fix 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 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.

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.

skills/odoo-theme-fix/SKILL.md · 73 lines

How it starts

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

Skill: odoo-theme-fix

TRIGGER: User shares a screenshot of an Odoo page and asks for visual fixes, theming improvements, or readability changes.

What this skill does

Reviews an Odoo page screenshot against the blueprint dark theme, identifies broken or mismatched elements, writes targeted CSS overrides, and pushes them to website.custom_code_head via RPC — without touching any page arch.


Instructions

When invoked:

  1. Read the screenshot — identify every element that is wrong:

    • White or light backgrounds that should be dark (#071222)
    • Dark text on dark backgrounds (contrast failure)
    • Default Odoo colors breaking the blueprint palette
    • Unstyled form inputs, search bars, cards, pagination, badges
  2. Read workflows/css_theming.md — check the known selector map before writing anything new. Reuse confirmed selectors. Add new ones only when needed.

  3. Read the current custom_code_head:

    sites = c.search_read("website", [], ["id", "custom_code_head"])
    
  4. Write a targeted <style> block following these rules:

    • Use the blueprint palette: #071222 bg, #0a1c33 card bg, #3b8eea / #5da8ff / #7ec8ff blues, #ffffff headings, rgba(255,255,255,.82) body, rgba(255,255,255,.6) muted
    • Scope every selector to the page's body class (e.g. .o_wblog_index, .o_wblog_post_page) to avoid leaking styles globally
    • Use !important on color and background overrides — Odoo's specificity is high
    • Wrap the block in /* == [section name] start == */ and /* == [section name] end == */ CSS comments so it can be cleanly replaced later
    • Strip the previous block for that section before appending the new one (use re.sub with DOTALL)
  5. Push via RPC:

    c.write("website", [site_id], {"custom_code_head": new_head})
    
  6. Confirm what changed and ask for a follow-up screenshot to verify.


Blueprint Palette Reference

Role Value
Page background #071222
Card / panel background rgba(10,28,51,.85)
Elevated surface #0a1c33
Primary blue #3b8eea
Bright blue (links, accents) #5da8ff
Light blue (muted accents) #7ec8ff
Heading text #ffffff
Body text rgba(255,255,255,.82)
Muted text rgba(255,255,255,.55)
Subtle text rgba(255,255,255,.4)
Card border rgba(59,142,234,.22)
Divider rgba(59,142,234,.18)
Blueprint grid line rgba(59,142,234,.07)
Success green #4ade80
Error red #f87171
Warning amber #fbbf24

Read the full file on GitHub · 73 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 · 73 lines · 0 tokens per session scan A af2ff3862764

Subscribe to this mod's changes

odoo-theme-fix is a skill published in the GitHub repository 19prince/claude-odoo-builder (46 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 842 tokens. 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.

Related

Other skills, from other repositories

web-design

A web design workflow for turning a brief, reference website, screenshot, or keywords into a design specification and then web code. It covers visual style, page structure, interaction, responsive layouts, and motion.

xiaopu-ai/web-design · 151 tokens

cinematic-scroll

Build or improve cinematic websites with scroll-driven storytelling, pinned reveals, parallax, kinetic type, and optional 3D. Deliver standalone HTML or integrate into an existing app, with mobile and reduced-motion fallbacks and browser evidence. Also supports scroll audits and motion storyboards. Use for cinematic…

MustBeSimo/cinematic-scroll-skill · 75 tokens

dashmotion

Create dark-themed, animated technical diagrams as self-contained HTML+SVG files — flowcharts whose connectors visibly flow, and architecture diagrams where requests travel as light dots through the system (Diagrid/Temporal landing-page style). Use this skill whenever the user asks for a flowchart, workflow, pipeline…

csthink/dashmotion · 187 tokens

cinematic-scroll

Build or improve cinematic websites with scroll-driven storytelling, pinned reveals, parallax, kinetic type, and optional 3D. Deliver standalone HTML or integrate into an existing app, with mobile and reduced-motion fallbacks and browser evidence. Also supports scroll audits and motion storyboards. Use for cinematic…

MustBeSimo/cinematic-scroll-skill · 75 tokens

avoid-ai-design

Audit and rewrite frontend UI to remove generic AI design patterns ("AI slop"). Use this skill when asked to "de-slop a UI", "make a design look less AI-generated", "audit a component or page for AI design tells", or "fix Claude/Codex-generated frontend that looks generic". Covers HTML/CSS and React/Tailwind/shadcn.…

funboy322/avoid-ai-design · 90 tokens

accessible-animation

This skill should be used when the user asks to "respect prefers-reduced-motion", "honor reduced motion", "make my animations accessible", "fix vestibular / motion-sickness issues", "add a useReducedMotion hook", "gate GSAP / Framer Motion / Lenis for reduced motion", or "meet WCAG 2.3.3 / C39". Provides tiered (not…

iart-ai/web-animation-skills · 98 tokens