claudeers.
// Claude Skills

claude-odoo-builder

Turn Claude Code into an Odoo website builder

// Claude Skills[ cli ][ api ][ web ][ claude ]#claude#claude-code#claude-skill#odoo#website-builder#skillsMIT$open-sourceupdated 21 days ago
Actively maintained
89/100
last commit 2 months ago
last release none
releases 0
open issues 0
// star history

Install with your AI

Paste into Claude Code, Cursor, or any agent — it reads the repo and wires the tool into your project.

Install and set up claude-odoo-builder (git-clone project) into my current project.
Found on https://claudeers.com/claude-odoo-builder
Repo: https://github.com/19prince/claude-odoo-builder
Homepage/docs: —
Detected install method: git-clone → git clone https://github.com/19prince/claude-odoo-builder
Category: skills. Platforms: cli, api, web.
Read the repo's README for exact setup and env vars, then install it and wire it into my project.

Claudeers Health Verdict:
active; community-verified: false. Confirm the source before running anything.
// or clone
git clone https://github.com/19prince/claude-odoo-builder

// compatibility

Platformscli, api, web
Operating systems
AI compatibilityclaude
LicenseMIT
Pricingopen-source
LanguagePython

Claude Odoo Builder

Turn Claude Code into an Odoo website builder. One command scaffolds a complete project with tools, workflows, and configuration for designing, building, and deploying pages on your Odoo website.

Disclaimer

By downloading and deploying these files, you take full responsibility. Neither 19 Prince nor Darren are responsible for productivity gains, productivity losses, injury due to falling down rabbit holes, lost sleep, or the annoying conversations you'll feel the need to have about Claude Code.

Seriously, I tried to provide you with some useful tools. I genuinely hope you like them. That said, read the files and be safe out there. You are taking full responsibility for any and all outcomes.


What's Included

Skills

SkillTriggerWhat it does
new-odoo-project/new-odoo-projectScaffolds a full Odoo website builder project — tools, workflows, .env, and CLAUDE.md
odoo-theme-fixShare a screenshot + ask for fixesReviews a page screenshot, writes targeted CSS overrides, and pushes them via RPC

Tools (Python scripts)

ToolPurpose
odoo_client.pyShared Odoo JSON-RPC client used by all other tools
get_page.pyFetch any page's HTML with automatic backup
list_pages.pyList all website pages with publish status
push_page.pyCreate or update pages with QWeb wrapping
validate_html.pyPre-push HTML validator for Odoo compatibility
scaffold_snippet.pyGenerate a full Odoo module skeleton (models, views, security, data, i18n, static)
create_survey.pyBuild and deploy Odoo surveys from a YAML definition — questions, answer options, access mode
migrate_to_production.pyMigrate staging changes to production with backup and rollback
list_mailings.pyList email mailings and mailing lists
get_mailing.pyFetch a mailing's body_arch HTML with backup
push_mailing.pyCreate or update draft mailings (never sends)

Workflows (Markdown SOPs)

WorkflowPurpose
design_page.mdStep-by-step guide for designing new pages
design_system.mdBootstrap/Odoo reference with 13 paste-ready section templates
push_to_odoo.mdHow to push content to Odoo safely
css_theming.mdCSS injection via custom_code_head
create_snippet.mdHow to build and deploy custom snippet modules
module_structure.mdStandard Odoo module directory layout — what each folder is for and when to use it
design_survey.mdHow to plan, write, and deploy an Odoo survey from a YAML definition
manage_pages.mdPage operations reference (list, fetch, update, delete)
create_mailing.mdFormat markdown content into an Odoo email mailing
migrate_staging_to_prod.mdFull migration guide with dry-run and rollback

Prerequisites

  • Claude Code installed
  • Python 3.8+
  • An Odoo instance with admin access (URL, database name, login email)

Installation

  1. Clone this repo:
git clone https://github.com/19prince/claude-odoo-builder.git
  1. Copy the skills into your Claude Code skills directory:
cp -r claude-odoo-builder/skills/* ~/.claude/skills/
  1. Install Python dependencies:
pip install requests python-dotenv pyyaml

Quick Start

Open Claude Code in your terminal and type:

/new-odoo-project

Claude will ask you for:

  1. Project directory — where the project should live
  2. Client/project name — a short name for your project
  3. Odoo URL — your Odoo instance URL
  4. Database name — your Odoo database name
  5. Login email — the email you use to log into Odoo
  6. Staging or production? — whether you have a separate staging server

Claude creates the project structure and a .env file with your credentials template. You fill in the password yourself — Claude never sees it.


After Setup

Add your password

Open the .env file in your project and fill in ODOO_PASSWORD=:

nano ~/projects/my-website/.env

Verify the connection

Claude automatically tests the connection. If it works, you'll see all your website pages listed with their publish status.

Check the website editor

Log into your Odoo backend, open the website editor, and verify:

  • Snippet block thumbnails load without warning icons
  • You can drag blocks onto the page
  • Text and image toolbars appear when clicking elements

If blocks show orange warning icons, the page arch is missing <div id="wrap" class="oe_structure"> inside the layout call. This is handled automatically by push_page.py — if you see it on an existing page, re-push the arch through the tool.


What You Can Do

Design and build pages

Tell Claude what page you want. It plans the layout, writes Odoo-compatible HTML using paste-ready templates, validates it, and pushes it to your website.

Style with CSS

Claude injects custom CSS through Odoo's custom_code_head — no theme module needed. Describe what you want changed and it writes scoped CSS.

Manage pages

List all pages, fetch HTML for editing, publish or unpublish, create new pages from scratch.

Fix visual issues from screenshots

Share a screenshot and Claude identifies broken elements, writes targeted CSS fixes, and pushes them — all without touching page content.

Create email mailings

Bring your newsletter content as structured markdown. Claude fetches an existing mailing as a template, formats the content into Odoo's email HTML, and pushes it as a draft — ready for you to review and send from Odoo.

Build and deploy surveys

Describe your survey — webinar feedback, NPS, customer research, lead-gen quiz. Claude writes a YAML definition with your questions and answer options, dry-runs it to confirm the payload, then deploys it to Odoo and returns the public share URL. Works with radio buttons, checkboxes, free text, scale ratings, date inputs, and more. Requires the Odoo Surveys app to be installed.

Build a module

Claude scaffolds a complete, installable Odoo module following the standard directory structure — models/, views/, security/, data/, i18n/, and static/. Whether you're building a reusable website snippet or a full business module, the skeleton is production-ready from the first file. Claude follows module_structure.md to know what goes where.

Migrate staging to production

Build on staging, then migrate to production with automatic backup and one-command rollback.


Project Structure

After setup, your project folder looks like this:

my-website/
  .env            # Your Odoo credentials (never shared)
  CLAUDE.md       # Instructions Claude reads every session
  .tmp/           # Temporary working files
  tools/          # Python scripts that talk to Odoo
  workflows/      # Step-by-step guides Claude follows

Tips

  • Always dry-run before migrating — the migration tool has a --dry-run flag
  • Surveys have a dry-run toocreate_survey.py --dry-run prints the full payload before touching Odoo
  • Claude reads workflows automatically — ask it to design a page and it reads design_page.md first
  • Everything is backed up — before any destructive operation, tools save a backup to .tmp/
  • Passwords stay local — only in your .env file, which is never committed

License

MIT — see LICENSE.

// faq

What is claude-odoo-builder?

Turn Claude Code into an Odoo website builder. It is open-source on GitHub.

Is claude-odoo-builder free to use?

claude-odoo-builder is open-source under the MIT license, so it is free to use.

What category does claude-odoo-builder belong to?

claude-odoo-builder is listed under skills in the Claudeers registry of Claude-compatible tools.

0 views
42 stars
unclaimed
updated 21 days ago

// embed badge

claude-odoo-builder on Claudeers
[![Claudeers](https://claudeers.com/api/badge/claude-odoo-builder.svg)](https://claudeers.com/claude-odoo-builder)

// retro hit counter

claude-odoo-builder hit counter
[![Hits](https://claudeers.com/api/counter/claude-odoo-builder.svg)](https://claudeers.com/claude-odoo-builder)

// reviews

// guestbook

0/500

// related in Claude Skills

🔓

An agentic skills framework & software development methodology that works.

// skillsobra/Shell272,506MIT[ claude ]
🔓

Public repository for Agent Skills

// skillsanthropics/Python169,406[ claude ]
🔓

💫 Toolkit to help you get started with Spec-Driven Development

// skillsgithub/Python129,208MIT[ claude ]
🔓

AI coding assistant skill (Claude Code, Codex, OpenCode, Cursor, Gemini CLI, and more). Turn any folder of code, SQL schemas, R scripts, shell scripts, docs,…

// skillsGraphify-Labs/Python106,387MIT[ claude ]
→ see how claude-odoo-builder connects across the ecosystem