This skill should be used when completing LBO (Leveraged Buyout) model templates in Excel for private equity transactions, deal materials, or investment committee presentations. The skill fills in formulas, validates calculations, and ensures professional formatting standards that adapt to any template structure.
复制安装指令,让 AI 自动完成配置 · 推荐新手
请帮我安装 askskill 上的 "lbo-model" 技能: 1. 下载 https://raw.githubusercontent.com/anthropics/financial-services/main/plugins/agent-plugins/pitch-agent/skills/lbo-model/SKILL.md 2. 保存为 ~/.claude/skills/lbo-model/SKILL.md 3. 装好后重载技能,告诉我可以用了
This skill uses templates for LBO models. Always check for an attached template file first.
Before starting any LBO model:
examples/LBO_Model.xlsx as your starting point and populate it with the user's assumptionsIMPORTANT: When a file like LBO_Model.xlsx is attached, you MUST use it as your template - do not build from scratch. Even if the template seems complex or has more features than needed, copy it and adapt it to the user's requirements. Never decide to "build from scratch" when a template is provided.
If running inside Excel (Office Add-in / Office JS environment):
Excel.run(async (context) => {...})) directly — do NOT use Python/openpyxlrange.formulas = [["=B5*B6"]] — Office JS formulas recalculate natively in the live workbookrange.formulas, never range.values for anything that should be a calculationrange.format.font.color / range.format.fill.color for the blue/black/purple/green convention.merge() then set .values on the merged range (throws InvalidArgument — range still reports original dimensions). Instead: write value to top-left cell alone (ws.getRange("A7").values = [["SOURCES & USES"]]), then merge + format the full range (ws.getRange("A7:F7").merge(); ws.getRange("A7:F7").format.fill.color = "#1F4E79";)If generating a standalone .xlsx file (no live Excel session):
ws["D20"] = "=B5*B6"), then run recalc.py before deliveryThe rest of this skill is written with openpyxl examples, but the same principles apply to Office JS — just translate the API calls.
cell.value = "=B5*B6" (formula string), NOT cell.value = 1250 (computed result). The model must be dynamic and update when inputs change.examples/LBO_Model.xlsx or the user's provided template. Do not invent your own layout.=B4*B5, =SUM(), =-MAX(0,B4))=B9, =B45)…
用于搭建并购交易增厚摊薄模型,评估EPS影响、协同效应与交易结构敏感性
Create professional equity research earnings update reports (8-12 pages, 3,000-5,000 words) analyzing quarterly results for companies already under coverage. Fast-turnaround format focusing on beat/miss analysis, key metrics, updated estimates, and revised thesis. Includes 1-3 summary tables and 8-12 charts. Use when user requests "earnings update", "quarterly update", "earnings analysis", "Q1/Q2/Q3/Q4 results", or post-earnings report.
Build pre-earnings analysis with estimate models, scenario frameworks, and key metrics to watch. Use before a company reports quarterly earnings to prepare positioning notes, set up bull/bear scenarios, and identify what will move the stock. Triggers on "earnings preview", "what to watch for [company] earnings", "pre-earnings", "earnings setup", or "preview Q[X] for [company]".
Root-cause a reconciliation break to its source transaction or posting — follow the audit trail from the break row back to the originating entry on each side and state what differs and why. Use after gl-recon has classified a break.
Audit a spreadsheet for formula accuracy, errors, and common mistakes. Scopes to a selected range, a single sheet, or the entire model (including financial-model integrity checks like BS balance, cash tie-out, and logic sanity). Triggers on "audit this sheet", "check my formulas", "find formula errors", "QA this spreadsheet", "sanity check this", "debug model", "model check", "model won't balance", "something's off in my model", "model review".
Prepare for due diligence meetings — management presentations, expert network calls, customer references, and advisor sessions. Generates targeted question lists, benchmarks to reference, and red flags to probe. Use before any diligence meeting or call. Triggers on "prep for management meeting", "diligence call prep", "expert call questions", "customer reference questions", or "meeting prep for [company]".