Install
openclaw skills install @sakurako-irs/clawreceiptUse this skill to extract receipt information, record expenses, track budgets, and manage financial receipts using the ClawReceipt CLI.
openclaw skills install @sakurako-irs/clawreceiptUse this skill to interface with the ClawReceipt system whenever the user wants to process a receipt, check their monthly spending budget, or export financial data.
Use this skill when the user wants to:
When the user provides a receipt image or details, extract the relevant fields (Date, Time, Store, Amount, Category) and use the CLI to save it:
Extract details using OCR or LLM vision capabilities.
Ensure you have date (YYYY-MM-DD), time (HH:MM:SS, optional), store (string), amount (float), and category (string, e.g., "อาหาร", "เดินทาง", "Shopping").
Run the CLI command in the ClawReceipt directory:
python run.py add --date "YYYY-MM-DD" --time "HH:MM:SS" --store "<Store>" --amount <Amount> --category "<Category>"
Read the output to check if the budget was exceeded and relay that information to the user.
If the user asks "How much budget do I have left?" or "What is my total spend?":
Run:
python run.py budget
Parse the output which includes "Total Spent" and "Target Budget" and accurately report to the user.
Alert the user if the status indicates "Exceeded Budget!".
If the user wants to set a new monthly budget (e.g., "Set my budget to 5000 baht"):
Run:
python run.py budget --set <Amount>
Confirm to the user that the budget has been updated successfully.
If the user asks to see history or recently recorded receipts:
Run:
python run.py list
Summarize the output table for the user.
If the user asks to see a beautiful dashboard or export to CSV/Excel, you can suggest they run:
python run.py tui
(Note: As an agent, do not run the tui command directly as it will block the terminal. Instruct the user to run it themselves in a new terminal if they want to interact with the UI or manually export the data).
run.py is present in the ClawReceipt root folder before calling.rich, pandas, openpyxl, textual, etc.) by utilizing .\venv\Scripts\activate if available.--store "Full Name" to prevent shell argument splitting.UnicodeEncodeError: Ensure the terminal is using UTF-8 encoding. The run.py handles this internally for Windows, but be aware if piping output.unrecognized arguments: Ensure parameters like --category are explicitly mapped and don't contain unescaped quotes.add command.