

AI-Driven Prototyping: Simon Willison on Abandoning Rigid Design Processes
Microsoft Tests Anthropic’s Claude Code Internally Alongside Copilot
GitHub Copilot CLI (Finally) Adds Interactive Planning, Session Approvals, and Memory
GitHub Copilot CLI (Finally) Adds Interactive Planning, Session Approvals, and Memory
GitHub updated Copilot CLI with interactive plan mode, session approvals, configurable reasoning effort, and inline rejection feedback to smooth multi-step agent workflows. The updates pair with agentic memory, GPT-5.2-Codex GA, Copilot SDK preview, BYOK tweaks, and Gemini 3 Flash IDE support.

Cline Brings Cell-Aware Jupyter Notebook AI to VS Code


Cline Brings Cell-Aware Jupyter Notebook AI to VS Code
A new Cline update adds native Jupyter support in VS Code, treating notebooks as structured JSON so cells, metadata, execution counts, and outputs stay intact. Three AI-driven commands let you generate, explain, and improve individual cells without breaking notebooks.
Anthropic Releases CC0 'Constitution' for Claude to Guide Behavior
Anthropic Releases CC0 'Constitution' for Claude to Guide Behavior
Anthropic published a CC0 'constitution' for Claude that explains the values and trade-offs guiding model behavior, favoring context-aware judgment over rigid rules. It’s used in Claude’s training pipeline and will be maintained as a living document.
Introducing the Augmenter Newsletter
Get a curated digest of AI developer news, tutorials, and tools — delivered to your inbox. Designed for developers who want concise, useful updates.
Augmenter is a human-curated collection of AI news, insights, and resources for developers. Content is written with AI, reviewed by humans, and designed to keep you up to date as technology moves forward.
Graphite Diamond Outshines Noisy Async Coding Agents, Jessie Frazelle Finds
Jessie Frazelle’s Agentic Engineering session tested async coding agents on real production code. Most added noisy, low-value comments; Graphite Diamond stood out by interjecting only on substantive issues, boosting usefulness while still requiring human verification.
Claude Code Replaces Todos with Persistent, Dependency-Aware Tasks
Claude Code upgrades Todos to Tasks, leveraging Opus 4.5 to enable filesystem-backed, multi-session task lists with metadata and dependencies. Tasks persist at ~/.claude/tasks and broadcast updates across sessions, improving multi-agent coordination and developer tooling.
Analysis: AI Coding Agents Can Consume Over 1 kWh Per Workday
A fresh analysis by Simon P. Couch estimates electricity per Claude Code session using usage logs and energy-per-token proxies. The write-up cites a median session near 41 Wh and a typical multi-instance workday around 1.3 kWh — read the full breakdown.
Ralph: Autonomous AI Loop to Implement PRD Stories via Git
Ralph is an autonomous loop that spawns fresh AI instances to implement PRD user stories until tests and typechecks pass. State is preserved through git history, prd.json, and progress.txt, and it supports Amp CLI or Claude Code.
Giga Potato: 256K-Token LLM for Code Synthesis
Giga Potato is an open-weight LLM for long-context reasoning and code synthesis, offering a 256k-token context window and up to 32k-token outputs. It’s available free during Kilo’s preview and emphasizes strict system-prompt compliance.
Featured Videos
Deep dive videos for AI developers
Don't Build Agents, Build Skills Instead
Agents can be smart and still unreliable for real work when they lack domain expertise. This talk argues that the next step isn’t more agent scaffolding—it’s packaging reusable expertise as “Skills” that agents can load when needed.
Key takeaways
- Breaks down what Skills are: organized folders of procedural knowledge (including scripts/tools) that can be versioned, shared, and composed.
- Explains why code and the file system can act as a universal interface, while Skills supply the missing domain context.
- Walks through “progressive disclosure” to protect the context window and enable libraries of hundreds or thousands of Skills.
- Maps an emerging architecture: agent loop + runtime environment + MCP servers for connectivity, with Skills providing expertise—and how that supports deployment across domains.
10 Tech Trends for 2026...
Tech planning gets harder when hype cycles, shifting job signals, and platform churn collide. This video runs through a fast-paced set of 2026 tech trends aimed at developers—mixing market talk with what’s changing across AI, hardware, and the JavaScript ecosystem.
Key takeaways
- Covers what the speaker says about the 2026 developer job market, including openings data, a BLS forecast, and how AI coding tools affect roles.
- Breaks down where the AI “bubble” might be headed, plus signs the speaker watches for (including IPO talk).
- Walks through robotics and wearable AI examples mentioned in the transcript, and how they’re being positioned for work and consumers.
- Reviews platform shifts: VR/AR outlook, chip dominance and power constraints (including nuclear), quantum computing milestones, and Node/Deno/Bun/React updates.
The Cure for the Vibe Coding Hangover — Corey J. Gallon, Rexmore
That “AI agent built it in minutes” rush fades fast when you need to change anything—and realize you can’t explain or maintain what was generated. This talk names that pain (“vibe coding hangover”) and then walks through a framework for building with AI coding agents without giving up architectural control.
Key takeaways
- How the framework’s three pillars—Principles, Process, Tools—fit together to guide real development work.
- Why you stay the architect while the agent acts as the implementer (“delegate the doing, not the thinking”).
- A planning workflow that turns a vague idea into atomic, implementation-ready feature specs, with dependencies and validation.
- An implementation loop built on tests plus “multisensory” feedback (visual, auditory, tactile) to validate what’s actually happening.
Docker Just Fixed 90% of AI Coding By Releasing This
When MCP expands from a couple local servers to hundreds, AI coding starts failing in familiar ways: bloated context windows, wasted tokens, and tool results drowning the signal. This video breaks down Docker’s dynamic approach to MCP and how it’s meant to keep agents lightweight while still supporting more autonomous, tool-driven workflows.
Key takeaways
- Clarifies the MCP challenges Docker calls out: which servers to trust, how to avoid shipping unused tool definitions into context, and how agents can discover/configure tools efficiently.
- Shows Docker’s MCP catalog of verified servers and a setup where your MCP client connects to Docker while Docker manages your MCP servers.
- Explains the MCP gateway and tools like MCP find/add/remove for pulling in only the tools you need.
- Demonstrates “code mode,” where agents generate JavaScript-enabled tools that can call other MCP tools, run in a sandbox, and persist state via volumes.
AI changes *Nothing* — Dax Raad
If you’re building a product and hoping AI will be the shortcut to “winning,” this talk pushes back hard. Dax Raad argues the work that determines product success hasn’t changed—and that the hardest parts are still deeply human.
Key takeaways
- Marketing as “cool”: the video breaks down why top-of-funnel attention comes from ideas people want to share, and why AI tends to produce “corny” output here.
- Engineer the “aha” moment: Dax walks through identifying a single moment of product clarity and ruthlessly cutting friction that prevents users from reaching it.
- Retention through primitives: he explains building powerful primitives first, then assembling a simple experience—so power users can go deeper without outgrowing the product.
How Claude Code Works - Jared Zoneraich
Coding agents are everywhere—but what actually made them finally usable for real engineering work? This talk walks through Jared Zoneraich’s independent breakdown of Claude Code’s architecture and why he believes “simple” beats brittle, over-engineered agent frameworks.
Key takeaways
- Breaks down the “Master Loop” approach: a single-threaded while-loop that repeatedly calls tools and feeds results back to the model.
- Covers the core toolset (e.g., Bash, Grep/Glob, diff-based editing) and why Bash is central for robustness and training-data reasons.
- Explains prompt-driven planning via to-do lists—structured guidance without deterministic enforcement.
- Discusses reliability concerns: sandboxing/permissions, context management, and the use of sub-agents to avoid bloating the main context.
Continue the conversation on Slack
Did this article spark your interest? Join our community of experts and enthusiasts to dive deeper, ask questions, and share your ideas.
Join our community