MGMT 675: Generative AI for Finance
When Claude Code handles a complex task, it can spin up sub-agents — separate Claude instances that work on subtasks in parallel or in sequence, then report back.
Orchestrator
Sub-Agent
Sub-agents allow Claude to work in parallel and to keep each subtask focused — the orchestrator stays high-level while sub-agents do the detailed work.
Claude Code decides on its own when a task warrants sub-agents. You do not have to ask.
You will see a notice when Claude spawns a sub-agent.
You can explicitly ask Claude to use a sub-agent for any task:
An LLM can only “see” a finite amount of text at once — this limit is called its context window.
Your Conversation
Sub-Agent Conversations
This is a feature, not a bug — sub-agents stay focused on their subtask and don’t waste context on irrelevant history.
Anthropic provides three document skills: Excel, Word, and PowerPoint.
Claude Desktop (Chat, Cowork, and Code)
/xlsx, /docx, /pptxClaude Code Terminal
~/.claude/skills//xlsx, /docx, /pptxIn Claude Code (CLI or Desktop Code tab), invoke skills explicitly: /xlsx, /docx, /pptx
In Claude Code, skills are plain text files stored in ~/.claude/skills/. You can read the full /xlsx skill at:
C:\Users\yourname\.claude\skills\xlsx\SKILL.md~/.claude/skills/xlsx/SKILL.mdIt instructs Claude to use live Excel formulas instead of hardcoded values, specifies a standard workflow (create, format, save, recalculate, verify), and includes financial modeling standards.
The class installer also installs /skill-creator — a guide created by Anthropic for building your own skills.
/ commandIf you use Claude Desktop/Code, you cannot edit Anthropic’s document skills directly — but you can create a custom skill that extends one.
Your SKILL.md would say something like:
“Follow the /xlsx skill workflow exactly, EXCEPT: always include a summary sheet as the first tab, always freeze the header row, and always name ranges used in formulas.”
Then invoke your custom version with /myxlsx instead of /xlsx.
Ask Claude to create it for you. Use /skill-creator I want a skill that will override the xlsx skill so that …
/skill-creator to start the skill builder