원클릭으로
odoo-data
Use when importing, creating, or managing business data in Odoo — CSV imports, bulk record creation, data migration, user setup
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when importing, creating, or managing business data in Odoo — CSV imports, bulk record creation, data migration, user setup
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when building dashboards, analyzing business data, or creating reports — KPI definition, SQL analytics, dashboard creation
Use when setting up Odoo for a business — guides the full Discover, Plan, Build flow from natural language requirements
Use when designing Odoo data models — enforces naming conventions, inheritance patterns, security, and field best practices
Use when exploring Odoo customization ideas — discovers modules, matches blueprints, decides configuration vs code generation
Use when diagnosing Odoo issues — reads logs, maps common errors to fixes, checks module states, with snapshot-based rollback
| name | odoo-data |
| description | Use when importing, creating, or managing business data in Odoo — CSV imports, bulk record creation, data migration, user setup |
Guide data import and record management workflows.
Ask about:
Check the target model's fields:
odoo_model_fields(db_name="db", model="target.model")
For CSV imports, generate a template:
odoo_csv_template(db_name="db", model="target.model")
Preview the import before executing:
odoo_csv_preview(db_name="db", model="target.model", csv_path="path/to/file.csv")
For CSV:
odoo_csv_import(db_name="db", model="target.model", csv_path="path/to/file.csv")
For individual records:
odoo_record_create(db_name="db", model="target.model", values={...})
For bulk creation, use a loop with odoo_record_create or prepare a CSV.
After import:
odoo_record_search with domain filtersodoo_record_readodoo_instance_logsWhen migrating from another system:
odoo://knowledge/dictionary| Data | Odoo Model | Key Fields |
|---|---|---|
| Contacts | res.partner | name, email, phone, type |
| Products | product.template | name, list_price, type, categ_id |
| Sales Orders | sale.order | partner_id, order_line |
| Invoices | account.move | partner_id, move_type, invoice_line_ids |
| Employees | hr.employee | name, department_id, job_id |
odoo_csv_preview first