๐ฅ Demo Video Script โ Personal Finance Visualization Agent
**Project:** Zypher-based Personal Finance & Goal Feasibility Agent
๐ฅ Demo Video Script โ Personal Finance Visualization Agent
Project: Zypher-based Personal Finance & Goal Feasibility Agent
For: CoreSpeed Technical Assessment
Duration: 3โ5 minutes
Recording mode: Terminal + screen capture (no deployment needed)
๐ Pre-Recording Checklist
-
.envfile created with validANTHROPIC_API_KEY -
./workspace/transactions.csvexists (sample data included) - Terminal open in project root (
/Users/paramjoshi/Downloads/Param) - Screen recording software ready (QuickTime, OBS, Loom, etc.)
- Browser ready to open generated HTML charts
๐ฌ Scene-by-Scene Demo Script
SCENE 1: Introduction (0:00โ0:20)
Screen: Face on camera OR title slide
Narration:
"Hi, I'm Param Joshi. This is my submission for CoreSpeed's technical assessment โ a Personal Finance Visualization Agent built with Zypher. The agent uses custom tools to parse transactions, auto-categorize spending, and generate interactive visualizations."
Action: Smile, speak clearly, show confidence.
SCENE 2: Project Overview (0:20โ0:50)
Screen: VS Code or Finder showing project files
Narration:
"The project has a simple structure:
main.tsinitializes the Zypher agent with Anthropic's Claude model. Undertools/I've created four custom tools โReadTransactionsToolparses CSV files,CategorizationToolauto-assigns spending categories,WebSearchToollooks up cost estimates, andChartGeneratorToolcreates HTML visualizations. The agent runs in the terminal and saves outputs to theworkspace/directory."
Action:
- Briefly show file tree in editor:
main.tstools/TransactionReaderTool.tstools/CategorizationTool.tstools/WebSearchTool.tstools/ChartGeneratorTool.tsworkspace/transactions.csv
SCENE 3: Quick Code Walkthrough (0:50โ1:30)
Screen: Open main.ts in editor
Narration:
"Here's
main.tsโ it creates aZypherAgentwith the Anthropic provider, registers our four custom tools via the MCP server manager, then starts an interactive terminal session usingrunAgentInTerminal. Zypher handles all the agent orchestration โ tool routing, context management, and LLM interactions."
Action: Scroll through main.ts highlighting:
- Line ~38:
new ZypherAgent(new AnthropicModelProvider({...})) - Lines ~45โ48:
mcpServerManager.registerTool(...)for each tool - Line ~80:
await runAgentInTerminal(agent, "claude-sonnet-4-20250514")
Screen: Open tools/TransactionReaderTool.ts
Narration:
"Each tool is defined using Zypher's
defineToolfunction with Zod schemas for input validation. This one reads CSV files, auto-detects columns like Date, Description, Amount, and Category, then returns structured transaction data with summaries."
Action: Show:
- Line ~25:
export const ReadTransactionsTool = defineTool({ - Line ~27:
description: "Read and parse transactions from a CSV file..." - Lines ~60โ90: The parsing loop
Screen: Briefly show tools/ChartGeneratorTool.ts
Narration:
"The chart generator creates standalone HTML files with SVG graphics โ no external dependencies. It supports pie charts, line graphs, gauges, and comparison charts."
Action: Show the createSpendingPieChartHTML function briefly.
SCENE 4: Start the Agent (1:30โ1:50)
Screen: Terminal in project root
Narration:
"Now let's see it in action. I'll start the agent with
deno task start."
Action: Type and run:
deno task start
Expected Output:
๐ Initializing Personal Finance & Goal Feasibility Agent...
๐ Workspace directory: ./workspace
๐ง Registering custom finance tools...
โ
Registered custom tools:
- read_transactions
- categorize_transactions
- web_search
- generate_chart
๐ Total tools available: 4
============================================================
Personal Finance Visualization Agent
============================================================
This agent helps you visualize your finances and spending patterns.
...
๐ง Enter your task:
Narration:
"The agent initializes, registers our four tools, and starts the interactive terminal."
SCENE 5: Demo 1 โ Parse & Analyze Transactions (1:50โ2:30)
Screen: Terminal (agent prompt visible)
Narration:
"First, I'll ask the agent to parse my transaction file and show me spending by category."
Action: Type at the prompt:
Read my transactions from ./workspace/transactions.csv and show me spending by category
Expected Agent Response:
๐ Starting task execution...
[Agent uses read_transactions tool]
โ
I've analyzed your transactions from January to April 2024.
Here's your spending breakdown by category:
1. Housing: $4,800.00 (51.2%)
2. Shopping: $1,013.43 (10.8%)
3. Utilities: $978.98 (10.5%)
4. Food & Dining: $587.50 (6.3%)
5. Insurance: $560.00 (6.0%)
...
Total transactions: 104
Total expenses: $9,367.53
Total income: $14,000.00
Net cash flow: +$4,632.47
Narration:
"The agent called the
read_transactionstool, parsed the CSV, and gave me a detailed breakdown. Housing is my biggest expense at 51%."
SCENE 6: Demo 2 โ Generate Spending Pie Chart (2:30โ3:10)
Screen: Terminal
Narration:
"Now I'll ask it to create a visual spending pie chart."
Action: Type:
Create a spending pie chart showing my top 5 spending categories and save it to ./workspace/spending_pie.html
Expected Agent Response:
๐ Starting task execution...
[Agent uses generate_chart tool]
โ
I've created your spending pie chart!
๐ File: ./workspace/spending_pie.html
๐ฐ Total spending visualized: $7,940.41
Categories shown:
- Housing: $4,800 (60.5%)
- Shopping: $1,013 (12.8%)
- Utilities: $979 (12.3%)
- Food & Dining: $588 (7.4%)
- Insurance: $560 (7.1%)
Open the HTML file in your browser to view the interactive chart!
Narration:
"Perfect! The agent generated the HTML chart. Let me open it."
Action:
- Open
./workspace/spending_pie.htmlin browser (double-click or drag to browser) - Show the rendered pie chart with legend
- Hover over slices to show interactivity (if implemented)
Narration:
"Here's the interactive chart โ a clean SVG pie with category breakdown and totals. No external dependencies, just pure HTML and SVG."
SCENE 7: Demo 3 โ Savings Projection (3:10โ3:40)
Screen: Terminal
Narration:
"Let's generate a savings projection chart."
Action: Type:
Show me a savings projection if I save $500 per month for 12 months. Save it to ./workspace/savings_projection.html
Expected Agent Response:
๐ Starting task execution...
[Agent uses generate_chart tool]
โ
Savings projection chart created!
๐ File: ./workspace/savings_projection.html
๐ฏ Monthly target: $500
๐
Projection period: 12 months
๐ฐ Total projected savings: $6,000
The chart shows your month-by-month progress with target vs projected values.
Action:
- Open
./workspace/savings_projection.htmlin browser - Show the line graph with target and projected savings
Narration:
"Beautiful โ a line graph showing monthly progression toward my $6,000 savings goal."
SCENE 8: Wrap-Up & Architecture (3:40โ4:00)
Screen: Back to terminal (agent still running) or VS Code
Narration:
"That's the core demo. The design is simple and extensible โ each tool has one job, is easily testable, and integrates cleanly with Zypher's MCP framework. To extend this, I could add more chart types, integrate real-time financial APIs, or add ML-based categorization."
Action: Show README.md or QUICKSTART.md in editor
Narration:
"The README has full documentation, and the repo includes sample data and examples. Thanks for watching โ I'm happy to walk through any part in detail or answer questions about the implementation."
Action: Type quit or exit in terminal to cleanly exit the agent.
๐ Voiceover Script (Compact Version)
If you prefer a concise read-through without pauses:
"Hi, I'm Param Joshi. This is my Zypher-based Personal Finance Agent for CoreSpeed's assessment. The agent uses four custom tools: read transactions, categorize spending, web search, and generate charts. I'll demo it now.
Here's the code โ
main.tsinitializes a Zypher agent with Anthropic, registers our tools via MCP, and runs an interactive terminal. Each tool is defined with Zod schemas for validation.Starting the agent... It loads and registers all four tools. Now I'll ask it to parse my CSV. [Type prompt] The agent reads the file and shows spending by category. Housing is 51% of my expenses.
Next, I'll generate a pie chart. [Type prompt] Done โ it created an HTML file. Here's the chart in my browser, showing a clean breakdown with SVG graphics.
Finally, a savings projection. [Type prompt] Perfect โ a line graph showing monthly progress toward a $6,000 goal.
That's the demo. The tools are composable, testable, and integrate seamlessly with Zypher. Thanks!"
๐ฏ Key Points to Emphasize
-
Zypher Integration
- "Built with Zypher framework from CoreSpeed"
- "Uses MCP (Model Context Protocol) for tool registration"
- "Anthropic Claude Sonnet 4 as the LLM"
-
Custom Tools
- "Four purpose-built tools: parse, categorize, search, visualize"
- "Defined with Zod schemas for type safety"
- "Each tool has a single, clear responsibility"
-
Real Output
- "Generates standalone HTML visualizations"
- "No external chart libraries โ pure SVG"
- "Saves to local workspace directory"
-
Extensibility
- "Easy to add more chart types or data sources"
- "Could integrate real APIs (Plaid, bank APIs, etc.)"
- "ML categorization could replace pattern matching"
๐ ๏ธ Terminal Commands Reference
Start the agent:
deno task start
Sample prompts to use:
- Parse transactions:
Read my transactions from ./workspace/transactions.csv and show me spending by category
- Create pie chart:
Create a spending pie chart for my top 5 categories and save it to ./workspace/spending_pie.html
- Savings projection:
Show me a savings projection if I save $500/month for 12 months. Save to ./workspace/savings_projection.html
- Risk gauge:
Create a success probability gauge showing 75% and save to ./workspace/risk_gauge.html
- Exit:
quit
๐ฅ Recording Tips
Before Recording
- Close unnecessary windows/tabs
- Use full-screen terminal or increase font size (
Cmd +on Mac) - Test all commands to ensure they work
- Have browser ready to quickly open HTML files
During Recording
- Speak clearly and at a moderate pace
- Don't rush โ pauses are fine and can be edited out
- If you make a mistake, just pause and restart that section
- Show genuine excitement about the project!
After Recording
- Trim intro/outro if needed
- Add title cards (optional): "Personal Finance Agent | Built with Zypher"
- Check audio levels
- Export at 1080p (HD) minimum
Recommended Tools
- Mac: QuickTime Screen Recording (free, built-in)
- Windows: OBS Studio (free)
- Cross-platform: Loom (easy, cloud-hosted)
- Professional: Camtasia, ScreenFlow
๐ค Submission Checklist
- Demo video recorded (3โ5 minutes)
- Video uploaded (YouTube unlisted, Loom, Google Drive, etc.)
- GitHub repo is public
- README.md has clear run instructions
- .env.example file included (without real API key)
- All code committed and pushed
- Video link added to submission email/form
๐ Optional: Going Above & Beyond
If you have extra time before Monday, consider:
-
Add a simple test:
deno test --allow-read --allow-write -
Add more chart examples in README
-
Record a 30-second "Quick Demo" clip showing just one chart generation (for social media)
-
Add a GitHub Actions workflow (optional โ shows DevOps skills)
-
Deploy to Deno Deploy (optional โ but Milton said demo video is primary deliverable)
โ FAQ
Q: Do I need to deploy this?
A: No! The assignment says "No need to deploy โ the demo video is the primary deliverable."
Q: How long should the video be?
A: 3โ5 minutes is ideal. Milton's example was ~1 minute, but showing more features is fine.
Q: Should I show my face?
A: Optional! A quick intro helps build rapport, but screen + voiceover is fine too.
Q: What if I hit an error during recording?
A: Pause, fix it, and restart that section. Or edit it out post-recording.
Q: Can I use the sample data?
A: Yes! The workspace/transactions.csv is perfect for the demo.
๐ง Sample Submission Email
Subject: CoreSpeed Technical Assessment - Param Joshi
Hi Noah,
I've completed the technical assessment for the CoreSpeed position. Here are my deliverables:
๐ฅ Demo Video: [YouTube/Loom link]
๐ GitHub Repo: https://github.com/paramjoshi/zypher-finance-agent (public)
๐ Run Instructions: See README.md in the repo
Project Summary:
- Built a Personal Finance Visualization Agent using Zypher
- Four custom MCP tools: transaction parsing, categorization, web search, chart generation
- Generates interactive HTML visualizations (pie charts, projections, gauges)
- Runs in terminal with Anthropic Claude Sonnet 4
The demo video shows:
1. Agent initialization and tool registration
2. Parsing CSV transactions and analyzing spending
3. Generating multiple chart types
4. Opening visualizations in browser
Let me know if you need anything else or have questions about the implementation!
Best,
Param Joshi
Good luck with your recording! You've got a solid project โ just show it confidently and you'll do great! ๐
Related Documents
Demo Video Script - Kinetic Ledger
**Duration:** 3-5 minutes
Prompt Craft Reference
Production-quality prompt engineering for HeyGen Video Agent. Combines official HeyGen guidance with patterns validated across 80+ test videos.
CodeForge AI - Hackathon Demo Script
**[Fade in: Dark background with CodeForge AI logo animating in]**
Demo Video Script (30-60 Seconds)
- **Loom** (free) - loom.com