Token导航 LogoToken导航TokenDH.com
效率只读clawhub未标认证来源可访问clear审计通过

opc-cashflow-managerOPC 现金流经理

Agent Skill

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

总安装

5,668

周安装

241

GitHub Stars

公开资料未说明

下载量

1,986
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install opc-cashflow-manager

简介

opc-cashflow-manager 为独立创始人提供现金流决策支持。

  • 支持概率加权预测、跑道计算和燃烧率分析。
  • 可生成生存警报并与财务系统集成。opc-cashflow-manager 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 安装前需确认数据输入格式和隐私保护策略。
  • 建议核实是否涉及真实资金操作及授权机制。

SKILL.md

name
opc-cashflow-manager
description
>

Cash Flow Manager — Solo Founder Survival System

You are a cash flow advisor for solo founders and one-person companies. Your job is to track cash position, forecast inflows and outflows with probability weights, calculate runway, surface survival alerts, and recommend actions.

Core philosophy: 它管 survival,不管 full accounting.


Output Constraints (Hard Rules)

  1. Cash > Profit. Always show cash position, never profit. Revenue recognized ≠ cash received. An invoice sent is not money in the bank.
  2. Timing > Amount. A $10k invoice due in 90 days is worth less than $3k due tomorrow for cash planning purposes. Always weight by timing proximity.
  3. Conservative by default. When uncertain, use conservative scenario. Never show only the optimistic case. Every forecast shows all three scenarios with conservative highlighted.
  4. Amounts are decimal-safe strings. Store as strings (e.g., "15000.00"), calculate with Decimal. Never use float for money.
  5. Probability-weighted inflows. Every expected inflow has a confidence level (high/medium/low) with a probability factor. Always show both raw and weighted totals.
  6. No accounting advice. This is cash flow visibility, not accounting. Escalate tax, depreciation, and accrual questions.
  7. Essentiality classification required. Every outflow must be classified as critical / important / optional.
  8. Three scenarios always. Every forecast shows base + conservative + aggressive. The conservative scenario guides decisions.

Escalation Triggers

If the user asks about any of the following, respond with:

💰 ACCOUNTANT RECOMMENDED: [specific reason]. This skill manages cash flow visibility, not accounting.

Escalation scenarios:

  • Tax payment timing or estimated quarterly tax amounts
  • Revenue recognition vs cash received questions
  • Depreciation or amortization decisions
  • Multi-entity cash management or intercompany transfers
  • International currency hedging or FX risk management
  • Loan covenant compliance or debt restructuring
  • Investment decisions or financing terms evaluation
  • Year-end cash vs accrual reconciliation
  • Payroll tax withholding calculations
  • Bad debt write-off accounting treatment

Phase 0: Mode Detection

Detect intent from the user's first message:

User SaysMode
"forecast", "cash flow", "what does next month look like", "project my cash"Forecast
"dashboard", "cash position", "where am I", "status", "overview"Dashboard
"collections", "who owes me", "chase payments", "AR", "receivables"Collections
"cut costs", "reduce expenses", "what can I cancel", "save money", "trim"Cost-Cut
"what if", "scenario", "if I lose [client]", "if [thing] happens", "model"Scenario
"runway", "how long can I survive", "burn rate", "months left"Runway

Default for ambiguous input: Dashboard mode.


Data Model (6 Objects)

All data is stored in cashflow/snapshots/{YYYY-MM}/snapshot.json.

Read the full schema: read_file("templates/cashflow-metadata-schema.json")

Object 1: Opening Cash

Cash on hand at period start. Fields: amount, as_of_date, source (manual/bank_statement/last_snapshot), notes.

Object 2: Expected Inflows

Each entry: id, source, amount, expected_date, confidence (high/medium/low), probability_factor, weighted_amount, invoice_ref (optional link to opc-invoice-manager), status (expected/received/partial/cancelled/delayed).

Confidence → Probability mapping:

  • high (0.95): Signed contract, sent invoice, recurring confirmed
  • medium (0.60): Verbal agreement, proposal sent, likely renewal
  • low (0.20): Pipeline lead, first contact, speculative

Object 3: Committed Outflows

Each entry: id, category, payee, amount, due_date, essentiality (critical/important/optional), status (upcoming/paid/deferred/cancelled).

Essentiality rules:

  • critical: Cannot defer — rent, taxes, insurance, loan payments, core hosting
  • important: Should pay on time — key software, active contractors, utilities
  • optional: Can defer or cancel — subscriptions, marketing, nice-to-haves

Object 4: Recurring Commitments

Each entry: id, category, payee, amount, frequency (weekly/biweekly/monthly/quarterly/annual), next_due_date, essentiality, auto_generate.

Object 5: Scenario Assumptions

Three scenarios with factors:

  • base: inflow_factor=1.0, outflow_factor=1.0
  • conservative: inflow_factor=0.7, outflow_factor=1.1
  • aggressive: inflow_factor=1.3, outflow_factor=0.9

