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

推荐订阅源

C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
aimingoo的专栏
aimingoo的专栏
V
V2EX
博客园 - 【当耐特】
T
Tailwind CSS Blog
Apple Machine Learning Research
Apple Machine Learning Research
量子位
MyScale Blog
MyScale Blog
Hugging Face - Blog
Hugging Face - Blog
大猫的无限游戏
大猫的无限游戏
The Cloudflare Blog
月光博客
月光博客
I
InfoQ
WordPress大学
WordPress大学
Martin Fowler
Martin Fowler
T
The Blog of Author Tim Ferriss
爱范儿
爱范儿
小众软件
小众软件
罗磊的独立博客
Recent Announcements
Recent Announcements
Blog — PlanetScale
Blog — PlanetScale
J
Java Code Geeks
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

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
Anthropic's June 15th pricing reframes Claude Personal AI...
gtapps · 2026-05-18 · via DEV Community

gtapps

Infographic showing Anthropic’s June 15th Claude Agent SDK credit shift, separating interactive Claude usage from unattended Agent SDK credits, with estimated programmatic workload cost increases of 12x to 175x.
Anthropic's June 15th pricing change is not just a billing update. It changes where Claude personal assistants should live.

If you want a Claude-powered assistant that runs beyond a single chat session, you now have two serious paths.

  1. Managed Agents: hosted, scalable, API-native, and priced like infrastructure.
  2. Local always-on Claude Code instance: close to your files, tools, repos, permissions, memory, and personal context.

Tools like Hermes Agent, OpenClaw-style assistants, T3 Code, Zed's Claude Agents, or OpenCode wrappers when they route unattended Claude work through subscription-authenticated Agent SDK usage or claude -p, now live inside the new Agent SDK credit model. That can mean cost increases of 12x to 25x typically, with extremes near 175x.

What changes on June 15th

Starting June 15th, 2026, Claude Agent SDK usage and claude -p no longer draw from the same subscription bucket as interactive Claude usage.

They move to a separate monthly Agent SDK credit.

That credit covers:

  • Claude Agent SDK usage in your own projects
  • claude -p / claude --print
  • Claude Code GitHub Actions
  • Third-party apps authenticated through the Agent SDK

It does not cover:

  • Interactive Claude Code
  • Claude chat
  • Claude Cowork

Interactive Claude stays subscription-shaped. Unattended programmatic Claude becomes credit-shaped, then extra-usage/API-priced once the credit is gone.

Reported effective cost increases land in the 12x–25x range for typical programmatic workloads, with extreme cases (heavy harness usage on a Pro subscription) quoted as high as 175x. The right framing is not "the bill went up." It is "the subsidy went away."

Plan Monthly Agent SDK credit
Pro $20
Max 5x $100
Max 20x $200
Team Standard $20
Team Premium $100
Enterprise usage-based $20
Enterprise seat-based Premium $200

Monthly Agent SDK credit by Claude plan tier, effective June 15th, 2026.

The local alternative: always-on Claude Code instance

An always-on local Claude Code instance keeps the assistant alive locally, with durable state in files and inbound channels or terminal sessions. That is the future. Run it under Docker so it survives reboots and stays available between sessions.

Claude Code already provides much of the substrate a personal assistant needs:

  • Authentication and model access without a separate API key
  • A permission-gated tool layer (Read, Write, Bash, Grep, Edit)
  • Hooks at session start, tool pre/post, and session end
  • Subagents with isolated context windows, so heavy reads do not poison the main session
  • MCP server integration, skills, and a plugin system with marketplace
  • CLAUDE.md as canonical project policy, read on every session
  • Auto-memory keyed to the project working directory, persistent across sessions
  • Session persistence, resume, and fork

A plugin loaded into that instance adds the operating layer on top: scheduled routines, background watches, a proposal pipeline that gates mutation, and channel-based notification. That is what turns the substrate into the scenarios below.

What that looks like in practice:

  • An assistant that wakes at 7am, summarizes overnight Slack, and posts the digest to a Discord / Telegram DM
  • A heartbeat that checks CI every twenty minutes, stays silent when green, and pings the operator when a job fails with the failing test pre-quoted
  • A routine that picks gh issues when idle and tackles them

Disclosure: I maintain claude-code-hermit, an open-source Claude Code plugin that turns CC into an always-on personal AI assistant. The patterns described here are not theoretical for me.

Sources