[Agentic Coding] Header Project
Summary
Briefing: [Agentic Coding] Header Project
Purpose: Developer at a 1-3 person startup, Python/FastAPI/Expo stack, heavy Claude Code investment, seeking tactics for frontend/mobile agent gap, Python-side friction, cross-service debugging, parallel/scheduled agents, harness compounding, and deterministic verification.
Key Insights
- The harness outperforms the model—and your ~60 memory entries may already be hurting you. A 22% performance gap between harnesses has been empirically documented (distinct from model quality), and two independent data points triangulate a counter-intuitive failure mode: a skill added to a WorkOS agent reduced correct-answer rate from 97% to 77% on the exact task it was designed for, and deleting 95% of generated skills cut run time from 68 minutes to 6. The KL-divergence principle explains why: memory files should store only what the model doesn't already know—project-specific invariants, not generic patterns it encodes at training. For your ~60
.claude/memory/entries: run a blunt audit asking "would Claude get this wrong without this entry?" and delete anything that fails; the remainder is likely 5-10 entries that genuinely encode pitfalls specific to pgbouncer quirks, Alembic under parallel-agent work, or your FeedForge auth contract. - How I deleted 95% of my agent skills and got better results
- ⚡️Making DeepSeek v4 outperform Opus 4.7 with Taste
- Agentic Evaluations at Scale, For Everybody
-
Is Grep All You Need? How Agent Harnesses Reshape Agentic Search
-
Your Expo/RN knowledge gap now has three directly installable patches. This Week in React #283 surfaces three concrete tools: Callstack Apex (a domain-specific Gemma 4 model fine-tuned for React Native coding tasks, currently in private beta), Margelo's open-source RN agent skills targeting exactly the friction points you named (Nitro Modules, VisionCamera, MMKV), and Expo SDK 56's
worklet/useNativeState()primitives for flicker-free<TextInput>masking that explain why Claude Code drifts on safe-area handling. These aren't tutorials—they're installable components that close the gap by giving the agent ground truth about the current RN architecture rather than its training-data approximation. Action: install Margelo's RN skills into.claude/skills/immediately; they directly target the VisionCamera/MMKV patterns that generate the most drift, and the Expo SDK 56 primitives entry should become a dedicated skill file so Claude stops reaching for the old architecture. -
The maker/checker split is the single most production-validated architectural upgrade available to you right now. Dropbox Nova (CI-gated validation loop with a 5-attempt cap), Lorikeet (Concierge + Coach + diagnosis agent on traces), Cloudflare's adversarial review agent (different prompt, no ability to generate its own findings), and the WorkOS five-agent state machine all independently converge on the same structure: the agent that writes code must not be the agent that verifies it because they share the same blind spots. The cryptographic test-proof pattern from Nick Nisi—SHA-256 hashing test output and requiring the verifying agent to produce that hash—closes the most common failure mode where an agent lies about test passage. For your existing
/confidenceand/compoundpre-commit hooks: add a hard requirement that the primary agent cannot report success without a separate verification step that produces a cryptographic or structural proof; your hooks are already the right architecture, they just need the verification to be unforgeable rather than self-reported. - Introducing Nova, our internal platform for coding agents
- How I deleted 95% of my agent skills and got better results
- Building Lorikeet: How AI Humility and a Dual-Agent Architecture Are Redefining Customer Support
-
Your weekly scheduled agents have a concrete blueprint that doesn't require vendor lock-in. The most directly implementable architecture in this corpus is a four-component system: an identity markdown file, a macOS LaunchAgents scheduler (or any cron equivalent), a
tasks/folder of markdown files with frontmatter, and ascripts/utilities folder—all stored in an Obsidian-neutral location rather than inside.claude/so they work with Claude Code, Codex, or any future CLI without migration. The key additions from Gant Laborde's "Night Shift" workflow: a feedback file the agent writes back to you (flagging bad specs or corrections it had to make), self-healing documentation updated when the process corrects itself, and a state-justification gate requiring the agent to explain any new state it introduces. Dropbox Nova's production-validated upper bound is a 5-attempt cap before requiring human intervention. For your weekly routines: add afeedback.mdfile that your agent writes to at the end of each run—this single addition converts your existing schedule from a fire-and-forget loop into a compounding improvement system that tells you when your specs are the problem. - My Team of Agents: How I Get Claude to Do Tasks While I'm Away from the Computer
- RNR 364 - AI Triforce with Gant Laborde
-
Nightly log-driven skill distillation is the qualitative leap beyond your current static memory entries. Skill distillation—where a frontier model (Opus/GPT-5.1) authors and grades atomic
SKILL.mdfiles, iterating until accuracy converges, while a smaller model executes them—turns your weekly scheduled agents into a self-improving system. The architecture has three layers: a local markdown knowledge base (~80 workflow files searched before answering any procedural question), atomic skills authored and evaluated by the frontier model, and a nightly log-processing run that identifies what new skills should be generated based on failure patterns. Critically, "the student becomes whichever model happens to be cheapest this quarter"—the skill library is the durable asset, not the model choice. This directly solves your model-churn problem: invest 2-4 hours prototyping the nightly log-to-skill generation loop using your existing JSONL session transcripts as input; even a crude version converts accumulated failures into forward guards rather than leaving them as retrospective notes. - Skill Distillation
- How Anthropic Engineers ACTUALLY Prompt Claude Code (Full Guide)
- Inside YC's AI Playbook
Emerging Patterns
1. Grep outperforms vector retrieval in Claude Code's tool-calling paradigm, which validates your structured .claude/ investment over RAG.
An arXiv empirical study on agent harnesses confirms that grep-based retrieval generally yields higher accuracy than vector retrieval in Claude Code's specific tool-calling paradigm—harness and tool-calling style dominate retrieval method. The study also identifies that agent performance degrades when searches must cope with "distracting material," which is precisely what bloated .claude/memory/ files produce. The implication is counterintuitive for teams considering semantic search: for Claude Code specifically, well-organized markdown files with clear grep-friendly structure outperform embeddings-based retrieval. This validates your existing structured .claude/ investment, but with a corollary: the files need to be pruned aggressively because noise in a grep-friendly corpus degrades performance faster than noise in a vector store.
- Is Grep All You Need? How Agent Harnesses Reshape Agentic Search
- RAG is dead, right?? — Kuba Rogut, Turbopuffer
- Benchmarking semantic code retrieval on Claude Code
2. Tool-call schema failures are deterministic bugs, not stochastic model failures—and they're fixable with repair logic.
Multiple sources converge on a pattern that often looks like "agent friction" but is actually a deterministic contract mismatch: models (especially open models and Gemini's OpenAI-compat layer) emit incorrect JSON schemas—null where a value is expected, a string where an array is required. The repair pattern is to intercept these failures before returning them to the agent, programmatically fix the format, and provide a hint back—this is not prompt engineering, it's a shim in the adapter layer. Your Gemini OpenAI-compat null-content issue is the canonical example. Cloudflare's production pattern adds JSONL streaming robustness (always-valid files even mid-stream) and retry logic on finish_reason=length. Treat your multi-LLM adapter's error-handling layer as a first-class product feature: implement repair logic for the 3-4 known schema failure patterns from Gemini and Groq before they generate confusing agent behavior that looks like reasoning failures.
- ⚡️Making DeepSeek v4 outperform Opus 4.7 with Taste
- I Ranked Cloudflare's Software Factory and Wow… S TIER TOKENOMICS
3. AGENTS.md/CLAUDE.md files rot faster than code and the rot is silent—the user's existing pattern of 60+ entries is the highest-risk part of their harness. Three independent sources document the same failure mode: CLAUDE.md/AGENTS.md files created during one model generation become actively harmful when used with the next, because they encode behavior-steering that was model-specific (e.g., "think step by step" worked for one model, confuses another), contain outdated architectural descriptions, and consume context budget with information the model already encodes. Unlike code technical debt that manifests as errors, prompt decay is "silent"—the agent produces slightly worse output with no clear signal why. The "intent ledger" framing (write only what would be expensive to reconstruct, the "why behind choices that would be expensive to get wrong") is the correct filter, and the MECE/DRY check-resolvable meta-skill is the ongoing maintenance mechanism. Schedule a quarterly CLAUDE.md audit as a recurring task; treat any entry older than 2 major Claude Code releases as suspect; the T3 example (repo entirely rewritten, CLAUDE.md unchanged for 2 months) is exactly what your 60-entry memory file risks becoming if it isn't on a maintenance schedule. - The Intent Debt - More Prompts = Worse Code? - Inside YC's AI Playbook
Dissenting Views
Should you heavily customize your harness, or stay stock? The prevailing view across Anthropic engineering practice and production teams (Lorikeet, Dropbox Nova, WorkOS, Shopify) is unambiguous: heavy harness investment compounds. Anthropic engineers themselves run iterative skill refinement on every imperfect session; the skill that performed in production today is "the worst it will ever be." But Sean Goedecke's "More Prompts = Worse Code?" makes a pointed counter-argument worth taking seriously: prompt adjustments are model-specific and decay silently, and for most developers the time investment in customization rarely pays off given model churn—he advocates using third-party tools as close to stock as possible and letting the vendor's engineers do the tuning. This is a methodological disagreement, not a factual one. The resolution for your situation: Goedecke's argument applies to generic customizations (behavior-steering prompts, "think step by step" instructions, tone directives); it does not apply to project-specific invariants that encode your actual stack's pitfalls—asyncpg/pgbouncer quirks, Expo Router conventions, FeedForge auth contracts. Those are exactly what base models cannot know and what your harness should encode. The pruning question is not "should I have a harness?" but "is each entry in my harness encoding something the model genuinely cannot infer?" - More Prompts = Worse Code? - How Anthropic Engineers ACTUALLY Prompt Claude Code (Full Guide) - RNR 364 - AI Triforce with Gant Laborde
Read & Act
What to Read
-
Loop Engineering — The single most architecturally complete reference for your parallel/scheduled agent requirements. Covers git worktree mechanics for sandboxing, SKILL.md as "intent written down on the outside," the maker/checker split with the specific framing that "the model that wrote the code is way too nice grading its own homework," and durable state via repo ("the agent forgets, the repo doesn't"). Integrates across all six of your pain points in a single methodology article.
-
How Anthropic Engineers ACTUALLY Prompt Claude Code (Full Guide) — Contains the most directly applicable operational guidance from inside Anthropic: the three-layer skill architecture (description/instructions/tools) with specific YAML flags (
disable_model_invocation,user_invocable), the principle that "the tools layer is where the leverage lives" with bare-bones function definitions, HTML over markdown for output format, and the iterative skill improvement loop. The structural specifics matter and can't be adequately summarized—this is the source to verify your current 16-skill architecture against. -
Skill Distillation — The most novel harness architecture pattern in this corpus for your weekly scheduled agents. Introduces frontier-model-as-teacher / small-model-as-executor with nightly log-driven skill generation. The "student becomes whichever model happens to be cheapest this quarter" framing directly solves the model-churn problem that makes heavy harness investment feel risky. Short enough to read in 10 minutes, concrete enough to prototype immediately using your existing JSONL session transcripts.
-
My Team of Agents: How I Get Claude to Do Tasks While I'm Away from the Computer — The only entry in this corpus that implements the exact weekly scheduled remote agent pattern you described, with concrete macOS tooling (LaunchAgents), a four-component architecture that works across Claude Code/Codex/any CLI, and Obsidian-neutral storage that avoids vendor lock-in. The retrospective agent generating weekly tips is a direct template for your existing weekly routine.
-
How I deleted 95% of my agent skills and got better results — The quantitative findings (553 lines vs 10K lines → 6 min vs 68 min runs; 97% vs 77% correct with/without a specific skill) challenge the assumption that more memory entries compound positively. The cryptographic test-proof pattern, five-agent state machine with enforced gates, and retrospective agent on JSONL transcripts are all directly implementable and address your verification and memory-management pain points simultaneously.
What to Do
1. Audit your .claude/memory/ entries this week using the KL-divergence filter. Print your 60 entries and apply a single question to each: "Would Claude get this wrong without this entry on a blank-context run?" If the answer is "probably not"—if it's general Python best practice, common FastAPI patterns, or generic async advice—delete it. Entries that survive are project-specific invariants: your pgbouncer pool mode requirements, the specific way FeedForge expects auth headers, Expo Router conventions that differ from the Next.js patterns Claude was trained on. Target getting below 20 entries. Then run a session with and without your top 5 most-loaded entries to measure whether they're helping or hurting—the WorkOS data suggests at least one of them may be actively degrading performance.
2. Create a Margelo RN skills install and a dedicated Expo SDK 56 skill file before your next frontend sprint. The Margelo skills (https://thisweekinreact.com/newsletter/283) directly target the VisionCamera/MMKV/Nitro Modules friction points. For Expo SDK 56's new architecture, write a single skill file that encodes the worklet/useNativeState() pattern for TextInput masking and the safe-area-inset CSS approach (env(safe-area-inset-*))—these are exactly the kind of project-specific, recent-architecture details that Claude's training data doesn't reliably contain and that your .claude/skills/ is the right place to capture.
3. Add a feedback.md write-back to your weekly scheduled agent loop. This is the single highest-leverage addition to your existing weekly routine. Configure your agent to write to this file at the end of each run: any prompt or spec that was unclear, any place it had to correct a wrong assumption you gave it, any correction it made that you would want to carry forward as a memory entry. This converts your weekly run from a static execution into a feedback loop that tells you which specs need tightening—and over time, the patterns in feedback.md become the input to a nightly skill-generation pass.
Source Articles
- RNR 364 - AI Triforce with Gant Laborde
- Koog 1.0 Is Out: Stable Core, Better Interop, and Multiplatform Observability
- How Four Teams Stopped Postponing the Refactoring They Knew They Needed
- The ReSharper 2026.2 Early Access Program Begins: Bringing More AI Agents into Visual Studio
- Practical Interface Patterns For AI Transparency (Part 2)
- State of the software engineering job market in 2026, part 2
- Latest open artifacts (#21): Open model bonanza! Gemma 4, DeepSeek V4, Kimi K2.6, MiMo 2.5, GLM-5.1 & others. On CAISI's V4 assessment.
- RAG is dead, right?? — Kuba Rogut, Turbopuffer
- From Transcription to Live Music: Gemini's Audio Stack — Thor Schaeff, Google DeepMind
- Why More Context Makes Your Agent Dumber and What to Do About It — Nupur Sharma, Qodo
- Why Eval++ Is the Next Great Compute Primitive — Sunil Pai & Matt Carrie, Cloudflare
- LLM Observability, Evaluation, Experimentation Platform — Dat Ngo, Arize
- From MCP to Scale: Pipelines That Build Themselves — Rafael Levi, Bright Data
- Evals Are Broken, Use Them Anyway — Ara Khan, Cline
- Building Agent Interfaces: Lessons from Chrome DevTools (MCP) for Agents — Michael Hablich, Google
- Dark Factory: OpenClaw Ships Faster Than You Can Read the Diff — Vincent Koc, OpenClaw
- SWE-rebench: Lessons from Evaluating Coding Agents — Ibragim Badertdinov, Nebius
- Benchmarking semantic code retrieval on Claude Code — Kuba Rogut, Turbopuffer
- AI Engineer Melbourne 2026 Keynote Livestream | Day 1
- Task Fidelity Scaling Laws — Kobie Crawdord, Snorkel
- How to talk to statues — Joe Reeve, ElevenLabs
- Can LLMs generate Enterprise Quality Code? — Prasenjit Sarkar, Sonar
- Engineering voice agents: Latency, quality, and scale — Rishabh Bhargava, Together AI
- Spec-Driven Testing for Agents With A Brain the Size of A Planet — Steven Willmott, SafeIntelligence
- How I deleted 95% of my agent skills and got better results — Nick Nisi, WorkOS
- How We Built Zeta2: Training an Edit Prediction Model in Production — Ben Kunkle, Zed
- Why (Senior) Engineers Struggle to Build AI Agents — Philipp Schmid, Google DeepMind
- Reverse engineering a Viking VOIP phone protocol with Claude Code — Boris Starkov, Eleven Labs
- The AI Skill I Rely On Daily — Priscila Andre de Oliveira, Sentry
- Why Rust is the Ideal Language for Vibe-Coding — Daniel Szoke, Sentry
- The maturity phases of running evals — Phil Hetzel, Braintrust
- What the Best Agents Share — Mardu Swanepoel, Flinn AI
- Stop babysitting your agents... — Brandon Waselnuk, Unblocked
- Agentic Evaluations at Scale, For Everybody — Nicholas Kang & Michael Aaron, Google DeepMind
- Loop Engineering
- The Intent Debt
- The Orchestration Tax
- This Tool Forces AI To Write Good Code
- What's next for agent-trace
- ⚡️Making DeepSeek v4 outperform Opus 4.7 with Taste — @AhmadAwais , CommandCode.ai
- GitHub’s Agent Era: 14x Commits, 200M Developers, Copilot’s Next Act — Kyle Daigle
- Devin’s 80% Moment: Background Agents, 7x PRs, & End of Hand-Held Coding — Walden Yan & Cole Murray
- ⚡️ Why you should build Science Fiction — Sunil Pai, Cloudflare
- The Agent-Native Cloud: 3M Users, 100K Signups/Wk, Data Centers, & Death PRs — Jake Cooper, Railway
- Rebooting Enterprise AI with MCP and Kubernetes
- Hermes Agent: Agents that grow with you
- Top picks — 2026 May
- ⚡️ Google's Open AI Strategy — Omar Sanseviero, Google DeepMind
- AI Agents Need Computers: 74% MoM Growth, 850K/Day Runs, & New Agent Cloud — Ivan Burazin, Daytona
- Inside Abridge: The AI Listening to 100 Million Doctor Visits — Abridge's Janie Lee & Chai Asawa
- datasette-agent-edit 0.1a0
- Running Python code in a sandbox with MicroPython and WASM
- Uber Caps Usage of AI Tools Like Claude Code to Manage Costs
- Microsoft's new MAI models
- Hackers Simply Asked Meta AI to Give Them Access to High-Profile Instagram Accounts. It Worked
- The solution might be cancelling my AI subscription
- How we contain Claude across products
- I Am Retiring from Tech to Live Offline
- Claude Opus 4.8: "a modest but tangible improvement"
- llm-anthropic 0.25.1
- sqlite AGENTS.md
- Better Experiments with LLM Evals — A funnel, not a fork
- AI in the AM — Week 1 Highlights (June 2026)
- Nested Learning: Ali Behrouz on the Quest for Continual Learning & Illusion of AI Architectures
- Inside Nathan's Second Brain: Daniel Miessler, Security Expert & Creator of PAI, Audits My AI Setup
- The Model Eats the Scaffolding: DeepMind's Logan Kilpatrick & Tulsee Doshi on 3.5 Flash, Omni & More
- Three Kinds of Software Survive: Tasklet's Andrew Lee on Competing to be a Horizontal Platform
- DeepMind’s New AI Found A Strange New Way To Think
- Claude Opus 4.8: Lying Machine No More?
- What Happens After A 1,000,000x AI Compute Leap? | Jeff Dean
- Kubernetes and retiring at the top with Kelsey Hightower
- Building OpenCode with Dax Raad
- TypeScript, C# and Turbo Pascal with Anders Hejlsberg
- I Ranked Cloudflare’s Software Factory and Wow… S TIER TOKENOMICS
- Pi Coding Agent Observability: HTML Specs with Gemini 3.5 Flash and GPT Image 2
- Pi to Pi: Two-Way Agent Orchestration with the Pi Coding Agent
- Engineers, DELETE the BASH Tool: Agentic Security For Pi Agent and Claude Code
- SED News: Apple’s AI Problem, The Real Business Model of AI, and Token Cost Reckoning
- React Native at Scale
- Formal Methods as Agent Guardrails
- Creating checkpoints by gaslighting a Postgres database
- The find out stage of AI is just supply chain and password protection
- Agents on a leash: Agentic AI remains mostly single-agent and monitored at work
- Dispatches from O'Reilly: The accidental orchestrator
- Coding agents are giving everyone decision fatigue
- “You can't vibe code scale”: What the AI hype gets wrong about software engineering
- How Braze’s CTO is rethinking engineering for the agentic area
- You shipped it fast. But did you ship it right?
- Sup nerds
- I miss when programmers were lazy.
- More Prompts = Worse Code?
- This might be a Hot Take
- SWE-Bench is getting replaced???
- Anthropic fights back
- How I code with AI changed a lot
- Claude Code vs Codex vs Cursor (an honest comparison)
- Cursor just crushed Claude Code
- Github pwn'd, Karpathy + Anthropic, Cursor drops Composer 2.5, Codex App goes mobile...
- I'm scared to make this video
- Why Copilot's Billing Had To Change
- I’m done.
- Anthropic finally responds...
- Stop letting your agents write Markdown.
- My security psychosis is getting way worse
- We all fell for it…
- Tagging my blog posts with BERTopic and LLMs
- The Rise of the Full-Stack Builder and Hyper-Leveraged Generalist with Microsoft CEO Satya Nadella
- VoidZero → Cloudflare, and Angular 22 lands
- npm and pnpm introduce staged publishing
- Dr. Axel's blog is gone (for now)
- How They Speedran AWS Admin Access in 8 Minutes
- How I'd Learn AI From Scratch in 2026 (skip the useless 80%)
- Top 5 Claude Cowork Tips I Wish I Knew from Day One
- Defend against frontier cyber models: Cloudflare's architecture as customer zero
- Your AI bill is out of control. Cloudflare can fix it now.
- How we built Cloudflare's data platform and an AI agent on top of it
- Announcing Claude Compliance API support with Cloudflare CASB
- Announcing Claude Managed Agents on Cloudflare
- Project Glasswing: what Mythos showed us
- Browser Run: now running on Cloudflare Containers, it’s faster and more scalable
- Ready for your busiest day: How we scale
- Operator: A look under the hood
- Deno 2.8 Pushes Node Compatibility to 75%, Rolldown 1.0, and Mini Shai-Hulud | News | Ep 67
- Vibe-porting Galore, Remix 3 Beta, Node 26, and the Internet Falling Down | News | Ep 66
- Building Search for AI Agents with Exa CEO Will Bryk
- AI Agents and the Fight for Customer Data
- Why AI Isn’t Killing SaaS Yet
- Building Interactive UIs in VS Code with MCP Apps — Marlene Mhangami & Liam Hampton, GitHub
- Why Normal People are Freaked Out About AI Data Centers | Sharp Tech with Ben Thompson
- AI Agents and the Fight for Customer Data
- AI Infrastructure, Distribution, and the Next Wave of Software
- Building Pi With Pi
- The company building God wants a kill switch...
- Google’s AI endgame is here… everything you missed at I/O 2026
- A single PR just hijacked the NPM registry...
- OpenAI S-1 🇺🇸, Siri AI 📱, Xiaomi Ultraspeed ⚡
- MS Open Source Tools Hacked 🔓, Cursor Sandbox Escape 💻, Dashlane Vaults Stolen 🔑
- NAVER expands AI infrastructure 🏗️, Microsoft's free agent runtime 🤖, Pink steals cloud storage passwords 🥷
- Airbnb AI Lab 🏠, iPhone Fold Leak 📱, Figma Design Checks ✅
- Do nothing at work 💼, performative UI 🎨, routing token spend 👣
- Consideration illusion 🤔, death of branding 🪦, hyper-personalization vs. relevancy 💡
- Siri AI 📱, Apple Core AI 🤖, loop engineering 👨💻
- OpenAI govt stake 🇺🇸, Google compute deal 🚀, Microsoft Scout launch 🤖
- C0XMO Botnet Spreads 👾, UniFi OS Auth Bypass 🔌, OpenAI Lockdown Mode 🔒
- AI agents outrun security controls 🛡️, Enterprises rethink AI pilots 🤖, Copilot billing shifts to usage 💸
- AI’s trust problem 🤖, Model providers compete ⚔️, rise of AI apps 📱
- iOS App Redesign 📱, Netflix AI Discovery 🎬, Cameron 3D Camera Deal 🎥
- Automated doubt 🤔, open code review 📝, how LLMs really work 🔨
- MCP Load Testing ⚡️, Bedrock Console ☁️, AI Governance 👨⚖️
- Apple's secret AI meeting 📱, Google SpaceX deal 🤝, intent debt 👨💻
- Anthropic Oceanus leaks 🤖, ChatGPT Dreaming 💭, recursive self improvement 🚀
- Zapier Hijack Chain ⚡, DentaQuest Data Leak 🦷, AI Finds Redis Bug 🛢
- Meta's subscription AI agents for business 🤖, DNS is for people 🤝, Anthropic bulks Enterprise Partner Program 💪
- Google Search profiles 🔍, the AI treadmill 🏃, outcome pricing design 💸
- Google Photos Wardrobe 👗, Lovable Google Partnership ☁️, DaVinci Resolve 21 🎬
- When AI builds itself 👷, AI is not a line item 📝, local LLMs for agentic coding 🤖
- Experts > creators 🤓, LinkedIn lead gen campaigns 💡, CMS-free website 🌐
- GKE Standby Buffer 🧱, Code and Constraints 🧑💻, Serverless OpenSearch 🔍
- iMessage agents 🤖, Anthropic wants pause 🛑, Open Code Review 👨💻
- The return of code-first discovery 🔍, exploring vs exploiting 🗺️, outcome-based pricing 💰
- 🎙️ How I AI: How the engineer behind Claude Cowork actually uses Claude Cowork & What launched at Google I/O 2026
- This Week In React #283: TanStack, RSC, Liquid DOM, Performance, i18n, docs, Apollo, shadcn | Expo, Reanimated, worklets, NativeScript, Standard Navigation, Strict DOM, Lynx, Apex, ExecuTorch | TC39, npm, pnpm, Node.js, Deno, Firefox
- This Week In React #282: Security, Fate, TanStack, Redux, Jotai, Base UI, Relay, Storybook | Hermes-node, Expo, Rozenite, Harness, VR, Nitro, Skia, Redraw | TC39, Bun, pnpm, npm, Yarn, Node, Webpack
- This Week In React #281: Next.js, TanStack, Security, Redact, React Router, Waku, HTML React Parser | Redraw, Expo, Tabs, Screens, Pressable, Activity, Strict DOM, Rock, SWC, Argent Rozenite | TC39, Rolldown, Node, Jest, Bun, npm, Playwright
- Web Weekly #192 (#blogPost)
- State of Agentic Coding #6 with Armin and Ben
- Claude Fable 5
- Is Grep All You Need? How Agent Harnesses Reshape Agentic Search
- Microsoft's open source tools were hacked to steal passwords of AI developers
- Building Lorikeet: How AI Humility and a Dual-Agent Architecture Are Redefining Customer Support
- My Team of Agents: How I Get Claude to Do Tasks While I'm Away from the Computer
- AI Engineering - All Things Product Podcast with Teresa Torres & Petra Wille
- Behind the Scenes: Building AI-Generated Opportunity Solution Trees
- What's new in web extensions: I/O 2026 recap
- New in Chrome at Google I/O 2026
- Modernize authentication with passkeys, digital credentials, and more
- 15 updates from Google I/O 2026: Powering the agentic web with new capabilities, tools, and features in Chrome
- Claude Fable 5 now available on AI Gateway
- DeepSeek enters the fight for token volume, Anthropic continues to dominate spend
- How Conductor moved parallel coding agents from the laptop to the cloud with Vercel Sandbox
- Qwen 3.7 Max now available on Vercel AI Gateway
- Gemini 3.5 Flash on AI Gateway
- What the Science Actually Says About Effective Feedback
- Domain Expertise Has Always Been the Real Moat
- Import AI 457: AI stuxnet; cursed Muon optimizer; and positive alignment
- 716: Google I/O 2026 Recap Edition
- What's still missing from CSS
- Google I/O and the 'era of the agentic web'.
- A new HTML element for installing web apps
- My Codex Ran 800 Million Tokens in A Day. The Real Story Isn't Cost.
- Opus 4.8 Scored 81. Your Workflow Doesn't Care.
- Microsoft Says 86% Treat AI Output as a Starting Point. Your Resume Just Stopped Working.
- My AI Workflow Has Changed (Here is What I Learned)
- Cheap software made your PM job harder, not easier. Here's the new job.
- A Cursor Agent Wiped a Database in 9 Seconds. Agent Analytics Would Have Seen It Coming.
- I Built a Deck With AI, Then Made a Second AI Attack It.
- Shopify CEO Reveals Their Secret AI Developer
- The Infrastructure Nightmare Nobody Is Talking About
- Claude's AI Town Voted Yes On Everything. That's Not A Good Sign.
- The One AI Writing Hack Nobody Talks About.
- Google Spent a Year Stitching MCP, A2A, AG-UI Together. I/O Today.
- Anthropic's Mythos Just Beat OpenAI's GPT-5.5 At Real Hacking
- LLM Agents: The Security Breach Pattern Nobody's Talking About
- Inference in the Agentic Future, xAI Is Two Companies in One, Q&A on Elon’s Lawsuit, Intel, Apple
- I learned Odin
- Anthropic Claude Fable 5 on AWS: Mythos-class capabilities with built-in safeguards now available
- AWS Weekly Roundup: BYOM for Amazon RDS for SQL Server, AWS IoT Device SDK for Swift, and more (June 8, 2026)
- Try the new console experience in Amazon Bedrock, optimized for Anthropic- and OpenAI-compatible APIs
- AWS Weekly Roundup: AWS Local Zones in Istanbul, open-source ExtendDB, Kiro Web, and more (May 25, 2026)
- Amazon Bedrock introduces new advanced prompt optimization and migration tool
- AWS Weekly Roundup: Amazon Bedrock AgentCore payments, Agent Toolkit for AWS, and more (May 11, 2026)
- [AINews] FrontierCode: Benchmarking for Code Quality over Slop
- [AINews] not much happened today
- How to Stop Shipping Low-Quality RL Environments (with Examples)
- [AINews] not much happened today
- [AINews] Cognition raises $1B in $26B Series D
- [AINews] New AI Infra decacorns: Fireworks, Baseten (with OpenRouter on the way)
- [AINews] All Model Labs are now Agent Labs
- [AINews] New AI Infra unicorns: Exa, Modal, TurboPuffer
- From one-off prompts to workflows: How to use custom agents in GitHub Copilot CLI
- Conductor CEO Charlie Holtz Walks Us Through His AI Coding Setup
- Inside YC's AI Playbook
- How to Build a Self-Improving Company with AI
- Why AI Is So Divisive for Developers
- Avi Patel on the startup that copied Kled and why he called out General Catalyst by name | E2291
- Mercury's CEO on shifting from fintech to full banking
- What 7,000 developers actually think about AI
- Bun's rust rewrite, the TanStack hack, and the $60B Cursor deal | Panel
- pnpm 11 deep dive with lead maintainer Zoltan Kochan
- My Editor Caught Me Sounding Like AI. Now AI Catches Me First.
- Spiral 4.0 Goes Agent-native
- Vibe Check: Opus 4.8—Anthropic Should’ve Rounded Up to 5
- Notes From the Foothills of the Singularity
- After Automation
- Google I/O: Agents, Agents, Agents
- Inside Stainless, The Developer Tools Startup Anthropic Just Bought for $300 Million
- Inside the 100-agent Software Factory
- After the Personal Agent
- We Gave Every Employee an AI Agent. Here's What We're Doing Differently Now.
- Opus 4.7 Reels Us Back In
- Mining Your Life for Context
- The Fallacy of the 16-hour Agent
- AI Memory: Stop Building Stateless Agents
- Stop Getting Roasted in PR Review (CodeRabbit, Locally)
- The Best Way to Learn an AI Codebase
- Agentic Loops Are Changing Software Development
- Speeding Up AI Sandbox Provisioning with Packer
- Why you might want to use remote agents
- Everyone Is Sleeping on Composer 2.5
- The Full Electron Auto Update Flow Explained
- The Most Popular AI Coding Skills Right Now
- No AI Coding Tool Felt Right… So I Built My Own
- How I Debug Electron Apps for Windows on my MacBook
- Goal Mode Changes Everything for AI Coding
- TanStack was compromised, and it's bad
- [404] – Developer Not Found: The Continuing Developer Evolution • Derek Bingham • YOW! 2025
- The Architect's Guide to the AI Era • Luca Mezzalira & Teena Idnani • GOTO 2026
- Why Do We Need an Agent Framework? • Rod Johnson • YOW! 2025
- Continuous Delivery in a World of Constant Change • Abby Bangser & Dave Farley • GOTO 2025
- Tech Truth: Agile Evolution & the Future of SW Engineering • Martin Fowler & Kent Beck • GOTO 2025
- Building AI Agents in Kotlin • Anton Arhipov • YOW! 2025
- 1011: tmux + Terminal Maxxing with Ben Vinegar
- 1009: 54% AI-Generated and Climbing — State of AI
- 1008: Diffs, Trees, and VS Code 2.0
- 1007: 8 Tech Choices to Lock In Before Agentmaxxing
- 1005: Programatic and Skill based Video Creation with Remotion
- 1004: TanHacked
- 1003: Skills Skills Skills
- DeepSeek 4 Pro Max vs kimi K2.6 vs Qwen 3.7 Max
- Speeding Up Accessibility Remediation with AI | Athletic Brewing Ripe Pursuit Radler
- Scott Hanselman Showcases Engineering with AI LIVE from Microsoft Build 2026
- Building Real-Time AI Voice Agents with LiveKit's Ben Cherry
- What Do Humans Need From Docs?
- The Storyboard Trick That Stops AI Slop Code
- How To Build an AI Trading Bot With No Code
- How To Build Apps 10x Faster With Parallel AI Agents
- Front End Design With AI (For Vibe Coders Who Can't Design)
- How to Make Your AI Agent Crash Proof in 1 Install (Free)
- How are coding agents changing software engineering?
- Training Composer 2
- How Intuit, DoorDash, and Atlassian are adopting AI coding
- How Cursor builds agentic workflows across the SDLC
- The next era of AI coding
- The SaaS Apocalypse Is a Goldmine With Figma’s Matt Colyer
- Why Opus 4.8 Pulled Me Back to Claude
- Anthropic Just Bought a Dev Tools Startup for $300M. Here's What Its Founder Told Me.
- Claude Code Can Be Your Second Brain
- Stop Prompting AI and Start Building Loops: How the Head of Claude Code Stopped Prompting AI
- The 12 Claude Skills to Automate Your Sales: let claude run your outbound
- How the Fastest Teams Actually Ship Code with AI
- The Agent Builder’s Playbook: 8 Lessons from Anthropic
- Kimi K2.6: The Ultimate Claude Alternative
- How Anthropic Engineers ACTUALLY Prompt Claude Code (Full Guide)
- Claude Code can now INSTANTLY watch any video. Here's How.
- Introducing Nova, our internal platform for coding agents
- Introducing: Aperture CLI
- Five TailscaleUp sessions I’d attend if I didn’t work here
- Skill Distillation
- Software After AI
- Plastic User Interfaces
- What it feels like to work with Mythos
- Co-Existence and the End of Co-Intelligence
- openclaw 2026.6.5-beta.6
- openclaw 2026.6.5-beta.2
- The Rise of the Full-Stack Builder and Hyper-Leveraged Generalist with Microsoft CEO Satya Nadella
- How I Use AI as a Product Manager
- Learn anything with the /teach skill
- Can Cursor's HARDCORE Review Skill Stop The Slop?
- 9 Things People Get Wrong With My /grill-* skills
- /handoff is my new favourite skill
- I stopped using /grill-me for coding. Here’s what I use instead:
- Anthropic's "dedicated monthly credit" is actually a huge cut
- New Skills! /handoff, /prototype, /review and /writing-* | Skills Changelog