DEV Community

Victoria
Victoria

Posted on • Originally published at brightgirl.hashnode.dev

Going Deep on Claude Code: 6 Hidden Features Most Developers Miss

Going Deep on Claude Code: 6 Things That Actually Changed How I Work

Intro

I was using Claude Code wrong for weeks.

Not broken-wrong. It worked fine. I'd describe a task, Claude would write code, I'd tweak it, move on. Totally reasonable workflow. Except I was treating a power tool like a calculator.

Then I started digging. Turns out there's a whole layer of Claude Code that doesn't announce itself — you just have to find it. Some of it's in the docs, some of it you only discover by accident. Here's what actually stuck.


1. The ! trick nobody mentions

Type ! before anything in the prompt and Claude Code runs it as a shell command. Output goes straight into context.

! git log --oneline -10
! npm test
Enter fullscreen mode Exit fullscreen mode

I started doing this instinctively. Need to check what's failing? ! npm test. Want Claude to see the actual file structure? ! ls -la. No tab switching, no copy-pasting output. It just flows.

Small thing. Weirdly impactful.


2. CLAUDE.md: onboarding your AI like a new teammate

Every project can have a CLAUDE.md file at the root. Claude reads it automatically at the start of every session. Think of it as an onboarding doc — except the new hire never forgets it.

In our team we use it to describe the project structure, coding conventions, and which commands to run. Something like:

- Run tests with: npm test
- Never edit generated files in /dist
- API keys live in .env, never hardcode them
Enter fullscreen mode Exit fullscreen mode

When someone new comes in and starts working with Claude on the codebase, it immediately knows the context. No "so what does this project do" back-and-forth.

The difference between a generic Claude response and a project-aware one is significant. Takes 20 minutes to write a good CLAUDE.md. Worth it.


3. Plan mode: think before you act

By default Claude Code will just... start doing things. Which is usually fine, but sometimes you describe a complex task and watch it confidently go in completely the wrong direction for 10 minutes.

Plan mode fixes this. Type /plan before your task and Claude will lay out exactly what it's going to do — and wait for your approval. You can redirect, cut steps, or say "actually, do it differently." Only then does it start working.

For anything non-trivial, this alone saves more time than it costs. You stop playing cleanup on bad assumptions.


4. Parallel sessions: stop working sequentially

Claude Code runs in a single terminal session — but nothing stops you from opening multiple terminal windows and running claude in each one simultaneously.

Three independent tasks? Three windows. One refactoring the codebase, one writing tests, one updating docs. They don't block each other.

This sounds obvious but most people never do it because it doesn't feel like "the AI workflow." It's just terminals. But the mental shift matters: stop thinking of Claude as one helper working through a queue and start giving parallel work to parallel sessions.


5. Make the agent write its own instructions

This is the one that clicked last for me.

Claude Code can write and update its own instruction files — including CLAUDE.md. After finishing a complex task, try this: "Write a reusable instruction file for this workflow so we can repeat it later." Claude will create a markdown file with step-by-step instructions it can follow next time you ask.

Same goes for CLAUDE.md. After a long session where you figured out conventions, edge cases, things that didn't work — say "update CLAUDE.md with everything we learned today." It writes it down. Next session, it already knows.

Over time, the agent is actively building its own knowledge base. You stop re-explaining the same things. It stops making the same mistakes. The loop compounds.

Most people think of AI as something you prompt from scratch every time. This inverts that completely.


6. MCP servers: give Claude access to everything

Out of the box Claude Code can read files, run commands, search the web. That's already a lot. But MCP (Model Context Protocol) lets you go further — connect Claude to any external system.

Databases, Slack, GitHub, Notion, internal APIs — if it has an interface, someone has probably built an MCP server for it. The community has built hundreds. Adding one is a single command:

claude mcp add
Enter fullscreen mode Exit fullscreen mode

You install one, Claude gets access, and now it can actually query your database or read your tickets while helping you code.

This is the part where "coding assistant" stops being the right framing. It's more like giving an agent access to your entire work environment.


Closing

None of this is hidden exactly — it's all in the docs somewhere. But docs are reference material, not discovery. You don't find these things by reading, you find them by using the tool long enough to wonder "wait, can it do that?"

The answer is usually yes.


Have a feature I missed? I'd love to hear what changed how you work with Claude Code.

Top comments (0)