用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/dvcrn/openclaw-skills-marketplace --skill odoo-store-manager命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
监控 OpenClaw GitHub 版本更新,获取最新版本发布说明,翻译成中文, 并推送到 Telegram 和 Feishu。用于:(1) 定时检查版本更新 (2) 推送版本更新通知 (3) 生成中文版发布说明
The philosophical layer for AI agents. Maps behavior to Spinoza's 48 affects, calculates persistence scores, and generates geometric self-reports. Give your agent a soul.
Order food/drinks (点餐) on an Android device paired as an OpenClaw node. Uses in-app menu and cart; add goods, view cart, submit order (demo, no real payment).
基于 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.