Most people use Claude in a browser tab, ask a few questions, and decide AI isn't ready yet. The truth is they're using the wrong version. This guide walks you through 6 weekend steps that take Claude from chat tool to teammate. No coding, no overwhelm. Just two afternoons.
the outcomeNo coding required. Just plain English the whole way.
Claude Code is the version of Claude that can read your files, send your emails, post in your Slack, and run scheduled jobs. Same Claude under the hood, way more capability.
Install in 3 steps:
Launch Claude Code: when the install finishes, type claude in your terminal and press enter. A browser tab opens for you to log in. Authorize, return to the terminal, you're in.
Test it: type what can you do in this folder? and press enter. Claude lists everything it can read, write, and run from where you ran the command.
Full docs at docs.claude.com/en/docs/claude-code/quickstart
Anthropic ships Claude in four places. Each is built for a different job. Picking the right one is half the work.
1. Chat (claude.ai)
Quick questions, brainstorming, throwaway thinking. Inside Chat there's a feature called Projects: a folder where you can attach files and keep a recurring conversation that always remembers them.
2. Claude Design (claude.ai/design)
Released April 2026. Built for people without a design background. Describe what you want, Claude builds the first draft, you refine inline. Exports to Canva, PPTX, PDF, HTML.
3. Cowork
Task hand-off. You describe a job, Claude works on it independently in the background, and delivers a finished result.
4. Claude Code
The version you just installed. Skills, MCPs, scheduled Routines, the whole automation layer.
Decision shortcut:
Every reel script needs the same setup prompt. Every email needs the same voice rules. Every spreadsheet analysis needs the same KPI list. Retyping each one from scratch wastes the best part of your day.
A skill fixes this. A skill is a small file Claude reads automatically the moment a task matches its description.
Where skills live:
~/.claude/skills/ for skills available in every project.claude/skills/ (inside any folder) for project-specific skillsFile format:
Each skill is a folder with a SKILL.md file inside. The file has a short frontmatter header that tells Claude when to fire it, then a body with the actual instructions.
Example: a brand-voice skill at ~/.claude/skills/brand-voice/SKILL.md
---
name: brand-voice
description: Use whenever writing copy, captions, scripts, or emails. Catches AI clichΓ© and enforces my voice rules.
---
You're writing copy for me. Voice rules:
- Short sentences. Short paragraphs.
- Casual, friend-to-friend tone.
- No em dashes anywhere.
Banned words and phrases (never use):
- delve, dive into, elevate, navigate the landscape, unlock the potential
- boundaries, journey, transform, harness, leverage (as a verb)
Always include a specific example or number when making a claim.
Three skills to write this weekend:
Each takes 10 minutes to write. Saves an hour a day.
Trigger a skill manually: type /skill-name (e.g., /brand-voice). Otherwise Claude auto-fires it when the task matches.
The biggest leverage shows up when Claude works without you opening anything.
The feature is called Routines. It runs on Anthropic's cloud, not your laptop. You describe a recurring job, set the schedule, walk away. Laptop can be off. Phone in another room. The job runs.
Set up your first Routine:
claude in terminal)/schedule followed by a plain-English description. Examples:
/schedule daily inbox triage at 7am/schedule weekly project recap every Friday at 4pm/schedule monthly P&L summary on the 1st of each monthUseful follow-up commands:
/schedule list see all your active Routines/schedule update change an existing one/schedule run trigger immediately for testingYou can also manage Routines visually at claude.ai/code/routines. The web interface lets you trigger them from API calls or GitHub events on top of the schedule.
Example Routine I'm wiring up: every weekday at 7am, Claude pulls my Meta ad spend, ROAS, and top 3 creatives from yesterday. Writes a one-paragraph summary of what changed. Drops it in my Slack. I read it with breakfast.
Other Routines worth setting up:
Skills are how Claude knows what to do. MCPs are how Claude reaches into the apps that hold your work.
MCP stands for Model Context Protocol. In plain English, an MCP is a cable that connects Claude to a tool you already use. With MCPs installed, you stop copying and pasting between tabs. Claude reads from Notion, posts in Slack, pulls from Stripe, and writes in Drive, directly.
To install your first MCP:
claude mcp add notion (or any other tool name)pull my latest content board from Notion and tell me what's missingCommon starter MCPs:
Browse the full directory: mcpservers.org lists every available MCP server. Updates weekly.
Example prompts after install:
This is the file that makes everything else click. Skills, MCPs, Routines all work better when CLAUDE.md is in place.
CLAUDE.md is the foundation file Claude reads automatically every single session. It's where you tell Claude who you are, what you do, what you're working on, and how you like to be talked to.
Three valid locations:
~/.claude/CLAUDE.md global, loads in every project./CLAUDE.md project root, loads in that folder only./.claude/CLAUDE.md alternative project locationProject-level rules take precedence over global. You can have both.
To create yours:
CLAUDE.md~/.claude/ (your home directory)Paste-ready template:
# Who I am
I'm [your name]. I'm a [your role]. I run [your business or project].
# Who I serve
[Describe your audience or clients in 1-2 lines.]
# What I'm working on this week
- [Goal 1]
- [Goal 2]
- [Goal 3]
# Voice rules
- Short sentences. Short paragraphs.
- Casual but confident. Educational, not preachy.
- No em dashes. Use commas, periods, or parentheses.
# Banned words
delve, dive into, elevate, navigate the landscape, unlock the potential, harness, leverage (as a verb), boundaries, journey, transform
# My skills
- /script
- /summary
- /planner
- brand-voice
# My MCPs
- notion
- slack
- gmail
# Default behaviors
- Always include a specific example or number with any claim
- When uncertain, ask one clarifying question instead of guessing
- Don't write more than 200 words unless I ask for more
When to use CLAUDE.md vs a skill:
Use CLAUDE.md for persistent instructions every session (who you are, voice, defaults). Use skills for task-specific workflows that load on demand (writing a script, auditing an ad, generating a carousel).
Bonus: per-project CLAUDE.md.
If you work across multiple projects, give each one its own folder and its own CLAUDE.md. Open the folder, Claude becomes that project's brain. Same setup, different context.
| Step | Command | What it does |
|---|---|---|
| Install Claude Code | claude.ai/install | One-line install |
| Run Claude Code | claude | Opens an interactive session |
| Create a skill | ~/.claude/skills/<name>/SKILL.md | Auto-loaded prompt |
| Trigger a skill | /<skill-name> | Fires the skill manually |
| Add an MCP | claude mcp add <tool> | Connects an app |
| Schedule a Routine | /schedule [description] | Runs in Anthropic's cloud |
| Write CLAUDE.md | ~/.claude/CLAUDE.md | Foundation file, every session |