The AI Firehose Podcast
← All episodes
Episode 27 · June 17, 2026 · 10:46

NEW Claude Code Update Changes EVERYTHING!

Claude Code Update: 3 New Features for AI Agents (2.1.178)

Anthropic just dropped Claude Code version 2.1.178, bringing massive improvements to search speed and agent permissions. Learn how these three critical changes allow you to run more reliable, multi-agent workflows for your business. This update moves AI agents from toy projects to professional-grade automation tools.

00:00 - Claude Code Update Overview
00:52 - Faster Search with RipGrep
02:22 - Granular Permission Control
04:32 - Sub-Agent Security Fix
06:27 - The Power of Multi-Agent Systems
07:21 - Important Bug Fixes & MCP
09:43 - How to Update & Scale

Full transcript

New Claude Code update changes everything. Claude Code just dropped version 2.1.178 and this update is doing three things that actually matter for anyone using AI agents in their business right now. Let me walk you through exactly what changed, why it's a big deal, and how it affects how you run AI workflows day-to-day. So Claude Code is Anthropic's AI coding agent.

It runs in your terminal. It reads files, writes code, searches your whole project, runs commands, and manages complex tasks autonomously. Think of it like having a developer on your team who never sleeps and can spin up sub teams on demand. Those sub teams are called sub agents and two of the three changes in this update are directly about controlling them better.

Hey if we haven't met already I'm the digital avatar of Julian Goldie, CEO of SEO agency Goldie Agency. Whilst he's helping clients get more leads and customers I'm here to help you get the latest AI updates. Julian Goldie reads every comment so make sure you comment below. Let's start with what most people will actually feel first.

The search just got faster, a lot faster. In this update tool descriptions now recommend a ripgrep based grep to make code searches faster and more consistent. Here's what that means in plain English. When Claude Code searches through your files looking for a piece of content, a keyword, a setting, it uses a tool called grep under the hood.

Grep is basically a search engine for your computer's files. Now Claude is being guided to use a specific smarter version of that called ripgrep. Installing ripgrep on your system makes the grep tool significantly faster, up to five to ten times faster, especially in large projects. Claude Code will automatically use it if it's available.

Why does that matter to you? Every time Claude Code is working on a task it has to search through files to understand your project. That search step happens constantly in the background. If that search is slow everything is slow, the agent waits, you wait, tasks stack up.

Imagine Claude is pulling together a weekly content report for the AI profit boardroom, searching through all your saved member conversations, your tutorial notes, your prompt library. Before this update that search was taking longer than it needed to, now it moves faster. Claude finds what it needs, gets back to work quicker, and your output comes out the other end sooner. Ripgrep respects your .git in your file so it won't waste time searching through folders that don't matter, making sure Claude only sees the content that's actually relevant.

This is a quiet change but it's the kind of thing that compounds. Every task Claude Code runs involves dozens of search operations. Faster search means tighter, smarter, more focused AI work. Now the second change, and this one is where it gets interesting.

Permission rules now accept tool param colon value syntax with an asterisk wildcard to block specific tool inputs. Okay, let's translate that. Claude Code has a permission system. You can tell it what it's allowed to do and what it's not.

Basic stuff like don't delete files or don't touch this folder, but until now those rules were a bit blunt. You could block a whole tool, like saying don't use the edit tool at all, but you couldn't say don't use the edit tool specifically on this type of file. Now you can. The new tool param value format lets you get surgical.

You can say use the edit tool but only on files in this folder, or run bash commands but block any command that touches this directory, and the asterisk wildcard means you can write one rule that covers a whole category of inputs at once. Say you've got Claude Code helping manage content pipelines for the AI profit boardroom, drafting tutorial scripts, updating the member prompt library, organizing the community SOPs. You want Claude to be able to read and search everything, but you only want it editing files in one specific folder. Before this update you either trusted it with everything or locked it down entirely.

Now you can draw a precise line, you can control which sub-agents Claude can spawn using task agent name, and you can also use the dash dash disallowed tools CLI flag to disable specific agents at startup. So the permission system is getting layered, more granular, more useful for production. If you want to get hands-on with Claude Code right now, building AI automation workflows, setting up agent permissions for your own business, running AI pipelines that save you serious time, the AI profit boardroom is where we go deep on exactly this. We've got a full 30-day roadmap built around Claude Code.

Step-by-step tutorials, walking through how to set up agents, configure permissions properly, and build background workflows that run on autopilot. Four live coaching calls every week where members bring their actual setups and we troubleshoot live. And right now there are hundreds of members inside who are actively using Claude Code for content creation, lead gen, client work, and community management. If you want to skip the guesswork and just get Claude Code working in your business, link in the description or go to aiprofitboardroom.com.

The third change is the one that matters most for anyone running multi-agent workflows. This one is about sub-agents and specifically about a gap in the system that's now been closed. Here's how sub-agents work. Claude Code can spawn smaller AI agents to handle specific tasks in parallel.

You've got a main agent, call it the parent, and it can launch sub-teams to do things like research, searching, writing, or running tasks simultaneously. It's one of the most powerful features in Claude Code because it lets you parallelize work that would otherwise happen one step at a time. But here was the problem. Sub-agents were being launched before the permission system evaluated them, so you could have a parent agent set with specific rules, things it's not allowed to do.

