惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
Tailwind CSS Blog
J
Java Code Geeks
Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
爱范儿
爱范儿
量子位
Martin Fowler
Martin Fowler
V
V2EX
博客园 - 三生石上(FineUI控件)
I
InfoQ
MongoDB | Blog
MongoDB | Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
N
Netflix TechBlog - Medium
D
DataBreaches.Net
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
U
Unit 42
Apple Machine Learning Research
Apple Machine Learning Research
H
Help Net Security
T
The Blog of Author Tim Ferriss
Hugging Face - Blog
Hugging Face - Blog
美团技术团队
Engineering at Meta
Engineering at Meta

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
My nightly Claude Code cron was about to start costing re...
Mirza Iqbal · 2026-06-14 · via DEV Community

A billing change lands tomorrow, and last week I went looking for what it would break in my own setup.

Its headline is narrow. interactive subscription work stays exactly as it was, but anything running headless, in the background, on a schedule, starts drawing from a separate metered pool with its own limit.

My subscription was safe. my habits were not.

Somewhere along the way I had built the thing everyone builds. a nightly job that wakes up, calls the model to do some work, and goes back to sleep. Quiet, useful, and as of tomorrow, billed against a pool I never wanted it touching.

Two ways my work talked to Claude.

When I actually looked, every call I made fell into one of two buckets.

First, there was me, sitting there, working live. asking, building, iterating. That is what the subscription covers, and it stayed put.

Second, there was automation. scheduled jobs, background runs, anything that called the model with nobody in the loop. I had treated both as "using Claude", one undifferentiated thing. That billing change drew a hard line between them that I had never bothered to draw myself.

One of them was about to get metered.

Interactive work was fine. Automated work was the exposure.

That nightly cron had felt free, because it rode the same subscription I was already paying for. Tomorrow it stops being free and starts metering against a separate quota. Same job, same output, suddenly a line item.

Multiply one quiet background call by every night of a month, and the free automation I had forgotten I was running becomes a bill I never planned for.

Why the nightly cron was the casualty.

That broken pattern was specific. a headless call to the model, fired by a schedule, with nobody watching.

It was also the shape I had reached for without thinking, because backgrounding a task feels like the smart, hands-off move. That change turned my cleverest-feeling automation into my most expensive one.

How I actually split it.

I did not kill the automation. I cut it in two.

Work that needs no model, the gathering, the checking, the prep, stays in a plain scheduled script that costs nothing. Work that genuinely needs Claude moved back to where I am present and the subscription covers it. That schedule still runs. it stops calling the model behind my back.

Unglamorous, and the whole fix. background does the cheap deterministic work, model work happens in the lane that was always covered.

My honest opinion.

Here it is. tomorrow's split raised no costs for me. it surfaced which of my automations were never on the subscription to begin with.

I had blurred two different things into one word and let a metered pattern hide inside a flat-rate habit. That change created nothing new. it switched on a light that showed what was already there. Anyone running scheduled model calls on a subscription plan has the same light about to come on.

What the split actually exposed.

Nothing about my work got worse. one pattern got a price tag, and that price tag was honest.

What I gained is knowing, for every automation I run, which side of the line it sits on. metered or covered, background or present, deterministic or model. I should have known that before a billing change forced me to look. now I cannot unsee it, and every new automation gets sorted on day one.

If you run anything that calls a model on a schedule, go find it before tomorrow does. Whatever feels free is the thing most likely to surprise you.

Your turn

What background job are you running that you have never checked the bill for.

If this was useful

I work through this in public, the wins and the freezes both, mostly on LinkedIn and YouTube. If the real version of building in the open is useful to you, that is where it lives. LinkedIn, YouTube and X under Mirza Iqbal, and the work at next8n.com.