Lesson 70 of 2116
Building a Personal AI Stack for School and Career
Assemble the four or five AI tools that actually belong in your daily life. A tested template for the stack that earns its keep.
Lesson map
What this lesson covers
Learning path
The main moves in order
- 1An AI stack is a deliberate collection
- 2AI stack
- 3workflow
- 4Claude
Concept cluster
Terms to connect while reading
Section 1
An AI stack is a deliberate collection
Every adult you respect does not use one AI tool. They use 3-5 that each have a specific role. The magic is in the combination, not in any single model. Here's how to think about building yours.
The five slots in a balanced stack
- 1Primary chat/reasoning — Claude or ChatGPT. Your default.
- 2Research/citation — Perplexity. For 'show your sources' questions.
- 3Workspace integration — Gemini in Google Docs OR Copilot in Microsoft 365.
- 4Coding or agent work — Claude Code, Cursor, or ChatGPT Pro Codex.
- 5Notes/knowledge — Notion AI or Obsidian + local LLM.
A tested student stack ($20/mo total)
Compare the options
| Tool | Role | Cost |
|---|---|---|
| Claude Pro | Essays, coding, deep thinking | $20/mo |
| Perplexity (free) | Research with sources | $0 |
| Gemini (free) | Google Docs/Drive integration | $0 |
| ChatGPT (free) | Second opinion, image gen | $0 |
| Google Keep/Notion free | Notes capture | $0 |
A tested working-professional stack ($40-60/mo)
Compare the options
| Tool | Role | Cost |
|---|---|---|
| Claude Max 5x | Primary work, Claude Code, agents | $100/mo |
| Perplexity Pro | Deep research with sources | $20/mo |
| Gemini in Workspace (employer) | Docs/Sheets/Gmail AI | $0 (employer) |
| ChatGPT (free) | Image gen, voice on iOS | $0 |
| Notion Business (team) | Knowledge base + AI search | $15-20/user |
A tested creator/builder stack
Compare the options
| Tool | Role | Cost |
|---|---|---|
| Claude Pro or Max | Writing, coding, thinking | $20-100/mo |
| Anthropic API + OpenAI API | Product building | Usage-based |
| Cursor Pro OR Claude Code | Code editor with AI | $20/mo or bundled |
| v0.dev | UI generation | Free/Pro |
| ElevenLabs or OpenAI TTS | Voice synthesis | Usage-based |
Stack health questions to ask quarterly
- Which tool did I open most often this quarter? (That's my real primary.)
- Which tool did I pay for but not use? (Cancel.)
- Which workflow still requires manual copy-paste? (Fix with integration.)
- Am I locked into one provider's proprietary features? (Consider portability.)
- Has a new model released that would change my stack? (Test before switching.)
A connector script pattern
The architecture of a thoughtful AI stack: route by task, not by brand loyalty.
# Basic 'AI stack router' — an anti-vendor-lockin pattern
import anthropic, openai
from perplexity import Perplexity
def route(question, kind):
if kind == 'research_with_sources':
return Perplexity().ask(question)
if kind == 'code_or_deep_reasoning':
return anthropic.Anthropic().messages.create(
model='claude-opus-4-6',
max_tokens=4096,
messages=[{'role':'user','content':question}]
)
if kind == 'creative_or_image':
return openai.OpenAI().responses.create(
model='gpt-5', input=question
)
raise ValueError(kind)
# Your stack becomes portable if you route by task, not by brand.What NOT to add to your stack
- Anything you haven't opened in 30 days.
- Any tool whose value prop is 'it's just like [other tool] but branded differently.'
- ClickUp AI if you already have Notion AI. Same tier, weaker ecosystem.
- Zapier AI unless you're automating 10+ distinct workflows (otherwise use Make or n8n).
- A $300/mo 'AI productivity suite' that replaces 3 tools you already like.
“Your stack is a system. Evaluate the whole, not the parts.”
Key terms in this lesson
The big idea: a real AI stack is 3-5 tools with clear roles, reviewed quarterly. Pay for one premium tier, one research tool, and lean on free tiers for the rest. Route by task, not brand.
End-of-lesson quiz
Check what stuck
15 questions · Score saves to your progress.
Tutor
Curious about “Building a Personal AI Stack for School and Career”?
Ask anything about this lesson. I’ll answer using just what you’re reading — short, friendly, grounded.
Progress saved locally in this browser. Sign in to sync across devices.
Related lessons
Keep going
Creators · 35 min
Codex CLI: OpenAI's Answer to Claude Code
Codex CLI is OpenAI's open-source terminal coding agent. Look at how it compares to Claude Code, what it does uniquely, and why it matters to non-Anthropic shops.
Creators · 75 min
Capstone: Build and Ship a Real Agent
Everything comes together. Design, code, test, secure, and ship a production-quality agent with open-source code you can fork today.
Creators · 45 min
API Access vs. Consumer Products — A Deeper Look
Going beyond the chat window. When you'd reach for the API, how pricing actually works, and how to start building. The API is where AI becomes a building block The consumer app is the most polished version of an AI experience.
