원클릭으로
financial-variance
Variance analysis — actual vs budget, YoY/MoM/QoQ deltas, bridge decomposition.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Variance analysis — actual vs budget, YoY/MoM/QoQ deltas, bridge decomposition.
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.
FP&A financial planning — forecasting, scenario modeling, budgetary control.
| name | financial-variance |
| description | Variance analysis — actual vs budget, YoY/MoM/QoQ deltas, bridge decomposition. |
| tags | ["finance","variance","budget","actuals","yoy","mom","qoq"] |
Use this skill when the user asks for:
SELECT
period,
SUM(CASE WHEN period = '2025' THEN revenue END) as actual_revenue,
SUM(CASE WHEN period = '2024' THEN revenue END) as prior_period_revenue,
SUM(CASE WHEN period = '2025' THEN revenue END) - SUM(CASE WHEN period = '2024' THEN revenue END) as yoy_delta,
(SUM(CASE WHEN period = '2025' THEN revenue END) * 1.0 / NULLIF(SUM(CASE WHEN period = '2024' THEN revenue END), 0) - 1) * 100 as yoy_pct
FROM sheet_
GROUP BY period
ORDER BY period;
SELECT
category,
budget_amount,
actual_amount,
actual_amount - budget_amount as variance_abs,
(actual_amount * 1.0 / NULLIF(budget_amount, 0) - 1) * 100 as variance_pct
FROM sheet_
ORDER BY ABS(actual_amount - budget_amount) DESC;
When presenting variance analysis: