DEV Community

brian austin
brian austin

Posted on

Claude Code Routines are here — and they expose a real problem with $100/month pricing

Claude Code Routines are here — and they expose a real problem with $100/month pricing

Anthropic just shipped Claude Code Routines and it's blowing up on Hacker News (300+ points today).

Routines let you define repeatable multi-step workflows in Claude Code:

# .claude/routines/deploy.md
## Deploy Routine
1. Run test suite
2. Check for TypeScript errors
3. Build production bundle
4. Run security audit
5. Deploy to staging
6. Smoke test staging
7. Deploy to production
Enter fullscreen mode Exit fullscreen mode

You trigger it with:

/routine deploy
Enter fullscreen mode Exit fullscreen mode

And Claude executes every step, autonomously.

This is genuinely powerful. But there's a catch nobody's talking about.

The rate limit problem just got bigger

Routines are long. A 7-step deploy routine might take 15-20 minutes of continuous Claude Code usage.

If you're on the $20/month Claude plan, you hit rate limits fast. The $100/month Pro Max tier helps — but developers on HN are already reporting quota exhaustion at that tier too.

Now with routines, a single workflow can chew through your quota in one sitting.

What routines actually change

Before routines, Claude Code was conversational. You'd ask it to do something, review, then ask the next thing. Rate limits were annoying but manageable.

With routines, Claude Code becomes agentic. You trigger a routine and walk away. It runs 7, 10, 15 steps autonomously.

This is the future of developer tooling. But it means:

  • More tokens per session (every step in the routine = tokens)
  • Longer uninterrupted runs (hard to pause mid-routine)
  • Rate limits at the worst possible time (mid-deploy is not a good time to hit a quota wall)

A concrete example

Here's a code review routine that I use:

## Code Review Routine
1. Read all changed files in the current branch
2. Check for security issues (SQL injection, XSS, secrets in code)
3. Check for performance regressions
4. Verify test coverage on new code
5. Review API compatibility if any public interfaces changed
6. Write a summary of findings in REVIEW.md
7. Create GitHub issue for each critical finding
Enter fullscreen mode Exit fullscreen mode

Running this on a medium PR uses a lot of tokens. On the free tier, you'll hit limits after 2-3 routines. On $20/month, maybe 5-6. On $100/month... more, but still not unlimited.

The real cost math

Here's what the pricing stack looks like:

Tier Monthly Cost Routine runs (approx)
Claude Free $0 2-3/day
Claude Pro $20/month ~10-15/day
Claude Pro Max $100/month ~50-60/day
Direct API $10-15/month* Unlimited**

*At typical developer usage levels
**Rate limited by API tier, not arbitrary quotas

The API approach is interesting because you pay for what you use, not a flat fee that resets.

The alternative: API access at $10/month

I've been using SimplyLouie — it gives you direct Claude API access for $10/month (or $2/month for the basic tier).

For routine-heavy workflows, this matters because:

  • No "you've hit your limit, come back tomorrow" walls
  • You can run routines overnight without worrying about quota reset times
  • The cost scales with actual usage, not a flat subscription

The /developers endpoint gives you curl access:

curl https://simplylouie.com/api/chat \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "messages": [{"role": "user", "content": "Review this PR for security issues..."}],
    "model": "claude-3-5-sonnet-20241022"
  }'
Enter fullscreen mode Exit fullscreen mode

You can trigger this from inside a routine:

#!/bin/bash
# .claude/hooks/pre-routine-check.sh
curl https://simplylouie.com/api/chat \
  -H "Authorization: Bearer $SIMPLY_KEY" \
  -d '{"messages": [{"role": "user", "content": "Quick: is there anything in this diff that looks risky? $(git diff HEAD~1)"}]}'
Enter fullscreen mode Exit fullscreen mode

What I'm doing with routines

Here are the three routines I've built so far:

Morning standup routine:

1. Check git log for yesterday's commits
2. Summarize what changed
3. Check open PRs
4. List what's blocking
5. Write standup update to standup.md
Enter fullscreen mode Exit fullscreen mode

Pre-commit routine:

1. Run linter
2. Run tests
3. Check for debug logs and console.log
4. Check for hardcoded values that should be env vars
5. Update CHANGELOG.md
Enter fullscreen mode Exit fullscreen mode

Incident response routine:

1. Pull latest logs from prod
2. Identify error patterns
3. Check recent deployments for correlation
4. Draft incident report
5. Suggest fixes ranked by likelihood
Enter fullscreen mode Exit fullscreen mode

The bottom line

Claude Code Routines are the best thing Anthropic has shipped for developers this year. They make Claude Code feel like a real autonomous agent rather than a chat interface.

But they also make rate limits a much bigger problem. If you're running routines seriously, you'll hit the ceiling on any flat subscription tier.

The economics start making more sense when you look at API-based access — especially for developers who run intensive routines but want predictable costs.


Try SimplyLouie free for 7 dayssimplylouie.com/developers

The $2/month plan covers casual use. The $10/month developer tier is built for routine-heavy workflows.

50% of revenue goes to animal rescue. Because AI should help everyone.

Top comments (0)