PandaNpc
PandaNpc
← Best Practices

Claude Code June 2026 Billing Change: Keep Your Subscription, Not API Credit

If you normally use Claude Code remotely (desktop client connecting to a dev machine, web interface, or any automated script driver), this change on June 15 will likely cost you more money. This post explains: what exactly changed, who will pay more, and how to make sure your remote sessions still use the subscription quota you're already paying for.

1. What exactly changes on 6/15

According to Anthropic's official announcement:

  • claude -p (headless / non-interactive mode), the Claude Agent SDK, Claude Code GitHub Actions, and third-party apps driven by the Agent SDK will all be removed from your subscription quota and will no longer count toward your Pro/Max plan's usage limit.
  • Instead, you'll get a separate monthly Agent SDK credit, billed at full API prices:
Plan Monthly Agent SDK credit
Pro $20
Max 5x $100
Max 20x $200
  • This credit does not roll over (unused amounts expire at the end of the month). Once exhausted, overages are deducted from usage credits at API prices (and only if you have usage credits enabled).
  • βœ… Interactive use is not affected: Running Claude Code directly in your terminal / IDE will continue to use your original subscription quota, with no extra cost.

2. Who will pay more

Heavy "programmatic / headless" users are most affected. If your remote setup, automation, or CI relies on claude -p or the Agent SDK β€” previously these all consumed your subscription quota, but now you'll only get a small credit, and overages will be charged at API prices. For Max 20x users, that $200 credit per month can run out quickly under heavy usage.

People who only interactively use Claude Code at their computer will basically not notice any change.

3. Key: How to keep remote Claude Code using your subscription

There's an important point many people miss β€” "remote access" is not the same as "headless."

Many remote setups use claude -p (headless) for convenience, and starting 6/15 those will start eating into credit / being charged at API prices. But if your remote setup runs an interactive claude REPL, then Anthropic sees it as "interactive use" β€” it continues to use your subscription quota, without touching that credit.

PandaNpc's remote solution is designed this way: its interactive mode (cc-tty) runs the claude REPL. So when you use your desktop / web client to remotely connect back to your dev machine and control Claude Code, it still uses the quota from your Max subscription (Max 20x's 5 hours/week), without consuming Agent SDK credit or incurring additional API charges.

In other words: after June 15, you can still "remote into your dev machine's Claude Code from another computer's desktop client or a browser," and pay no extra API money.

4. How to use it (two steps)

Step 1: Install pandapaw on your dev machine (one command)

macOS / Linux:

bash
curl -fsSL https://cos.pandanpc.com/pandapaw/install.sh | sh

Windows (PowerShell):

powershell
iwr -useb https://cos.pandanpc.com/pandapaw/install.ps1 | iex

Step 2: On another computer, open the PandaNpc desktop client, or visit https://pandanpc.com/agent in a browser. Use the connection info generated by pandapaw on your dev machine to add a connection to that dev machine. After that, you can view sessions, approve permissions, and send commands from the desktop / web client β€” all remotely controlling Claude Code on the dev machine β€” using interactive mode, so it continues to use your subscription.

5. Summary: What you should do before 6/15

  1. Check whether your remote / automation setup uses headless mode (claude -p / Agent SDK) or interactive mode β€” the former will start costing credit after 6/15.
  2. If you want remote access without extra cost, use an interactive remote solution (like PandaNpc cc-tty), which continues to use your subscription.
  3. Download the desktop client from the official site (Windows/macOS/Linux), or use the web client directly: https://pandanpc.com

The change is happening in just a couple of days β€” sort it out now so you're not shocked by the bill on 6/15. Feel free to discuss in the comments.

First published on pandanpc.com