Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

spend-pulse消耗脉冲

Agent Skill

spend-pulse 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

35,104

周安装

1,434

GitHub Stars

2

下载量

11,243
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install spend-pulse

简介

通过 Plaid 主动发出支出提醒。通过基于速度的警报,根据每月预算跟踪信用卡支出。

SKILL.md

name
spend-pulse
description
Proactive spending alerts via Plaid. Track credit card spending against a monthly budget with pace-based alerts.

Spend Pulse

Proactive spending alerts via Plaid. Track credit card spending against a monthly budget with pace-based alerts.

Installation

# Install globally
npm install -g spend-pulse

# Or from source
git clone https://github.com/jbornhorst1524/spend-pulse.git
cd spend-pulse
npm install && npm run build && npm link

Verify installation:

spend-pulse --version

First-Time Setup

Run the interactive setup wizard:

spend-pulse setup

This will:

  1. Prompt for Plaid API credentials (get them at https://dashboard.plaid.com/developers/keys)
  2. Ask to choose Sandbox (test data) or Development (real bank) mode
  3. Set monthly spending budget
  4. Open browser for Plaid Link bank authentication
  5. Store credentials securely in macOS Keychain

For Sandbox testing, use these Plaid test credentials when the bank login appears:

  • Username: user_good
  • Password: pass_good

After setup, run initial sync:

spend-pulse sync

Commands

spend-pulse check — Primary Command

Returns alert decision with full context. This is the main command to use.

should_alert: true
reasons:
  - 3 new transactions
  - end of month approaching
month: "2026-01"
budget: 8000
spent: 6801.29
remaining: 1198.71
day_of_month: 30
days_in_month: 31
days_remaining: 1
expected_spend: 7200.00
pace: under
pace_delta: -398.71
pace_percent: -6
pace_source: last_month
oneline: "Jan: $6.8k of $8k (85%) | $1.2k left | 1 days | > On track"
new_transactions: 3
new_items:
  - merchant: Whole Foods
    amount: 47.50
    category: Groceries
  - merchant: Amazon
    amount: 125.00
    category: Shopping

Alert triggers (should_alert: true when any apply):

  • New transactions since last check
  • Over pace (spending faster than expected)
  • Remaining budget < $500
  • End of month (last 3 days)
  • First of month (new month started)

spend-pulse sync

Pull latest transactions from Plaid. Run before check for fresh data.

synced: 16
new: 3
account: "Amex Gold (...1234)"
total_this_month: 6801.29

spend-pulse status [--oneline]

Full spending summary, or quick one-liner:

spend-pulse status --oneline
# Jan: $6.8k of $8k (85%) | $1.2k left | 1 days | > On track

spend-pulse recent [--days N] [--count N]

Recent transactions (default: last 5 days).

spend-pulse config [key] [value]

View or modify settings:

spend-pulse config                  # show all
spend-pulse config target 8000      # set monthly budget
spend-pulse config timezone America/Chicago

spend-pulse link [--status] [--remove <id>]

Manage linked bank accounts:

spend-pulse link --status    # show linked accounts
spend-pulse link             # add another account
spend-pulse link --remove <item_id>

spend-pulse chart [-o <path>]

Generate a cumulative spending chart as a PNG image showing:

  • Current month spending (solid blue line with gradient fill, ends with a dot at today)
  • Last month spending (dashed gray line, full month)
  • Budget target (dashed amber horizontal line)
spend-pulse chart                    # Writes to ~/.spend-pulse/chart.png
spend-pulse chart -o /tmp/chart.png  # Custom output path

Outputs the file path to stdout so you can capture it and attach to messages.

spend-pulse check --chart

Generate a chart alongside the alert check. Adds chart_path to the YAML output:

should_alert: true
chart_path: /Users/you/.spend-pulse/chart.png
# ... rest of check output

Recommended Workflow

# 1. Sync latest transactions
spend-pulse sync

# 2. Check if alert needed, generate chart
spend-pulse check --chart

If should_alert: true: Compose a brief, friendly spending update using the data. Attach the chart image from chart_path — it shows current vs. last month spending at a glance.

If should_alert: false: Stay quiet unless the user asks about spending.

Composing Messages

Use the oneline field as the core message, then add context. Always attach the chart image when available — it communicates pace visually better than any text can.

Under pace (positive):

"Quick spending pulse: Jan at $6.8k of $8k, $1.2k left with 1 day to go. Under pace by 12% — nice work!" [attach chart.png]

On track:

"January update: $5.5k of $8k (69%) with 10 days left. Right on pace. Recent: $125 Amazon, $47 Whole Foods." [attach chart.png]

Over pace (heads up):

"Heads up — January's at $7.2k of $8k with 5 days to go. About 10% over pace. The travel charges added up." [attach chart.png]

Over budget:

"January budget: $8.5k spent, about $500 over the $8k target. Something to keep in mind for February." [attach chart.png]

Guidelines:

  • Tone: helpful friend, not nagging accountant
  • Keep text under 280 characters when possible
  • Mention 1-2 notable items from new_items if interesting
  • Use reasons array for context
  • Always include the chart image — it's designed to be readable on a phone screen

Pace Explained

Spend Pulse paces against last month's actual cumulative spend curve when available, falling back to a linear budget ramp when no prior month data exists.

  • expected_spend: Where you were at this point last month (or linear ramp fallback)
  • spent: Actual spending
  • pace_delta: Difference (negative = under, positive = over)
  • pace: under | on_track | over
  • pace_source: last_month (curve-based) or linear (ramp fallback)

This means early-month bills (rent, subscriptions) won't trigger false "over pace" alerts if you had similar bills last month.

Example: Day 15, last month you'd spent $4.2k by this point → expected ~$4.2k.

Upgrading to Real Bank Data

After testing with Sandbox, upgrade to Development mode for real transactions:

spend-pulse setup --upgrade

This clears sandbox data and connects your real bank account.

Troubleshooting

"Plaid credentials not found": Run spend-pulse setup to configure.

"Access token not found": Run spend-pulse setup to re-authenticate.

"No accounts found": Check spend-pulse link --status and add account if needed.

Stale data: Run spend-pulse sync to refresh from Plaid.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

94.55%
按下载量换算10,630

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills