One Claude, several rooms
Same model underneath — different surfaces for different kinds of work. The skill is knowing which room to walk into.
The conversation
Thinking, drafting, analysing, learning. You steer turn by turn. Best when the value is in the exchange — exploring options, refining an argument, reviewing a document.
The workshop
An agentic coding tool in your terminal, IDE, desktop app, or browser. It reads your codebase, edits files, runs commands, and commits — you describe outcomes, it does the work.
The colleague
Claude Code's agent architecture, pointed at knowledge work instead of code. Give it folders, connectors, and a task; it plans, executes end-to-end, and hands back finished files.
Claude Code: an agent in your terminal
Not a chat window bolted onto an editor. It takes action — edits files, runs tests, resolves conflicts, writes release notes — from wherever you already work.
Install in a minute
- Native installer or
npm install -g @anthropic-ai/claude-code(Node.js 18+) - Sign in with your Claude account,
cdinto a project, runclaude - Also available as VS Code / JetBrains extensions, in the desktop app, and on the web
Describe outcomes, not steps
- Build: "Add an endpoint returning user risk profiles, with tests"
- Debug: paste the stack trace, ask it to find and fix the cause
- Navigate: "Walk me through how auth works in this repo"
- Automate: lint fixes, merge conflicts, release notes, CI chores
CLAUDE.md file in your repo acts as persistent memory: build commands, code style, branch conventions, gotchas. Claude reads it every session, so you stop re-explaining your project. Keep it short and ruthlessly curated — it's loaded into context every time.
- Project-level:
./CLAUDE.md— team conventions, checked into git - Personal:
~/.claude/CLAUDE.md— your own preferences, everywhere - Ask Claude to maintain it: "Add what we just learned about the build to CLAUDE.md"
tail -f app.log | claude -p "Slack me if anomalies appear in this stream". Anywhere you'd write a fiddly script, consider writing a sentence instead.
Claude Cowork: hand off the work itself
Cowork sits next to Chat. You point it at folders and tools, describe the deliverable, and it runs the task end-to-end — no copying out of a chat window.
Tell Claude what you need, not how. Give it the folder with the raw material and name the output format: deck, doc, spreadsheet, tidy folder.
Claude analyses the request, shows a plan, then executes — opening files, using tools, browsing when needed. Every step is visible; redirect any time.
You get finished files for review, not a wall of chat text. Start at your desk, check in from your phone; the session keeps going with your laptop closed.
⚠ Worth knowing: Cowork tasks consume noticeably more usage than chat — batch related work into one session, keep quick questions in Chat, and watch Settings → Usage. Claude's shell work runs in an isolated environment on Anthropic's servers, reaching your local files only through the desktop app with the access you grant.
Connectors plug Cowork into where your work already lives — Slack, Microsoft 365, Jira, Salesforce, Google Drive, internal tools. With one enabled, Claude can read and act: update a ticket, draft a reply, post to a channel, save a file. Authorise once from the Customize panel; use it in any session. On enterprise plans, admins control which connectors exist and whether each is read-only or can write.
The unlock: a connector plus your filesystem means Claude can pull data from a system and save it locally, or use local files to drive external actions — the two halves of most real workflows.
Skills are packaged procedures — a folder of instructions and templates Claude loads when relevant. Invoke one by name (/skill-name) or just describe the task. The compounding trick: finish a workflow once, then say "Package what we just did into a skill" — the built-in skill-creator captures the steps so next month's version is one prompt.
Plugins bundle connectors + skills so a whole team starts from the same setup. Anthropic ships role-based ones — e.g. Product (Jira, Confluence, Slack with skills for feedback clustering, PRDs, sprint updates) and Sales (Salesforce, Outlook with meeting prep and pipeline reviews).
"Every weekday at 5pm, read the six squad standup notes in this folder and produce the consolidated status report in our template, flagging blockers." Schedule it daily, weekly, or monthly.
"Sort this downloads folder", "pull the expense lines out of these receipt screenshots into a spreadsheet", "rename these 200 files to our convention."
"Turn these meeting notes, this data extract and last quarter's deck into a first-draft steering committee update."
"Read this week's Jira movement for the platform project and draft the stakeholder email; save a copy to the project folder."
Which Claude for this?
Click a task. Argue with the verdict — that's the point of a brown bag.
Maximising Claude — the habits
Beyond picking the right surface, a handful of habits compound. These are the ones that change how much you get back.
The prompt shelf
Copy these on your way out. Adapt freely — they're patterns, not incantations.
I'm new to this codebase. Give me a guided tour: what it does, the architecture, the 5 files that matter most, and how a request flows through the system. Then add a CLAUDE.md capturing build/test commands and conventions you observed.
Plan first, don't edit yet: [describe feature]. List the files you'd touch, the approach, the tests you'd add, and any risks. Wait for my go-ahead.
Every weekday at 17:00: read the standup notes in /ProjectX/standups added today, produce the daily status report using /ProjectX/templates/status.docx, flag blockers and cross-squad dependencies at the top, save to /ProjectX/reports.
Package what we just did into a skill called weekly-steerco-pack: capture the steps, the template locations, and the formatting rules, so next week this is a single prompt.
Here's a proposal I'm presenting to [audience]. Red-team it as a sceptical [risk officer / regulator / CFO]: the 5 hardest questions I'll get, the weakest claim, and what evidence would strengthen it.
Before you start, ask me up to 5 questions whose answers would materially change your approach. Then proceed.