ワンクリックで
odoo-new-application
setup a new Odoo module, defined the manifest, and understand the addon directory structure.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
setup a new Odoo module, defined the manifest, and understand the addon directory structure.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
A router skill that identifies and recommends the most appropriate Odoo skill for a given user request.
Create HTTP endpoints for Websites and APIs.
Comprehensive guide to Odoo fields, including basic, relational, computed, and robust technical features (indexing, company_dependent, properties).
Master the Odoo ORM for data manipulation, environment management, and CRUD operations.
Configure Access Control Lists (ACLs) using CSV files.
Write automated tests using TransactionCase and Form emulators to ensure code quality.
| name | Odoo New Application |
| description | setup a new Odoo module, defined the manifest, and understand the addon directory structure. |
Create a new module (e.g., estate) to manage Real Estate Advertisements.
~/src/tutorials/estate).__init__.py: Can be empty initially.__manifest__.py: MUST contain a dictionary with at least the name key.__manifest__.py)Describes the module to the Odoo server.
Example:
{
'name': 'Real Estate',
'depends': [
'base', # The minimal dependency
],
'application': True, # Flags it as an "App" in the Apps list
'category': 'Real Estate',
'summary': 'Manage real estate ads',
'installable': True,
'license': 'LGPL-3',
}
name: Title of the module.depends: List of module technical names that must be installed before this one.application: If True, appears in the "Apps" filter. Otherwise, it's a technical module.odoo-bin -u ... or just restart process).estate).