ワンクリックで
financial-planning
FP&A financial planning — forecasting, scenario modeling, budgetary control.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
FP&A financial planning — forecasting, scenario modeling, budgetary control.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
D2 diagram language — declarative diagrams for architecture, system design, network topology, database schemas, and layered infrastructure diagrams. Renders to SVG/PNG via d2 CLI. Supports sketch mode.
Excalidraw JSON format — hand-drawn whiteboard-style diagrams. Brainstorming, wireframes, informal sketches, and collaborative visual thinking. Output as .excalidraw JSON for desktop rendering.
Mermaid diagram syntax — sequence diagrams, flowcharts, ER diagrams, Gantt charts, state diagrams, class diagrams, and more. Renders to SVG/PNG via mmdc CLI. Native GitHub/markdown rendering support.
Financial consolidation — multi-entity rollup, intercompany elimination, currency translation, CTA, NCI/minority interest, segment reporting.
Expense and OpEx analysis — run-rate, cost per head, OpEx vs CapEx, vendor concentration, fixed vs variable decomposition, SG&A leverage.
Variance analysis — actual vs budget, YoY/MoM/QoQ deltas, bridge decomposition.
| name | financial-planning |
| description | FP&A financial planning — forecasting, scenario modeling, budgetary control. |
| tags | ["finance","fpna","forecast","budget","scenario","planning","modelling"] |
Use this skill when the user asks for:
# Sensitivity Analysis Template
base_case = revenue * margin
scenarios = {
"optimistic": revenue * 1.1 * margin,
"pessimistic": revenue * 0.9 * (margin - 0.02),
"best_case": revenue * 1.15 * (margin + 0.01),
}
SELECT
period,
SUM(revenue) OVER (ORDER BY period ROWS BETWEEN 11 PRECEDING AND CURRENT ROW) as rolling_12m
FROM sheet_
ORDER BY period;
SELECT
category,
MAX(CASE WHEN type = 'budget' THEN amount END) as budget,
MAX(CASE WHEN type = 'actual' THEN amount END) as actual,
MAX(CASE WHEN type = 'actual' THEN amount END) - MAX(CASE WHEN type = 'budget' THEN amount END) as variance
FROM sheet_
GROUP BY category;