ワンクリックで
rlm-utils
Recursive Language Models utilities for partitioning large datasets and aggregating results from sub-agents in OdooClaw.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Recursive Language Models utilities for partitioning large datasets and aggregating results from sub-agents in OdooClaw.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Microsoft Edge Text-to-Speech (TTS) synthesis. Converts text to natural audio using Edge's AI voices. Uploads directly to Odoo as voice attachments with discuss.voice.metadata. Use when user wants voice/audio response, asks to "speak this", "read aloud", "voice response".
Read and control I2C and SPI peripherals on Sipeed boards (LicheeRV Nano, MaixCAM, NanoKVM).
Extract supplier invoice data from Odoo attachment (PDF/image) using an OpenAI-compatible vision model and optionally create the vendor bill automatically in Odoo.
Legacy reference document kept for migration context. Use the odoo-mcp skill and tools for active Odoo operations.
Speech-to-Text transcription using Whisper. Transcribes voice messages from Odoo attachments to text. Supports local Faster Whisper (no API key) and OpenAI Whisper API fallback. Use when user sends a voice note or audio attachment.
Extract supplier invoice data from Odoo attachment (PDF/image) using an OpenAI-compatible vision model and optionally create the vendor bill automatically in Odoo.
| name | rlm-utils |
| description | Recursive Language Models utilities for partitioning large datasets and aggregating results from sub-agents in OdooClaw. |
This skill provides essential tools for implementing the Recursive Language Models (RLM) reasoning strategy within OdooClaw. It allows the agent to handle large datasets by partitioning them into smaller, manageable chunks and aggregating results from sub-agents.
The strategy follows a context-centric decomposition philosophy: keep the root context small, recursively process subsets, and then consolidate.
rlm_partition)Splits a large list of Odoo records (from search_read) into multiple JSON files stored in the workspace.
search_read -> rlm_partition -> spawn/subagent for each chunk.rlm_aggregate)Combines results from multiple files or sub-agent outputs into a single report.
rlm_aggregate -> Final User Response.When faced with a query requiring deep analysis of many records (e.g., "Analyze the last 100 invoices for patterns"):
odoo-mcp tools to fetch records, then immediately use rlm_partition if the list is large.odooclaw/workspace/tmp/rlm/ as a variable store.rlm_partition.rlm_aggregate or a final reasoning step.odoo-mcp queries.