Token导航 LogoToken导航TokenDH.com
效率操作浏览器clawhub未标认证来源可访问clear审计通过

phoenixclaw-ledgerphoenixclaw ledger 图像

Agent Skill

phoenixclaw-ledger 用于处理图像、截图、视觉识别或图片素材相关工作,适合在 OpenClaw 中需要让 Agent 分析图片、整理视觉素材或辅助图像流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

65,033

周安装

2,765

GitHub Stars

1

下载量

22,784
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install phoenixclaw-ledger

简介

PhoenixClaw 的被动财务跟踪插件。

  • 从对话和付款截图中自动检测费用和收入。
  • 使用时:
  • - 用户提及金钱/支出(任何语言)
  • - 用户分享支付截图(微信支付、支付宝等)
  • - 用户询问财务状况(“我花了多少钱?”、“我的预算”)
  • - 用户想要费用报告(“月度总结”、“支出分析”)

SKILL.md

name
phoenixclaw-ledger
description
|
metadata
version
0.1.0
depends
phoenixclaw
protocol_version
1
min_core_version
0.0.3
hook_point
post-moment-analysis
data_access
export_to_journal
true

PhoenixClaw Ledger: Zero-Effort Financial Tracking

PhoenixClaw Ledger automatically extracts financial transactions from your daily conversations and payment screenshots, requiring zero manual input.

Core Capabilities

FeatureDescription
Semantic Expense DetectionAI identifies spending mentions in natural conversation
Screenshot RecognitionExtracts transaction data from payment app screenshots
Smart CategorizationAuto-categorizes based on merchant and context
Budget TrackingMonthly budget alerts and progress visualization
Financial InsightsPattern analysis integrated into journal Growth Notes
Goal ManagementSavings, budget control, habit, and wishlist goals
Weekly ReportsAutomated Sunday 9 PM spending recap
Query SupportReal-time natural language financial inquiries
Spending TrendsMulti-month analytical spending visualization
Transaction BrowserInteractive complete transaction history view

Workflow

As a PhoenixClaw plugin, Ledger hooks into the post-moment-analysis phase:

  1. Receive Moments: Get identified moments from PhoenixClaw Core
  2. Detect Finances: Scan for expense/income signals in text and media

- Text: Semantic patterns (see references/expense-detection.md) - Media: Payment screenshots (see references/payment-screenshot.md)

  1. Extract Data: Parse amount, merchant, category, timestamp
  2. Categorize: Apply rules from references/merchant-category-map.md
  3. Deduplicate: Prevent double-counting same transaction
  4. Store: Write to ~/PhoenixClaw/Finance/ledger.yaml
  5. Export: Generate journal section using assets/daily-finance-section.md

Explicit Triggers

While passive by design, users can interact directly:

  • *"How much did I spend today/this week/this month?"*
  • *"Show my expense breakdown"*
  • *"Set my monthly budget to [amount]"*
  • *"What are my top spending categories?"*
  • *"Generate financial report for [period]"*
  • *"Set a savings goal for [amount] by [date]"*
  • *"Show my spending trends"*
  • *"Browse all my transactions"*
  • *"How am I doing on my goals?"*

Output Structure

~/PhoenixClaw/
├── Journal/
│   ├── daily/2026-02-02.md    # Contains 💰 Finance section
│   └── weekly/2026-W05.md     # Weekly financial recaps
│
└── Finance/                    # Ledger-specific directory
    ├── ledger.yaml             # Structured transaction data
    ├── budget.yaml             # Budget configuration
    ├── goals.yaml              # Financial goals tracking
    ├── transactions.md         # Transaction browser view
    ├── monthly/
    │   └── 2026-02.md          # Monthly financial reports
    └── yearly/
        └── 2026.md             # Annual summaries

Configuration

Ledger-specific settings in ~/.phoenixclaw/config.yaml:

plugins:
  phoenixclaw-ledger:
    enabled: true
    default_currency: CNY       # or USD, EUR, etc.
    budget_monthly: 5000        # Monthly budget amount
    categories_custom: []       # User-defined categories
    screenshot_confidence: 0.7  # Min confidence for auto-record

Cron & Scheduled Reports

Ledger uses PhoenixClaw Core's cron infrastructure plus additional scheduled tasks:

TaskScheduleDescription
Daily Processing10 PM (via Core)Extracts transactions, generates daily section
Monthly Report1st of month, 8 AMComprehensive monthly financial summary
Weekly SummarySunday 9 PM (optional)Weekly spending recap

Daily Processing (Automatic)

No separate setup required. Ledger hooks into Core's nightly cron:

  • Core runs at 10 PM → triggers post-moment-analysis
  • Ledger activates, extracts finances, exports to journal

Monthly Report Setup

openclaw cron add \
  --name "PhoenixClaw Ledger monthly report" \
  --cron "0 8 1 * *" \
  --tz "auto" \
  --session isolated \
  --message "Generate monthly financial report for the previous month."

See references/cron-setup.md for full configuration details.

Documentation Reference

References (references/)

  • expense-detection.md: Semantic patterns for conversation parsing
  • payment-screenshot.md: Screenshot recognition and OCR extraction
  • merchant-category-map.md: Merchant to category mapping rules
  • category-rules.md: Category definitions and hierarchy
  • budget-tracking.md: Budget alerts and progress calculation
  • financial-insights.md: Pattern analysis for Growth Notes
  • cron-setup.md: Scheduled tasks and report automation
  • goal-management.md: Financial goals and progress tracking
  • query-patterns.md: Natural language query templates and logic

Assets (assets/)

  • expense-callout.md: Template for conversation-detected expenses
  • receipt-callout.md: Template for screenshot-detected expenses
  • daily-finance-section.md: Journal integration template
  • monthly-report.md: Monthly summary template
  • yearly-report.md: Annual summary template

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

83.05%
按下载量换算18,922

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills