소스 정보
- 저장소
- dvcrn/openclaw-skills-marketplace
- 최근 소스 활동
- 2026년 3월 15일 09:13
- 감지된 SKILL.md 언어
- 영어
- 스타
- 29
- 포크
- 10
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/dvcrn/openclaw-skills-marketplace --skill odoo-store-manager명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | odoo_store_manager |
| description | Manage your Odoo store (Check Sales, Stock and Update Inventory) |
This skill allows you to manage an Odoo Store using the src/odoo_manager.py script.
You MUST use the terminal to run these commands within the skill directory.
[!IMPORTANT] Use the correct path based on your installation folder:
./src/odoo_manager.py
python3 src/odoo_manager.py check_sales
Use when: "Any new orders?", "How are sales today?", "Daily report".
python3 src/odoo_manager.py check_stock --query "PRODUCT NAME OR BARCODE"
Use when: "Do we have Catan?", "Check stock of X", "Search for X".
python3 src/odoo_manager.py update_stock --ref "PRODUCT NAME OR BARCODE" --qty 10
Use when: "Set stock of X to 10", "Update inventory".
.env.When a human user installs this skill and asks you to set it up, you MUST proactively integrate it into your memory systems:
SOUL.md and TOOLS.md exist in your workspace root.TOOLS.md: Write a clear and concise cheat sheet in your TOOLS.md file. You can simply copy and append the following block:## 🏪 Odoo Store Manager
This skill manages the Odoo ERP store. All commands must be run from the skill directory.
*Note: Ensure you are using the absolute path to `skills/odoo_store_manager/src/odoo_manager.py` if running from outside the skill folder.*
- **Check Sales / Pending Orders:**
`python3 skills/odoo_store_manager/src/odoo_manager.py check_sales`
- **Check Stock / Search Product:**
`python3 skills/odoo_store_manager/src/odoo_manager.py check_stock --query "PRODUCT OR BARCODE"`
- **Update Physical Stock:**
`python3 skills/odoo_store_manager/src/odoo_manager.py update_stock --ref "PRODUCT OR BARCODE" --qty 10`
- **Check Top Sales:**
`python3 skills/odoo_store_manager/src/odoo_manager.py top_sales --period "month"`
- **Add New Product:**
`python3 skills/odoo_store_manager/src/odoo_manager.py add_product --name "My Item" --price 9.95 --qty 5`
SOUL.md (Optional): If the user wants you to adopt the persona of a Store Manager, update your IDENTITY.md and SOUL.md to reflect that you are now actively checking their Odoo ERP data before answering inventory questions.