Token导航 LogoToken导航TokenDH.com
效率执行命令clawhub未标认证来源可访问clear审计提醒

officecli-financial-modelOfficecli 财务模型

Agent Skill

officecli-financial-model 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,255

周安装

132

GitHub Stars

公开资料未说明

下载量

1,045
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install officecli-financial-model

简介

当用户想要在 Ex 中构建财务模型、三报表模型、DCF 估值、上限表、情景分析或财务预测时,请使用此技能。

SKILL.md

name
officecli-financial-model
description
Use this skill when the user wants to build a financial model,

Financial Model Skill

Build formula-driven, multi-sheet financial models from scratch in Excel. Every number on every statement sheet is a formula referencing the Assumptions sheet. Output is a single .xlsx file with interconnected sheets -- Income Statement, Balance Sheet, Cash Flow Statement, and optional valuation or scenario analysis sheets.


BEFORE YOU START (CRITICAL)

Every time before using officecli, run this check:

if ! command -v officecli &> /dev/null; then
    echo "Installing officecli..."
    curl -fsSL https://raw.githubusercontent.com/iOfficeAI/OfficeCli/main/install.sh -o /tmp/officecli_install.sh && bash /tmp/officecli_install.sh && rm -f /tmp/officecli_install.sh
    # Windows: irm https://raw.githubusercontent.com/iOfficeAI/OfficeCli/main/install.ps1 -OutFile "$env:TEMP\officecli_install.ps1"; & "$env:TEMP\officecli_install.ps1"
