# Send phoenixclaw-ledger to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "phoenixclaw-ledger",
    "name": "phoenixclaw-ledger",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/goforu/phoenixclaw-ledger",
    "canonicalUrl": "https://clawhub.ai/goforu/phoenixclaw-ledger",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/phoenixclaw-ledger",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=phoenixclaw-ledger",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "assets/transaction-browser.md",
      "assets/daily-finance-section.md",
      "assets/yearly-report.md",
      "assets/expense-callout.md",
      "assets/weekly-report.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/phoenixclaw-ledger"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/phoenixclaw-ledger",
    "downloadUrl": "https://openagent3.xyz/downloads/phoenixclaw-ledger",
    "agentUrl": "https://openagent3.xyz/skills/phoenixclaw-ledger/agent",
    "manifestUrl": "https://openagent3.xyz/skills/phoenixclaw-ledger/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/phoenixclaw-ledger/agent.md"
  }
}
```
## Documentation

### 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

FeatureDescriptionSemantic Expense DetectionAI identifies spending mentions in natural conversationScreenshot RecognitionExtracts transaction data from payment app screenshotsSmart CategorizationAuto-categorizes based on merchant and contextBudget TrackingMonthly budget alerts and progress visualizationFinancial InsightsPattern analysis integrated into journal Growth NotesGoal ManagementSavings, budget control, habit, and wishlist goalsWeekly ReportsAutomated Sunday 9 PM spending recapQuery SupportReal-time natural language financial inquiriesSpending TrendsMulti-month analytical spending visualizationTransaction BrowserInteractive complete transaction history view

### Workflow

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

Receive Moments: Get identified moments from PhoenixClaw Core
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)


Extract Data: Parse amount, merchant, category, timestamp
Categorize: Apply rules from references/merchant-category-map.md
Deduplicate: Prevent double-counting same transaction
Store: Write to ~/PhoenixClaw/Finance/ledger.yaml
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:

TaskScheduleDescriptionDaily Processing10 PM (via Core)Extracts transactions, generates daily sectionMonthly Report1st of month, 8 AMComprehensive monthly financial summaryWeekly 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.

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: goforu
- Version: 0.0.2
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/phoenixclaw-ledger)
- [Send to Agent page](https://openagent3.xyz/skills/phoenixclaw-ledger/agent)
- [JSON manifest](https://openagent3.xyz/skills/phoenixclaw-ledger/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/phoenixclaw-ledger/agent.md)
- [Download page](https://openagent3.xyz/downloads/phoenixclaw-ledger)