Background wallpaper
← Back5 min read

You Should Be Using Claude Code for Everything

Stop copy-pasting into ChatGPT. Terminal AI agents like Claude Code and Codex CLI actually do the work while you focus on strategy. Here's why you're working too hard.

Updated November 4, 20255 min read

If you're still copy-pasting between ChatGPT and your work, you're living in 2023. Terminal agents are here.

The bottleneck isn't AI intelligence anymore. It's your browser. Every prompt means context-switching, copying, pasting, waiting, repeating. You know this dance. It's killing your productivity.

Terminal agents like Claude Code and Codex CLI eliminate this friction. They live in your computer, access your files directly, and turn multi-step workflows into single commands.

The Copy-Paste Bottleneck

Your Current Workflow
  1. Find the document/data/task you need to work on
  2. Cmd+Tab to browser
  3. Find the ChatGPT tab
  4. Copy the relevant content
  5. Paste into chat
  6. Wait for response
  7. Copy the solution
  8. Cmd+Tab back to your work
  9. Paste and apply
  10. Repeat when incomplete

This is 10 context switches for one fix. Your brain resets each time. Flow state: destroyed.

Terminal Agents: Direct Access

The solution: graduate from chat to agent. Claude Code (Anthropic) and Codex CLI (OpenAI) are terminal-native tools that read files, modify documents, and execute commands directly. No browser. No copying. No context loss.

They don't talk about doing things. They do them.

What Makes Them Different

Direct File Access: Both agents read and modify your local files directly. Claude Code uses MCP servers for full system access. Codex directly interacts with your file system.

Multimodal Input: Claude analyzes text and visual elements in PDFs. Codex uses the --image flag for visual analysis.

Web Search: Both include real-time web search. No more outdated training cutoffs.

Tool Integration: Claude's MCP protocol connects to Google Workspace, Slack, Jira. Codex supports similar integrations.

Two-Minute Installation

"It's too hard to install"

Wrong. Installation is one command:

Claude Code

brew install --cask claude-code

or

npm install -g @anthropic-ai/claude-code

Codex CLI

brew install codex

or

npm install -g @openai/codex

Two minutes. Done. If you can install Spotify, you can install this.

"It's only for coders"

Calling these "coding tools" is like calling Excel a "calculator." The skills AI needs for code—file I/O, web access, logic—are the exact skills for any knowledge work.

These handle any file-based work: research papers, spreadsheets, presentations, reports, legal documents, marketing content. If you work with documents, data, or digital content, these tools multiply your productivity.

Anthropic uses Claude Code for research, video creation, and note-taking. Not just code.

Real Work, Real Results

Research: Analyze 10 PDFs at Once

Task: "Read all PDFs in ~/Dissertation/, extract charts, search for updates, write summary.docx"

Why Chat Fails: Can't seamleslly navigate your files, folders and apps.

Agent Solution:

bash
claude "Analyze ~/Dissertation/ folder, synthesize all PDFs with charts"
  • Scans directory
  • Reads text AND charts from all files
  • Searches web for updates
  • Writes summary directly to disk

Data Analysis: Local CSV to Report

Task: "Analyze sales_data.csv, generate visualizations, create PDF report"

Why Chat Fails: Copy-paste hell. Lost context between iterations. Manual chart creation.

Agent Solution:

bash
codex --auto-edit "Analyze dataset.csv and generate PDF report"
  • Creates Python analysis script
  • Runs locally on your machine
  • Generates charts automatically
  • Outputs professional PDF

Project Management: Multi-Source Status

Task: "Draft team email using PROGRESS.md, Google Calendar, and ~/notes.txt"

Why Chat Fails: Can't access local files. No calendar integration. Manual copy-paste.

Agent Solution:

bash
claude "Draft status email from project files and calendar"
  • Reads multiple local files
  • Queries calendar API
  • Synthesizes into email draft

Claude vs Codex

Feature Comparison

FeatureClaude CodeCodex CLI
ModelClaude Sonnet 4.5, Opus 4.1GPT-5-Codex
StrengthSuperior tooling, slash commands, hooksRaw speed, 90% fewer tokens
Best ForComplex refactors, architectureQuick fixes, prototypes
Pricing$20/month Pro planIncluded with ChatGPT Plus
Local AccessFull via MCPSandboxed workspace

When to Use Each

Claude Code:

  • Multi-file refactors
  • Complex architecture work
  • Need precise control
  • Value tooling over speed

Codex CLI:

  • Quick bug fixes
  • Fast prototyping
  • Simple tasks
  • Value speed over features

Feel free to test out both: Claude for precision work, Codex for rapid iteration.

Beyond Code: Building Complex Workflows

The power isn't any single feature—it's composition. Web chat offers discrete tools. Terminal agents chain capabilities into workflows.

Build a NES emulator: Codex built one in 25 minutes. From scratch. In C.

Refactor 3,000 lines: User gave Codex a mess. Got back 1,000 clean lines. Working.

Research synthesis: Claude analyzed 50 papers, cross-referenced findings, wrote review. One command.

These aren't code snippets. They're multi-hour autonomous work sessions.

Making the Switch

You don't need to abandon ChatGPT entirely. In fact, it should remain your go-to for image generation and quick questions. But for real work—terminal agents multiply productivity.

Pick one. Install it. Give it a real task from your workday.

bash
# Your first real command
claude "Read all documents in this folder and create an executive summary"
# or
codex "Analyze these spreadsheets and find patterns"

Two minutes to setup. Lifetime of eliminated friction.

FAQ

Isn't terminal installation complex? No. One command: brew install claude-code. Easier than most apps.

Do I need to be a programmer? No. These handle any file-based work: research, writing, data analysis. If your work involves files, these tools apply.


By David Leer • November 3rd 2025