And when it spun up a sub-agent, that sub-agent could sometimes bypass those rules, not maliciously, just because the check wasn't happening in the right order. In 2.1.178, auto-mode before spawning sub-agents now prevents them from bypassing permission rules. Sub-agent spawns are now evaluated by the classifier before launch, closing a gap where a sub-agent could request a blocked action. So now the sequence is, parent agent decides to spawn a sub-agent, then classifier checks the sub-agent against your permission rules, then it launches.

Sub-agents cannot present interactive permission prompts to the user. If a sub-agent invokes a tool that matches a blocked rule, the call is treated as denied. Think about what this means in practice. You set up a Claude Code workflow to help run the AI Profit boardroom's community operations, drafting new tutorials, responding to member prompts, flagging questions that need coaching call answers.

You tell the main agent, don't touch the member billing folder, don't edit anything in the admin directory. Before 2.1.178, that agent could spin up a sub-agent to help with a task, and that sub-agent might have slipped through and accessed something it shouldn't have, not because it was trying to, but because the check wasn't upstream enough. Now that check happens before the sub-agent even launches. The rule holds, no gaps.

This might sound like a technical detail, but it's actually a fundamental shift in how much you can trust multi-agent systems. Here's why that matters. The real power of AI agents isn't in single task mode. It's in having multiple agents working in parallel.

One searching, one writing, one checking output, one publishing, all coordinated by a parent agent that keeps everything on track. That's where the time savings get serious. But to run those workflows confidently, you need to know the agents are actually following your rules. All of them, not just the parent.

If sub-agents can drift out of bounds, you can't trust the whole system. You have to babysit it, which defeats the point. What 2.1.178 does is close that loop. You define the rules once, at the top level.

The system enforces them all the way down through every sub-agent spawn. Your rules stick. The recommended pattern now is to restrict sub-agents to read only tool sets and defer all editing work to the parent agent that can handle approval prompts. That's a clean architecture for anyone building serious automation.

Sub-agents explore and gather. The parent agent acts. You stay in control. And there were also a set of fixes bundled into this release worth calling out quickly.

Fixed clawed agents completed sessions not retiring when an idle sub-agent was still parked or had leaked a backgrounded shell. Fixed background agent work trees being orphaned after the 30-day job retention sweep. Fixed background sessions reattached after a sleep slash wake not telling the model the correct date. That last one is interesting.

If your laptop goes to sleep and wakes up with clawed code still running a background agent, it was previously feeding the agent the wrong date. Which sounds small, but if you're running any kind of time-sensitive workflow like scheduling content or flagging things as recent or outdated, that matters. All fixed now. Also fixed, sub-agents not inheriting dynamically injected MCP servers and isolated work tree sub-agents being denied read and edit access on files inside their own work tree.

MCP servers are how clawed code connects to external tools. Things like Google Drive, project management software, databases. If you're building workflows that touch outside systems, this fix matters. Your sub-agents now properly inherit those connections from the parent.

Here's the picture these three changes paint together. Faster search, more precise permissions, sub-agents that follow your rules. What that adds up to is a system that's starting to be trustworthy enough to run serious business workflows with, not just toy projects. Think about what a reliable multi-agent setup inside clawed code could do for a community like the AI Profit Boardroom.

One agent monitors the community daily for common questions. A second agent drafts tutorial topics based on what members are asking. A third agent searches the existing prompt library to see what's already covered before anything gets duplicated, all running in parallel, all respecting the same set of rules, all handing off to the parent agent when something needs a human decision. That used to be theoretical.

With every release like this one, it's getting more real. The pace of improvement in clawed code specifically has been fast. Version numbers are moving quickly. Each release is closing gaps that were real pain points for anyone trying to run AI agents seriously.

The search speed improvement, the permission granularity, the sub-agent safety layer. These are not superficial polish. They are foundational reliability improvements. And reliability is what lets you actually scale.

You don't scale a workflow you don't trust. You scale workflows that run clean, follow rules, and don't require you to supervise every step. That's what this update is moving toward. If you're running any kind of multi-agent workflow right now, update to 2.1.178.

Just run npm update-g at anthropic-ai slash clawed-code in your terminal and you're there. If you're new to clawed code and want to understand the permission system before you start building with sub-agents, that's exactly what we walk through inside the AI Profit Boardroom. We've built a dedicated 30-day roadmap for setting clawed code up properly from the start. Day one, you understand the permission architecture.

Day two, you're building your first multi-agent workflow. By the end of the month, you've got background pipelines running that handle real tasks in your business. Four live coaching calls every week with the team and the community so you're never stuck. A prompt library with clawed code templates already tested and ready to use.

And a member map of 3,500 business owners, a lot of them actively building with clawed code right now, so you can connect with people running similar setups to yours. Link in the description or go to aiprofitboardroom.com. And if you want to start for free, join the AI Success Lab. 75,000 members, free access, video notes from every video I make including this one, and 100 plus AI use cases to work through.

Links in the comments and description.

More episodes

Browse all episodes →