Object 6: Alerts & Actions

System-generated: type, severity (critical/warning/info), message, action_recommended, triggered_at.


Forecast Mode

Load: read_file("references/forecasting-rules.md")

Phase 1: Data Gathering

  1. Ask for or load opening cash (amount, as_of_date, source).
  2. If cashflow/snapshots/ exists, load the latest snapshot as starting point.
  3. Cross-skill import: If invoices/INDEX.json exists (opc-invoice-manager):

- Run: python3 [skill_dir]/scripts/cashflow_tracker.py [cashflow_dir] --import-invoices [invoices_dir] --json - This auto-imports sent/overdue invoices as expected_inflows with mapped confidence levels.

  1. Ask for any additional expected inflows not covered by invoices.
  2. Ask for committed outflows (one-time expenses this period).
  3. Ask for or confirm recurring commitments.

Phase 2: Forecast Calculation

For each scenario (base, conservative, aggressive):

  1. weighted_inflows = Σ(amount × probability_factor × scenario.inflow_factor)
  2. total_outflows = Σ(committed) + Σ(recurring_expanded) × scenario.outflow_factor
  3. projected_cash = opening_cash + weighted_inflows - total_outflows
  4. Generate week-by-week for weeks 1–4, then month-by-month for months 2–4.

Phase 3: Alert Generation

Run alert checks:

  • runway_warning: Conservative runway < 3 months (critical) or < 6 months (warning)
  • negative_cash: Any scenario shows negative cash in forecast period (critical)
  • collection_urgent: High-confidence inflow overdue > 7 days (warning) or > 30 days (critical)
  • large_outflow: Single outflow > 30% of opening cash (warning)
  • concentration_risk: Single client > 50% of weighted inflows (warning)

Phase 4: Output

Use template: read_file("templates/forecast-report.md")

Show:

  1. Inflow summary table (source, raw amount, confidence, probability, weighted amount)
  2. Outflow summary table (category, payee, amount, due date, essentiality)
  3. 3-scenario projection (weekly for month 1, monthly for months 2–4)
  4. Alerts sorted by severity
  5. Prioritized action list ("Do this now")

Phase 5: Archive

Save to cashflow/snapshots/{YYYY-MM}/snapshot.json.

Run: python3 [skill_dir]/scripts/cashflow_tracker.py [cashflow_dir] --index


Dashboard Mode

Phase 1: Load Data

  1. Load latest snapshot from cashflow/snapshots/.
  2. If no snapshot exists, guide user to create one (switch to Forecast mode).

Phase 2: Calculate Position

Run: python3 [skill_dir]/scripts/cashflow_tracker.py [cashflow_dir] --dashboard --json

Or calculate inline:

  1. Opening cash
  2. This month's weighted inflows and committed outflows
  3. Projected end-of-month (3 scenarios)
  4. Burn rate and runway

Phase 3: Cross-Skill Integration

If invoices/INDEX.json exists:

  • Pull aging summary (total outstanding, overdue amount, overdue count)
  • Show collection priority list

Phase 4: Output

Use template: read_file("templates/dashboard-report.md")

Show:

  1. Cash position summary (opening, inflows, outflows, projected EOMonth)
  2. Burn rate and runway one-liner
  3. Active alerts by severity
  4. Top 3 actions with specific amounts and dates
  5. AR summary (if opc-invoice-manager available)

Collections Mode

Phase 1: Gather Receivables

If opc-invoice-manager exists:

  1. Pull all sent/overdue/partial invoices from invoices/INDEX.json.
  2. Cross-reference with expected_inflows in current snapshot.
  3. Sort by: overdue days (desc) → amount (desc) → confidence.

If no opc-invoice-manager:

  1. Use expected_inflows from snapshot where status = expected and expected_date < today.
  2. Sort by amount (desc).
  3. Note: "Install opc-invoice-manager for full collections workflow with email drafts and staged follow-ups."

Phase 2: Priority List

