d-wwei/openclaw-financial-services · Archived

fsi-fa-check-deck

Investment banking presentation quality checker. Reviews pitch decks and client-ready presentations for: (1) Number consistency across slides, (2) Data-narrative alignment, (3) Language polish for IB standards, (4) Formatting QC. Use when asked to review, check, or QC any IB presentation, pitch deck, or client materials before delivery.

First seen Jun 21, 2026

Installation

$ npx skills add d-wwei/openclaw-financial-services --skill fsi-fa-check-deck

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from d-wwei/openclaw-financial-services · top by installs.

npx skills add d-wwei/openclaw-financial-services

Browse all from d-wwei/openclaw-financial-services

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 15
License LICENSE
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,778 B
  • docs SUMMARY.md 363 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

IB Deck Checker

Perform comprehensive QC on investment banking presentations across four dimensions.

Prerequisites

Extract presentation content before checking:

python -m markitdown presentation.pptx > content.md

For visual inspection, convert to images using the pptx skill workflow.

Check Workflow

1. Number Consistency

Extract numbers with slide references:

python scripts/extract_numbers.py content.md --check

Verify:

  • Key metrics match across all slides (revenue, EBITDA, multiples)
  • Calculations are correct (totals, percentages, growth rates)
  • Units consistent (same scale used: millions vs billions, % vs bps)
  • Unit formatting consistent (e.g., $M vs $MM, $B vs $Bn - pick one style throughout)
  • Time periods aligned (FY vs LTM vs quarterly)

Flag pattern:

ISSUE: Revenue mismatch
- $500M on Slides 3, 8
- $485M on Slide 15 (DCF input)
ACTION: Reconcile figures

2. Data-Narrative Alignment

Map claims to supporting data:

  • Trend statements → chart directions
  • Market position claims → revenue/share data
  • Factual assertions → verify accuracy

Flag contradictions:

ISSUE: Narrative contradicts data
- Slide 4: "declining margins"
- Slide 7 chart: margins 18% → 22%
ACTION: Update narrative or verify data

Check plausibility (e.g., "#1 player in $100B market" with $200M revenue = 0.2% share).

3. Language Polish

Scan for:

  • Casual phrasing ("pretty good", "a lot of")
  • Vague quantifiers without specifics
  • Contractions, exclamation points
  • Inconsistent terminology

See [references/ib-terminology.md](references/ib-terminology.md) for replacement patterns.

Flag pattern:

ISSUE: Casual language (Slide 12)
- "This deal is a no-brainer"
→ "The transaction presents a compelling value proposition"

4. Formatting QC

Audit each slide for:

  • Charts: Source citations, axis labels, legends
  • Typography: Consistent fonts, size hierarchy
  • Numbers: Consistent formatting (1,000 vs 1K)
  • Dates: Consistent format throughout
  • Footnotes: Proper sourcing and disclaimers

Output

Present findings using the template in [references/report-format.md](references/report-format.md).

Categorize by severity:

  • Critical: Number mismatches, factual errors
  • Important: Language, narrative alignment
  • Minor: Formatting inconsistencies