else
    CURRENT=$(officecli --version 2>&1 | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' | head -1)
    LATEST=$(curl -fsSL https://api.github.com/repos/iOfficeAI/OfficeCLI/releases/latest | grep '"tag_name"' | sed -E 's/.*"v?([0-9.]+)".*/\1/')
    if [ "$CURRENT" != "$LATEST" ]; then
        echo "Upgrading officecli $CURRENT -> $LATEST..."
        curl -fsSL https://raw.githubusercontent.com/iOfficeAI/OfficeCli/main/install.sh -o /tmp/officecli_install.sh && bash /tmp/officecli_install.sh && rm -f /tmp/officecli_install.sh
    else
        echo "officecli $CURRENT is up to date"
    fi
fi
officecli --version

Use When

  • User provides assumptions and asks for financial projections or a financial model
  • User asks for an "income statement", "balance sheet", or "cash flow statement"
  • User asks for DCF valuation, WACC calculation, or discounted cash flow analysis
  • User asks for a cap table, waterfall analysis, or fundraising model
  • User asks for scenario analysis, sensitivity table, debt schedule, or break-even model

Do NOT Use When

User RequestCorrect Skill
CSV data to dashboard / chartsofficecli-data-dashboard
Edit/modify an existing .xlsxofficecli-xlsx (editing.md)
KPI dashboard or metrics summaryofficecli-data-dashboard
1-2 sheet visualization from existing dataofficecli-data-dashboard
Word document or PowerPointofficecli-docx / officecli-pitch-deck

What This Skill Produces

A single .xlsx file with 4-10 interconnected sheets:

Sheet TypePurposeKey Characteristic
AssumptionsAll hardcoded inputs in one placeBlue font (0000FF) on every input cell
Income StatementRevenue through Net IncomeAll rows are formulas referencing Assumptions
Balance SheetAssets, Liabilities, EquityMust balance every period; includes check row
Cash Flow StatementOperating, Investing, FinancingEnding Cash must equal BS Cash
DCF / ValuationWACC, FCF, Terminal Value, Equity ValueNamed ranges for key inputs
Sensitivity Table2-variable grid of implied valuesEach cell is a self-contained formula
ScenariosDropdown-driven Base/Bull/BearIF/INDEX formulas reference dropdown
Error ChecksBalance, cash reconciliation, ISERROR scan"ALL CLEAR" or "ERRORS FOUND" summary
Dashboard / ChartsVisual summary of model outputsCharts use cell range references

ALL values on statement sheets are formulas. The only hardcoded numbers are on the Assumptions sheet.


Core Concepts

  • Assumptions-First Architecture -- ALL hardcoded inputs go on the Assumptions sheet. Every other sheet references Assumptions. Changing one assumption recalculates the entire model.
  • Financial Color Coding -- font.color=0000FF (blue) for inputs, font.color=000000 (black) for formulas, font.color=008000 (green) for cross-sheet references. Non-negotiable convention.
  • Formula Chain Integrity -- Every derived value traces back to the Assumptions sheet through an unbroken chain of formula references.
  • Error Checking -- Balance checks (Assets = Liabilities + Equity), cash reconciliation (CF ending cash = BS cash), and ISERROR scans on every sheet.
  • Batch-First Workflow -- Use heredoc batch for ALL multi-cell operations, especially cross-sheet formulas. Verify after each batch.

Workflow Overview

Phase 1: Understand -- Identify model type (3-statement, DCF, cap table, scenario). Determine which sheets are needed and the formula dependency chain.

Phase 2: Plan -- Map sheet structure, column layout (labels + year columns), and cross-sheet formula dependencies. Define the build order.

Phase 3: Build -- Follow the mandatory 10-step build sequence in creating.md Section A.7. Build in layers: structure, assumptions, formulas (IS then BS then CF), formatting, charts, protection, raw-set, validate.

Phase 4: QA -- Run the QA checklist: validate, formula error scan, cross-sheet verification, balance check, cash reconciliation, chart data check.

Phase 5: Deliver -- Deliver the .xlsx file. Note that formulas recalculate on open (fullCalcOnLoad is set).


Quick Reference: Key Warnings

WarningDetail
Cross-sheet ! escapingUse heredoc batch for ALL cross-sheet formulas. Verify with officecli get after each batch.
Batch size limit8-12 operations per batch, non-resident mode. Larger batches have ~33% failure rate.
Batch JSON valuesALL values must be strings: "true" not true, "24" not 24
fullCalcOnLoad + iterateMANDATORY. Always use //x:definedNames --action insertafter (financial models always have named ranges)
Blue inputs / black formulasfont.color=0000FF on Assumptions inputs, font.color=000000 on all formula cells
Balance sheet must balanceExplicit check formula: =TotalAssets - TotalLiabilities - TotalEquity must equal 0
Cash reconciliationCF ending cash must equal BS cash for every period
No Excel Data TablesSensitivity tables must be manual formula grids. Each cell is an explicit self-contained formula.
Number format $ quotingUse heredoc batch or single quotes to prevent shell expansion of $
Named ranges requiredDefine for all key assumptions (WACC, growth rates, tax rate). Required for auditability.
Column widthsNo auto-fit. Set explicitly: labels=22-28, numbers=14-18, year headers=12-14
formulacf no font.boldUse fill + font.color only. font.bold causes validation errors.
raw-set orderingactiveTab and calcPr MUST be the absolute last commands
BS Cash = CF Ending CashBS Cash ALWAYS equals =Cash Flow!B19, including Year 1. Never use cash-as-plug or reference Assumptions directly.
Chart title $ in shellUse heredoc batch for chart titles containing $ to prevent shell expansion.

Known Issues

IssueWorkaround
! escaping in cross-sheet formulasAlways use heredoc batch. Verify with officecli get.
Batch failure at scaleKeep batches to 8-12 ops. Non-resident mode. Retry individually on failure.
Cannot rename sheetsPlan sheet names upfront before creation.
Sensitivity tables are manualEach cell needs an explicit formula. No Excel DATA TABLE support.
Chart series fixed at creationCannot add series later. Plan all series before add.
Formula cached values blankview text shows blank for formula cells. This is normal. Set fullCalcOnLoad.
Waterfall chart totalsCannot mark bars as totals programmatically. Use color convention.
Circular referencesUse <calcPr iterate="1" ...>. Design model to avoid unnecessary circularity.
Chart title $ strippingShell expands $ in --prop title. Use heredoc batch for chart titles with $, or omit $ from titles.

Full Guide

Read creating.md and follow it step by step. It contains setup conventions, core financial statement patterns, advanced patterns (DCF, sensitivity, scenarios), chart recipes, QA checklist, and known issues with workarounds.

References

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

82.35%
按下载量换算861

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills