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

推荐订阅源

G
Google Developers Blog
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
A
About on SuperTechFans
量子位
Engineering at Meta
Engineering at Meta
B
Blog
The Cloudflare Blog
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
Y
Y Combinator Blog
J
Java Code Geeks
D
DataBreaches.Net
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
H
Help Net Security
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
酷 壳 – CoolShell
酷 壳 – CoolShell

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
4 Hard Lessons on Optimizing AI Coding Agents
peter.zeng · 2026-05-22 · via DEV Community

4 Hard Lessons on Optimizing AI Coding Agents (Claude Code + Cost)

I've been running Claude Code Cli in production for about months now—building, shipping, and watching the token meter spin. Here's what I wish I knew before I started.


1. Your Context Strategy Is Everything

The developers getting 10x from Claude Code aren't prompt whisperers. They're context engineers.

The 2026 consensus is clear: CLAUDE.md is no longer optional. Keep it lean. Ask yourself: "Would removing this line cause the agent to make mistakes?" If not, cut it. No one has time to scroll through 15k tokens of stale docs every session.

One more .claudeignore tweak took my sessions from 150k tokens to 60k—a 60% drop. The culprit? Node modules and dist folders. Block them. You can manually feed files when needed.

The golden rule: engineer before you prompt.


2. The /ghost, OODA, and L99 Patterns

Stop talking to Claude Code like it's ChatGPT. It has 40+ tools built in—most people use 3 or 4.

Four prompt frameworks that actually moved the needle for me:

  • /ghost : Kills the AI filler voice. "It's worth noting that..." disappears. You get clean, direct prose for docs and PRs.
  • OODA : Forces a concrete decision instead of "it depends." Feed it your constraints (team size, shipping cadence) and demand a plan.
  • L99 : Unlocks expert depth. Instead of tutorial answers, you get production-ready patterns.
  • PERSONA : Frames the response through an expert lens. "Senior AWS Solutions Architect with 10 years experience" actually works.

Also: be direct. The system prompt explicitly tells Claude Code to be terse. If you write "Hey, could you maybe take a look at..." you're working against the grain. A crisp "Fix this function" is what the agent wants.


3. Cost Optimization Isn't Magic—It's Math

Let's run the numbers. A 200-call agent session on Opus with growing context can hit 4M input tokens. At $5/M, that's $20 just for input before output. A 20-developer team running 50 sessions daily? $10k+ per month.

Here's where the real waste hides: 70–85% of your tokens are input tokens. And 80% of that input comes from reading project files.

Three fixes that actually work:

Cache your prompts. Anthropic and OpenAI offer 90% and 50% discounts on cache hits. That repeated system prompt? Stop paying for it on every turn.

Skill layers slash token spend. One team cut consumption from 10.4M to 3.7M tokens—$9.21 to $2.81 per session—by routing context through a reusable Skill layer. Think of it as middleware for tokens.

Route by difficulty. A classification model routing simple queries to Sonnet (or even Haiku for boilerplate) while reserving Opus for architectural decisions can cut 40–70% of spend with no quality loss.

Don't let perfect be the enemy of cheap.


4. Agentic Workflows Beat Scripts

The shift from "scripting" to "orchestration" is real. The teams shipping fastest in 2026 aren't writing prompts—they're designing workflows.

Two patterns worth stealing:

TDD governance at the prompt level. Encode your testing discipline into the agent's loop: write, run, observe errors, fix, repeat. With inference costs 5–10x lower than 2025, this feedback loop is now economically sane for 500-line changes.

Leave Opus 4.6 habits behind. Opus 4.7 treats you differently. The old "fine-grained pair programming" approach backfires. Instead, specify the full task in the first turn—goals, constraints, acceptance criteria—and let the agent work. And stop defaulting to max effort. xhigh is the new sweet spot. max overthinks and slows you down.


Bottom line: Engineer your context, use prompt frameworks that drive decisions, route strategically for cost, and design workflows instead of writing scripts. The agents are ready. Your wallet (and your weekend) will thank you.


For devs working with Chinese LLMs: check out cnllm.ai — An enterprise-grade gateway — replace your base_url with https://cnllm.ai to seamlessly access all mainstream LLMs, including top global models like GPT, Claude, Gemini and cost-effective Chinese models like DeepSeek, Qwen, GLM, Kimi, Minimax — fully compatible with OpenAI protocol.