DEV Community

brian austin
brian austin

Posted on

Anthropic just removed Claude Code from Pro tier. Here's what that means for developers.

Anthropic just removed Claude Code from Pro tier

If you're paying $20/month for Claude Pro and relying on Claude Code for your development workflow, you just lost something. Anthropic has quietly removed Claude Code from the Pro tier — the agentic coding feature that many developers considered the main reason to pay for Pro.

This isn't the first time. Remember when Anthropic briefly restricted CLI usage? Now it's the Pro tier's turn to lose a flagship feature.

What actually changed

Claude Code — the terminal-based agentic coding assistant — is no longer included in the $20/month Pro subscription. If you want it, you'll need to pay more or find another way.

For developers who were using Claude Code to:

  • Scaffold entire projects from a single prompt
  • Refactor large codebases automatically
  • Run multi-step coding tasks without supervision

...you now need to either upgrade to a higher tier or rebuild your workflow.

The pattern is clear

This is the third time in a few months that Anthropic has changed what Pro users get:

  1. CLI usage restrictions (briefly, then reversed after backlash)
  2. Rate limit reductions during peak hours
  3. Claude Code removed from Pro tier (now)

Each time, developers who built workflows around a specific feature had to scramble.

The flat-rate alternative

I've been running SimplyLouie — a $2/month flat-rate Claude API wrapper — for a few months now. The pricing is intentionally simple:

  • $2/month (✌️)
  • Unlimited messages (within fair use)
  • No feature surprises — you get API access, period
  • No tier upgrades that cost 5x more

Here's what flat-rate API access looks like in code:

curl -X POST https://simplylouie.com/api/chat \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "message": "Refactor this function to use async/await",
    "context": "<your code here>"
  }'
Enter fullscreen mode Exit fullscreen mode

You get a response. No token counting. No tier gating. No feature removal announcements.

What this means for your workflow

If you were using Claude Code for agentic coding tasks, here are your options:

Option 1: Upgrade to a higher Claude tier
Anthropic will likely offer Claude Code at a higher price point. Expect $40-60/month based on current pricing trajectories.

Option 2: Use the API directly
Claude's API is still available. You can build your own agentic coding loop using the messages API:

const Anthropic = require('@anthropic-ai/sdk');
const client = new Anthropic();

async function agenticCodingLoop(task, code) {
  const messages = [
    {
      role: 'user',
      content: `Task: ${task}\n\nCode:\n${code}`
    }
  ];

  // Loop until task complete
  while (true) {
    const response = await client.messages.create({
      model: 'claude-opus-4-5',
      max_tokens: 4096,
      messages
    });

    const content = response.content[0].text;

    // Check if Claude needs another step
    if (content.includes('TASK_COMPLETE')) {
      return content;
    }

    // Add Claude's response and continue
    messages.push({ role: 'assistant', content });
    messages.push({ 
      role: 'user', 
      content: 'Continue with the next step.'
    });
  }
}
Enter fullscreen mode Exit fullscreen mode

This is essentially what Claude Code does under the hood. Building it yourself means you control the loop, the model version, and the cost.

Option 3: Use a flat-rate wrapper
If you don't want to manage raw API costs, a flat-rate wrapper like SimplyLouie gives you API access for $2/month. No Claude Code UI, but full access to the underlying model.

The real lesson

The Claude Code removal is a reminder of something developers often forget: subscription features can be taken away. When a company can restructure its tier offerings at any time, the feature you depend on today might cost 3x more next quarter.

Flat-rate API access doesn't have this problem. You're paying for model access, not for a specific UI feature. If you build your own tooling on top of the API, you own that tooling regardless of what Anthropic does with its subscription tiers.

What developers are doing

The HN thread about Claude Code's removal is already filling up with developers talking about:

  • Building their own local Claude Code alternatives
  • Switching to open-source models (Qwen3, Llama) to avoid subscription dependency
  • Looking for API-level access without the subscription overhead

All three of these trends point toward the same thing: developers want control over their AI tooling, not feature-gated subscriptions.


SimplyLouie is a $2/month flat-rate Claude API. No token counting, no tier upgrades, no feature surprises. Start your 7-day free trial →

50% of revenue goes to animal rescue. ✌️

Top comments (0)