In Plain English
Traditional AI coding tools (like chatbots) are more like texting a consultant. You copy code into a chat window, they suggest changes, you copy the changes back. Claude Code skips all that. It already has access to your files, your terminal, and your git history. It acts directly.
Traditional AI Chat
How it sees your code
You paste snippets into a chat window
How changes happen
You copy suggestions back into your editor
Context
Limited to what you paste
Workflow
Copy, paste, copy, paste
Interruption
Start a new message
Claude Code (Agentic)
How it sees your code
It reads your entire project directly from disk
How changes happen
It edits files itself, runs commands, verifies results
Context
Full project: files, git history, terminal, CLAUDE.md instructions
Workflow
Describe the goal, review the result
Interruption
Type your correction mid-task; Claude adjusts immediately
Write and Refactor Code
Describe features in plain English. Claude reads the codebase, creates or modifies files, and runs tests to verify.
Explore and Understand
Ask "how does the auth module work?" and Claude searches, reads, and explains your codebase with specific file references.
Run Commands
Claude runs build tools, git, package managers, test suites. Anything you can do from the command line, Claude can do.
Research and Fetch
Search the web, fetch documentation, look up error messages, and pull in external context without leaving your terminal.
Git Workflows
Stage changes, write commit messages from diffs, create branches, open PRs via GitHub CLI or MCP integration.
Extend with Plugins
Connect to external services via MCP, create custom agents, automate workflows with hooks, and define reusable skills.
0K tokens
Context window (roughly 500 pages of text)
0
Parallel subagents for complex tasks
0
Visual block types for rich content
Step 1: Install via npm
Run npm install -g @anthropic-ai/claude-code in your terminal. Requires Node.js 18+.
Step 2: Authenticate
Run claude in any directory. It opens a browser window for Anthropic account authentication. API key or Claude subscription required.
Step 3: Start working
Navigate to any project directory and run claude. It reads your project structure and CLAUDE.md automatically. Start describing what you want done.
Step 4: (Optional) IDE Integration
Install the VS Code extension or JetBrains plugin for an integrated experience. The CLI still powers everything under the hood.