MGMT 675: Generative AI for Finance
M7: Some Tips (Today)
M8: Web Scraping with AI
M9: Build & Deploy Agents
M10: Corporate Deployment
M11: Retrieval Augmented Generation
M12: AI Sentiment Analysis
Don’t review AI’s first draft. Instead:
You review a final draft instead of a first draft. This saves your time (though it burns tokens). The more consequential the work, the more revision cycles it deserves.
The /critique skill automates this. It spawns three parallel agents, each with a different lens, then synthesizes findings and applies revisions.
Correctness & Completeness
Are there factual errors, logical gaps, or missing information? Are claims supported and assumptions justified?
Clarity & Persuasiveness
Is the structure logical? Is anything confusing, redundant, or buried? Could the main message be stated more directly?
Devil’s Advocate
What are the strongest counterarguments? Where is the reasoning weakest? What would a skeptic challenge?
Download the critique skill and ask Claude to install it.
AI conversations have no memory of previous conversations — each new session starts from scratch. You can fix this by saving things to markdown (.md) files.
A summarize chat skill
/summarize-chat.md file in a chats/ folder. Each session, Claude reads the most recent summaries on startup.Standard memory devices
Markdown is a plain-text format that uses simple symbols for formatting. AI reads and writes it natively.
Where you’ll see it
You can read any markdown file in Notepad, but you get a better presentation with a markdown renderer, for example, markdownlivepreview.com.
Claude Dispatch lets you send a task from the Claude mobile app and have it run on your desktop — as either a Cowork or Code session, depending on the task.
Setup
Dispatch decides whether the task needs a Code session (dev work) or can be handled in Cowork (research, writing).
Requires Pro or Max plan.
Boris Cherny is the creator and Head of Claude Code at Anthropic. In a series of X posts over several weeks, he offered tips on how he and his group use Claude Code.
The tips were compiled by a fan and made available online here — dozens of tips organized into 10 parts covering workflows, memory, automation, and more.
A few highlights:
His tips can be installed as a Claude Code skill — paste the URL in Claude Code and ask it to create a skill from the content.
A plugin bundles multiple Claude Code components into a single installable package:
| Component | What it does |
|---|---|
| Skills | Slash commands & auto-triggered prompts |
| Agents | Custom sub-agent definitions |
| Hooks | Event handlers (e.g., lint on file write) |
| MCP servers | External tool integrations |
| LSP servers | Language intelligence (type checking, etc.) |
| Output styles | Custom formatting for agent output |
Installing
/plugin install from a marketplace or git repo/my-plugin:helloplugin.json manifestWhy plugins?
In early 2026, AI agent and plugin announcements triggered a historic selloff in enterprise software stocks — roughly ~$2 trillion in SaaS market cap evaporated between January and March. Wall Street dubbed it the SaaSpocalypse.
AI is attacking the interface and workflow layer, not the data layer:
Replacing the UI
Many SaaS products are forms, dashboards, and screens sitting on top of databases. AI agents let users skip navigating 20 screens and just state what they want in natural language.
Automating Workflows
Task tracking, status updates, if-then automations, data transfer between systems — exactly what agents do natively.
Collapsing Per-Seat Pricing
If 10 AI agents do the work of 100 human reps, you need 10 Salesforce seats, not 100. The revenue model collapses even if the product is still used.
AI isn’t replacing the database — it’s replacing the screens people use to interact with it, and the humans who sit behind those screens.
Defensible positions
The market damage (as of March 2026)
Sources: TechCrunch, CNBC, Bloomberg, SaaStr; data as of mid-March 2026.
Git is like Track Changes for an entire folder — it saves every version so you can always go back.
Why it matters with Claude
Getting started
Ask Claude to:
That’s it. Claude handles the commands. You just say “commit this” or “show me what changed”.
Git keeps snapshots locally. For an external backup, push to GitHub (free account).
Setup (one time)
gh)gh auth login — it opens your browser to sign in (no tokens or passwords to manage)Ongoing