بنقرة واحدة
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: