Letzdoo Claude Marketplace
A curated collection of Claude Code plugins for professional Odoo ERP development — fast code indexing, intelligent patterns, token optimization, and live instance querying.
Part of the Letzdoo AI Marketplace for Odoo — a full ecosystem of AI-powered tools for Odoo ERP implementation.
Available Plugins
| Plugin | Version | Description |
|---|
| odoo-doodba-dev | 2.0.0 | Doodba development toolkit with fast SQLite-based code indexer |
| odoo-development | 3.0.0 | 123 skill files covering Odoo 14-19 patterns, OWL, security, migrations |
| odoo-query | 1.0.0 | Read-only XML-RPC queries against live Odoo instances |
| odoo-token-killer | 1.0.0 | Rust CLI proxy that cuts token usage 60-90% via smart output filtering |
Quick Start
# Add the marketplace
/plugin marketplace add https://github.com/letzdoo/claude-marketplace.git
# Install the plugins you need
/plugin install odoo-doodba-dev@letzdoo-marketplace
/plugin install odoo-development@letzdoo-marketplace
/plugin install odoo-token-killer@letzdoo-marketplace
# Run setup
/odoo-setup # Environment + code indexer
/otk-setup # Token optimization hook
Plugin Compatibility
| Plugin | Requires Doodba | Works with any Odoo | Standalone |
|---|
| odoo-development | | | Yes |
| odoo-doodba-dev | Yes | | |
| odoo-query | | Yes | Yes |
| odoo-token-killer | | | Yes |
Recommended stack for Doodba projects: install all four plugins together.
Plugin Details
odoo-doodba-dev
Professional Odoo development toolkit for Doodba containers with a SQLite-based code indexer that delivers sub-100ms queries and 95% token savings compared to reading full source files.
Commands:
| Command | Description |
|---|
/odoo-setup | Validate environment, install dependencies, build index |
/odoo-dev | Auto-detect task complexity (Quick / Full / Search modes) |
/odoo-search | Natural language code search across indexed codebase |
/odoo-scaffold | Generate properly structured Odoo modules |
/odoo-test | Run and manage tests via Doodba's invoke test |
Indexer capabilities: models, fields, views, actions, menus, XML IDs, module dependencies, cross-references — all queryable in <100ms.
Requirements: Doodba deployment, Docker 20.10+, Python 3.10+, uv (auto-installed)
Full documentation
odoo-development
123 progressively-loaded skill files covering Odoo versions 14 through 19: ORM patterns, view types, OWL components (v1/v2/v3), security, accounting, and version migration guides.
Commands:
| Command | Description |
|---|
/odoo-module | Scaffold a new Odoo module with best practices |
/odoo-owl | Generate OWL components (version-aware) |
/odoo-review | Review module against Odoo best practices |
/odoo-security | Generate or audit access rights and record rules |
/odoo-test | Generate test cases |
/odoo-upgrade | Analyze version upgrade compatibility |
Agents:
odoo-context-gatherer — compiles relevant patterns before code generation (auto-invoked)
odoo-code-reviewer — deep review against Odoo conventions
odoo-upgrade-analyzer — version compatibility analysis
odoo-skill-finder — locates relevant skill files on demand
Skill categories: core ORM, views (form/tree/kanban/search), actions & menus, security, OWL (v1.x/v2.x/v3.x), business modules (accounting, sales, HR, stock, purchase, project), portal, external APIs, webhooks, dashboards, performance, and version-specific breaking changes.
odoo-query
Connect to any Odoo instance via XML-RPC for safe, read-only investigation.
Command: /odoo-query
Allowed operations: search, read, search_read, fields_get — nothing else.
Security model:
- Write operations are blocked at the protocol level
- API key authentication preferred over passwords
- Credentials are session-scoped, never persisted
Use cases: investigate production data issues, explore model structures, debug domain filters, verify record states.
odoo-token-killer
Rust CLI proxy inspired by RTK that intercepts Claude Code tool calls via a PreToolUse hook and returns intelligently filtered output. Claude sees concise summaries; full output is preserved in tee files for recovery.
Commands:
| Command | Description |
|---|
/otk-setup | Build binary, register hook, validate installation |
/otk-gain | Analytics dashboard showing token savings |
How it works: