Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计通过

receiptreceipt 搜索

Agent Skill

receipt 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,902

周安装

326

GitHub Stars

公开资料未说明

下载量

2,582
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:receipt(receipt 搜索)
来源仓库:https://github.com/ckchzh/receipt
安装命令:
openclaw skills install receipt
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install receipt

简介

扫描、分类并汇总费用收据,用于记录购买、支出统计与预算预测。

  • 适用于个人财务管理、企业报销审计与税务申报准备。receipt 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 支持图像识别与关键字段提取,自动生成结构化账单。
  • 安装命令:openclaw skills install receipt。
  • 需授权访问摄像头或上传图片,敏感票据建议脱敏后处理。

SKILL.md

name
receipt
version
2.0.0
author
BytesAgain
homepage
https://bytesagain.com
source
https://github.com/bytesagain/ai-skills
license
MIT-0
tags
[receipt, tool, utility]
description
Scan, categorize, and total receipts for expenses. Use when recording purchases, categorizing spending, balancing monthly totals, forecasting budgets.

Receipt

A command-line finance toolkit for recording, categorizing, and analyzing receipts and expenses. Track purchases, monitor spending trends, forecast budgets, set alerts, compare periods, and annotate tax-relevant items — all stored locally with timestamped history, full-text search, and multi-format export.

Commands

The following commands are available via receipt <command> [args]:

Finance Operations

CommandDescription
record <input>Record a receipt or purchase entry (e.g. "Lunch at cafe $12.50"). Called without args, shows recent record entries.
categorize <input>Categorize a spending item (e.g. "Office supplies — Q1 budget"). Called without args, shows recent categorize entries.
balance <input>Log a balance update or reconciliation note (e.g. "Monthly balance: $3,420"). Called without args, shows recent balance entries.
trend <input>Record a spending trend observation (e.g. "Groceries up 15% vs last month"). Called without args, shows recent trend entries.
forecast <input>Log a budget forecast (e.g. "Projected Q2 spend: $8,000"). Called without args, shows recent forecast entries.
export-report <input>Save an export/report note (e.g. "Monthly PDF sent to accountant"). Called without args, shows recent export-report entries.
budget-check <input>Record a budget check result (e.g. "Travel budget 78% used, $440 remaining"). Called without args, shows recent budget-check entries.
summary <input>Log a summary note (e.g. "Week 12 total: $327.50 across 14 transactions"). Called without args, shows recent summary entries.
alert <input>Record a spending alert (e.g. "Dining budget exceeded by $65"). Called without args, shows recent alert entries.
history <input>Log a history note. Called without args, shows recent history entries.
compare <input>Record a comparison note (e.g. "March vs February: +$200 on utilities"). Called without args, shows recent compare entries.
tax-note <input>Annotate a tax-relevant item (e.g. "Home office deduction — $150/mo"). Called without args, shows recent tax-note entries.

Utility Commands

CommandDescription
statsShow summary statistics — entry counts per category, total entries, data size, and earliest record timestamp.
export <fmt>Export all data in json, csv, or txt format. Output file saved to the data directory.
search <term>Full-text search across all log files (case-insensitive).
recentShow the 20 most recent activity entries from the global history log.
statusHealth check — version, data directory path, total entries, disk usage, last activity, and OK status.
helpDisplay the full command reference.
versionPrint the current version (v2.0.0).

Data Storage

All data is persisted locally in ~/.local/share/receipt/:

  • Per-command logs — Each command (record, categorize, balance, etc.) writes to its own .log file with YYYY-MM-DD HH:MM|<input> format.
  • Global history — Every action is also appended to history.log with MM-DD HH:MM <command>: <input> format for unified audit trail.
  • Export files — Generated exports are saved as export.json, export.csv, or export.txt in the same directory.

No external services, databases, or network connections are required. Everything runs locally via bash.

Requirements

  • Bash 4+ (uses local variables, set -euo pipefail)
  • Standard Unix utilities: date, wc, du, head, tail, grep, basename, cat
  • No root privileges needed
  • No external dependencies or package installs

When to Use

  1. Logging daily purchases — Use record to capture receipts as they happen, building a searchable expense journal over time.
  2. Organizing spending by category — Use categorize and budget-check to track how much goes to groceries, dining, transport, subscriptions, etc.
  3. Monthly financial reviews — Use summary, compare, and trend to analyze spending patterns across periods.
  4. Tax preparation — Use tax-note to flag deductible items throughout the year so they're easy to find at tax time.
  5. Budget forecasting and alerts — Use forecast to project upcoming spend and alert to document when budgets are exceeded.

Examples

# Record a new receipt
receipt record "Grocery store — $67.30, weekly shopping"

# Categorize a purchase
receipt categorize "Amazon order $42.99 — Office Supplies"

# Check budget status
receipt budget-check "Food budget: $320 of $400 used, 8 days remaining"

# Log a spending trend
receipt trend "Utility bills trending 12% higher than same quarter last year"

# Add a tax note
receipt tax-note "Professional development course $299 — deductible education expense"

# Compare two months
receipt compare "April total $2,180 vs March $1,950 — +$230, mostly dining"

# View summary statistics
receipt stats

# Export all data as CSV
receipt export csv

# Search for all entries mentioning 'Amazon'
receipt search Amazon

# View recent activity
receipt recent

How It Works

Each command follows the same pattern:

  1. With arguments — Timestamps the input, appends it to the command-specific log file, increments the entry count, and writes to the global history log.
  2. Without arguments — Displays the 20 most recent entries from that command's log file.

The stats command aggregates counts across all log files. The export command iterates through all logs and produces a unified output in your chosen format. The search command performs a case-insensitive grep across every log file.


Powered by BytesAgain | bytesagain.com | hello@bytesagain.com

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

97.18%
按下载量换算2,509

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install receipt 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills