MGMT 675: Generative AI for Finance
What we’re working towards is that every employee will have their own personalized AI assistant; every process is powered by AI agents, and every client experience has an AI concierge.
Workers would shift from being creators of reports or software updates, or ‘makers’ … to ‘“checkers” or managers of AI agents’ doing that work.
Derek Waldron, JP Morgan Chief Analytics Officer — CNBC interview, September 30, 2025
AI as maker is a fast, tireless junior analyst that handles the mechanical work.
What AI Does Well
The Speed Advantage
Your role shifts from doing the work to directing and verifying it.
Directing
Verifying
The checker adds the judgment the maker lacks. Neither alone is enough.
AI in code-execution mode rarely invents facts outright. Instead it makes silent analytical errors — mistakes that look fine on the surface.
Common Failure Modes
Why They’re Dangerous
You don’t need to re-do the work. You need targeted verification.
Pick the checks that match the stakes. A quick directional analysis needs less verification than a client deliverable.
Once you have a workflow that works and passes your checks, turn it into a skill — a reusable, one-command process.
Without a Skill
With a Skill
/command runs the full workflowskills/ folderA skill is how a one-time workflow becomes a team asset.
/skill-creator to start the skill builderSKILL.md and installs it in ~/.claude/skills//skill-nameYou can embed checker steps directly in the skill — for example, “after computing the result, show the row count and the min/max values so the user can sanity-check the data.”
Compare the target company to similar public companies on industry and size, then apply their valuation multiples.
Finding Comparables
Common Multiples
For full automation, connect the agent to a database of public company financials — it can pull comparables, compute medians, and apply multiples in one step.
Discount projected cash flows back to the present. Two stages handle near-term uncertainty and long-run stability separately.
Stage 1: Year-by-Year Forecasts
Stage 2: Terminal Value
Ask Claude Code:
Create an Excel workbook illustrating a two-stage DCF model for a company. Forecast cash flows building up from forecasts of key financial ratios and growth rates.
X = any balance sheet item: receivables, payables, net PP&E, …
Because changes in balance sheet items depend on sales growth in two successive years, the first year of constant cash flow growth is the second year of constant sales growth.
Bottom line: Add the first year of constant sales growth to Stage 1. Make that year the terminal year.
Constant cash-flow growth begins in year 5 (the second year of constant income growth).
So year 4 (the first year of constant income growth) should be the terminal year of the 1st stage.
Or you can use year 5, year 6, … as the terminal year. It doesn’t matter. Just include at least the first year of constant income growth as part of Stage 1.
/skill-creator to start the skill builder2-stage-dcf skill/skill-creator I want a 2-stage-dcf skill that use your xlsx skill to generate a two-stage DCF analysis. I want these rules to be followed …
Start by computing historical growth and percentages (or ask Claude to do it).
Tell Claude what you’ve chosen as baseline assumptions (including WACC) and ask for a two-stage DCF analysis.
/2-stage-dcf Read Walmart.xlsx, which contains historical statements. Create a two-stage DCF analysis to value Walmart at the end of 2010 using the following assumptions …
Start a new Code session. Tell Claude:
Read Walmart.xlsx, which contains historical statements. Formulate assumptions and prepare a 2-stage DCF analysis to value Walmart at the end of 2010. Create a Word doc containing results and discussion.
Start another new Code session. Tell Claude:
Read Walmart.xlsx, which contains historical statements. I need to create a 2-stage DCF analysis to value Walmart at the end of 2010, and I want your help. How should we get started?