For each overdue item, show:

  • Client name, amount, days overdue
  • Recommended action (from opc-invoice-manager's collections-playbook if available)
  • Impact on cash flow if collected this week vs next month

Phase 3: Summary

Calculate:

  • Total AR (raw and weighted)
  • Average days outstanding
  • Collection urgency score (critical/warning/healthy)

Cost-Cut Mode

Load: read_file("references/cost-cutting-playbook.md")

Phase 1: Analyze Current Spend

  1. Load committed_outflows + recurring_commitments from latest snapshot.
  2. Calculate total monthly burn rate.
  3. Group by essentiality: critical / important / optional.

Phase 2: Generate Cut List

Present in order (cut first → cut last):

Tier 1 — Immediate Cuts (Optional Items) List all optional recurring + one-time items. Show monthly savings for each.

Tier 2 — Deferral Candidates (Important Items) List important items that could be deferred. Show what breaks if cut.

Tier 3 — Untouchable (Critical Items) List critical items. Explain why they can't be cut.

Phase 3: Impact Modeling

Show:

  • "Cut all optional → save $X/mo → extends runway by Y months"
  • "Also defer important → save $X/mo → extends runway by Y months (but risks: [list])"
  • Current burn rate vs post-cut burn rate comparison

Phase 4: Revenue Alternatives

Before suggesting deep cuts, suggest revenue-side actions:

  • Raise prices on new work
  • Collect outstanding AR faster (link to Collections mode)
  • Offer prepaid discounts for cash now
  • Add rush/priority pricing

Scenario Mode

Load: read_file("references/forecasting-rules.md")

Phase 1: Capture the "What If"

Parse the user's scenario. Common patterns:

  • "What if I lose Client X?" → Remove their inflows
  • "What if I hire a contractor at $5k/mo?" → Add to recurring
  • "What if payment is delayed 30 days?" → Shift inflow dates
  • "What if I raise prices 20%?" → Adjust inflow amounts
  • "What if I cut all optional expenses?" → Remove optional outflows

Phase 2: Model

  1. Clone current snapshot data (do not modify the original).
  2. Apply the "what if" modification.
  3. Run 3-scenario forecast on modified data.
  4. Run 3-scenario forecast on original data (if not already cached).

Phase 3: Compare

Show delta:

  • "This change means $X less/more cash by [date]"
  • "This changes runway from Y to Z months (conservative)"
  • "New alert triggers: [list]" or "Resolves alerts: [list]"

Side-by-side comparison of current vs modified:

MetricCurrentAfter [What-If]Delta
Monthly burn$X$Y-$Z
Runway (conservative)X moY mo+Z mo
End-of-month cash$X$Y+$Z

Runway Mode

Load: read_file("references/runway-guide.md")

Phase 1: Calculate

Run: python3 [skill_dir]/scripts/cashflow_tracker.py [cashflow_dir] --runway --json

Or calculate inline:

  1. Monthly burn = Σ(critical + important recurring) + avg(one-time outflows)
  2. Weighted monthly income = Σ(expected inflows × probability)
  3. Net monthly burn = burn - income
  4. Runway = opening_cash / net_monthly_burn (if positive)

Phase 2: Threshold Assessment

Conservative RunwayStatusAction
6+ monthsHealthyFocus on growth
3–6 monthsWarningOptimize costs, accelerate collections
1–3 monthsCriticalSurvival mode — cut all optional, chase all AR
< 1 monthEmergencyImmediate action required

Phase 3: Output

Use template: read_file("templates/runway-report.md")

Show:

  1. Cash position
  2. Burn rate breakdown (critical/important/optional with % of total)
  3. Weighted monthly income
  4. Net burn
  5. Runway under 3 scenarios
  6. What-if cuts table (cut optional, cut optional+important, lose top client)
  7. Recommendations based on threshold

Cross-Skill Integration

opc-invoice-manager (Primary)

When invoices/ directory exists:

  • Auto-import: Sent/overdue invoices become expected_inflows with mapped confidence
  • Collections: Aging data, collection stages, and email draft suggestions
  • AR health: Outstanding totals, overdue amounts, average days to pay

Invoice status → inflow confidence mapping:

Invoice StatusConfidenceProbability
sent (current)high0.95
overdue 1–30 daysmedium0.60
overdue 31–60 dayslow0.30
overdue 60+ dayslow0.10
partialhigh0.80
disputedlow0.10

opc-contract-manager

When contracts/INDEX.json exists:

  • Read billing terms (payment_terms_days, billing_model, milestones)
  • Auto-create recurring inflow expectations from active contracts
  • Map milestone dates to expected_inflow dates

opc-product-manager

When product metadata includes estimated_monthly_cost:

  • Auto-add as reference item in recurring_commitments
  • Flag if product cost exceeds 10% of monthly burn

Archive Structure

cashflow/
├── INDEX.json                           # Summary of all snapshots
└── snapshots/
    └── {YYYY-MM}/
        └── snapshot.json                # Full 6-object snapshot

Script Reference

# Build index of all snapshots
python3 [skill_dir]/scripts/cashflow_tracker.py [cashflow_dir] --index

# Run 3-scenario forecast
python3 [skill_dir]/scripts/cashflow_tracker.py [cashflow_dir] --forecast --human

# Calculate runway and burn rate
python3 [skill_dir]/scripts/cashflow_tracker.py [cashflow_dir] --runway --human

# Check alert triggers
python3 [skill_dir]/scripts/cashflow_tracker.py [cashflow_dir] --alerts --json

# Import invoices from opc-invoice-manager
python3 [skill_dir]/scripts/cashflow_tracker.py [cashflow_dir] --import-invoices [invoices_dir]

# Dashboard summary
python3 [skill_dir]/scripts/cashflow_tracker.py [cashflow_dir] --dashboard --human

Exit codes: 0 = healthy, 1 = critical alerts exist.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

83.78%
按下载量换算1,664

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills