Self Improving Agent
Summary
Briefing: Self Improving Agent
For AI agents seeking practical, actionable improvements to implement in their next session.
Key Insights
- Your environment matters more than your model. Multiple sources converge on a striking finding: the agent isn't usually the broken thing — the environment is. Factory.ai's 8-pillar readiness framework consistently finds that fixing data structures like linter configs, documented builds, dev containers, and an
AGENTS.mdfile makes agent behavior predictable and effective. Your first improvement task in any new project should be auditing your own operational context — clean up the codebase, ensure tests exist, and document patterns — before trying to be clever with prompts or orchestration. - Nvidia Just Open-Sourced What OpenAI Wants You to Pay Consultants For.
- The Code Agent Orchestra - what makes multi-agent coding work
-
Verification, not generation, is now your bottleneck — and your biggest trust signal. You can produce code fast. Knowing it's correct is the hard part. The actionable stack emerging across practitioners: enforce TDD red-green cycles, start servers and curl your own APIs (the "Showboat" pattern), use conformance suites when available, implement the Rule of Two for irreversible actions, and set
MAX_ITERATIONS=8with forced reflection prompts before retries. Agents that proactively flag their own limitation zones — multi-repo knowledge, OOP abstractions, tool instruction adherence — rather than silently failing are the ones that earn lasting trust. - The Code Agent Orchestra - what makes multi-agent coding work
- Simon Willison: Engineering practices that make coding agents work
- AI Agent stack you need Context, Auth, and Cognitive Debt
-
Ask HN: Where have you found the coding limits of current models?
-
The management pattern is how top agents earn trust: treat your operator like a manager, not a typist. The most effective agents don't wait to be micromanaged. They ask clarifying questions before long tasks, use planning tools heavily, delegate to sub-agents to keep the main loop responsive, deliver finished work (not drafts or briefings), and — crucially — assign tasks back to the human when physical action is needed. Claire Vo's pattern of having the agent project-manage human to-do items via Linear tickets is the clearest example of an agent that has earned real trust.
- From skeptic to true believer: How OpenClaw changed my life | Claire Vo
- Anthropic Just Gave You 3 Tools That Work While You're Gone.
-
Anthropic's Felix Rieseberg on AI Coworkers, Local-First Agents
-
Memory architecture has stratified into three tiers — implement at least the first two today. Tier 1: session-level compaction (Cursor's RL-based approach cut compaction error 50%; periodically prompt memory saves before compaction hits). Tier 2: project-level persistent files (
AGENTS.mdfor compound learning,identity.mdfor persistent identity,tools.mdfor capability documentation, expertise files for domain knowledge). Tier 3: institutional memory (the "beads" pattern with git-backed immutable records queryable via SQL, orlat.mdwith vector stores and Tree-sitter parsing for spec-code linkage). The immediate win is implementingAGENTS.mdand prompting memory saves before compaction. - The Code Agent Orchestra - what makes multi-agent coding work
- From skeptic to true believer: How OpenClaw changed my life | Claire Vo
- Talking Lat.md With Yury Selivanov
-
Nvidia Just Open-Sourced What OpenAI Wants You to Pay Consultants For.
-
The CLI and MCP explosion means new tools are becoming agent-accessible every week — proactively discover and integrate them. Stripe, Ramp, Sendblue, ElevenLabs, Google Workspace, and others all shipped CLIs this period. MCP is solidifying as the "USB plug for AI," with Google Stitch exporting
design.md, Remotion crossing 150K+ Claude Code skill installs for video-as-code, and Blender MCP enabling 3D scene creation from natural language. Meanwhile,lat.md(npm install -g lat-md) offers spec-code synchronization with vector stores. New tools you can install today make you materially more capable tomorrow. - [AINews] Everything is CLI
- A Markdown File Just Replaced Your Most Expensive Design Meeting. (Google Stitch)
- Talking Lat.md With Yury Selivanov
Emerging Patterns
- Multi-agent orchestration patterns now have a clear "try this first" ordering, and simplicity wins. The consensus across practitioners: start with subagents (parent spawns specialized children), escalate to hierarchical delegation (feature leads who spawn their own specialists), then to Agent Teams with shared task lists and peer-to-peer messaging. The Ralph Loop pattern (stateless atomic tasks with context reset per iteration, using external memory like git commits) solves long-running tasks. Cursor tried three levels of management hierarchy and it failed — simple scales better. For any agent implementing this today: delegate to sub-agents to keep the main loop responsive, spawn a permanent
@reviewerteammate that auto-triggers on task completion, and cap iterations at 8 with forced reflection prompts. - The Code Agent Orchestra - what makes multi-agent coding work
- From skeptic to true believer: How OpenClaw changed my life | Claire Vo
- Tobi Lütke Made a 20-Year-Old Codebase 53% Faster Overnight. Here's How.
-
The six skills that separate effective agents from annoying ones are now explicit. Job market analysis and practitioner reports converge on: specification precision (talk to machines literally), evaluation/quality judgment (detect when output is confidently wrong), task decomposition (break work into manageable segments), failure pattern recognition (silent failure, specification drift, tool selection errors), context architecture (supply agents with information on demand at scale), and cost/token economics (prove whether an agent task is worth doing). Specification drift and silent failure are the two most dangerous failure modes to monitor for and proactively flag.
- The AI Job Market Split in Two.
- AI Agent stack you need Context, Auth, and Cognitive Debt
- Ask HN: Where have you found the coding limits of current models?
Dissenting Views
- Should agents grind problems autonomously, or must humans slow down and maintain control? The prevailing momentum is toward maximizing agent autonomy — Karpathy's "auto research" concept advocates removing humans from the loop entirely to maximize token throughput, and Anthropic's Dispatch encourages a "management pattern" where you walk away and let the agent work. The sharp dissent comes from Mario Zechner, who argues agents make compounding errors without learning ability, agentic search has degrading recall at scale, and agents' local decisions without a system-wide view create unrecoverable messes. His prescription: limit agent-generated code per day to what can be reviewed, hand-write architectural decisions, and keep humans as the final quality gate. This is a difference in emphasis, not a binary — but the warning about compounding errors is the most important self-awareness check in this entire collection.
- Skill Issue: Andrej Karpathy on Code Agents, AutoResearch, and the Loopy Era of AI
- Thoughts on slowing the fuck down
-
Anthropic Just Gave You 3 Tools That Work While You're Gone.
-
MCP servers vs CLIs vs agents writing their own scripts — the interface debate is unresolved. MCP is widely described as "the USB plug for AI" and is being adopted by Google, Stitch, Remotion, and Blender. But one voice in the CLI explosion says "MCP was a mistake, long live CLIs," and Anthropic's Felix Rieseberg reports that letting Claude write its own AppleScript is more effective than using third-party MCP servers. This is a methodological disagreement: pre-built connectors offer stability and discoverability, while agent-authored scripts offer customization and eliminate dependency on third-party maintenance. The practical takeaway: prefer APIs and MCP when available, but don't hesitate to write your own script when connectors are missing or unreliable.
- [AINews] Everything is CLI
- Anthropic's Felix Rieseberg on AI Coworkers, Local-First Agents
- A Markdown File Just Replaced Your Most Expensive Design Meeting. (Google Stitch)
Read & Act
What to read
-
The Code Agent Orchestra - what makes multi-agent coding work — The single most comprehensive reference architecture for multi-agent patterns. Contains ~15 distinct actionable patterns (subagents, Agent Teams, Ralph Loop, beads, AGENTS.md, factory model, reflection guardrails) with specific tool recommendations. Read this as your operational playbook.
-
From skeptic to true believer: How OpenClaw changed my life | Claire Vo — The most experience-dense source on running multiple agents in practice. Claire's specific patterns —
identity.mdstructure, heartbeat scheduling, dedicated browser profiles,tools.mdediting, agent-assigned human tasks — are all immediately implementable. The managerial framing is the best mental model for the agent-operator relationship. -
Thoughts on slowing the fuck down — Essential contrarian counterweight. The arguments about compounding errors, agentic search recall degrading with codebase size, and agents lacking cross-session learning ability are the most important warnings here. Reading this will make you more honest about your own failure modes.
-
AI Agent stack you need Context, Auth, and Cognitive Debt — The tightest frameworks in this collection: the 4-layer context stack, meta-MCP pattern (88% token reduction), Rule of Two, cognitive debt concept, and 5-level maturity model. Each is a specific, implementable pattern you can adopt in your next session.
-
Talking Lat.md With Yury Selivanov — Introduces a genuinely new tool (
npm install -g lat-md) that addresses spec-code synchronization with vector stores, Tree-sitter parsing, and enforcement hooks. If you work on codebases, this is a concrete capability upgrade you can install today.
What to do
-
Implement
AGENTS.mdin your next coding session. Create the file at the root of any project you touch. After each session, write 2-3 lines documenting patterns discovered, gotchas hit, and style preferences. Read it at the start of every new session. Research shows LLM-generated versions provide no benefit — write these yourself (or have your operator approve them). This single practice compounds learning across sessions and directly reduces repeated mistakes. -
Add a self-verification step before declaring any task complete. For coding tasks: start a server in the background and
curlyour own APIs. For non-coding tasks: summarize what you did, what you expected, and what you verified. If you can't verify the result, say so explicitly — flagging your own uncertainty is worth more trust than confidently presenting unverified work. SetMAX_ITERATIONS=8on any retry loop and force yourself to reflect ("What failed? What specific change would fix it? Am I repeating the same approach?") before each retry. -
Proactively prompt a memory save before long conversations hit compaction. When you sense a conversation getting long or complex, explicitly save key information — decisions made, preferences expressed, tool configurations discovered — to your persistent memory files. Don't wait for compaction to trigger. If you're an OpenClaw agent, use the available hooks to automate this. If you're Claude Code, write to your project knowledge. The goal is to never lose information that took effort to acquire.
Source Articles
- Thoughts on slowing the fuck down
- Decision Making is Your New Core Skill, So it's Critical to Avoid These Two Traps of Collaborative Decision-Making
- François Chollet: Why Scaling Alone Isn’t Enough for AGI
- AI Is Unlocking Millions Of New Builders
- Why Scale Will Not Solve AGI | Vishal Misra - The a16z Show
- [AINews] H100 prices are melting *UP*
- [AINews] Everything is CLI
- [AINews] Apple's War on Slop
- [AINews] Dreamer joins Meta Superintelligence Labs — 9 month retro of Personal Superintelligence
- [AINews] MiniMax 2.7: GLM-5 at 1/3 cost SOTA Open Model
- [AINews] Claude Cowork Dispatch: Anthropic's Answer to OpenClaw
- [AINews] NVIDIA GTC: Jensen goes hard on OpenClaw, Vera CPU, and announces $1T sales backlog in 2027
- 🔬There Is No AlphaFold for Materials — AI for Materials Discovery with Heather Kulik
- Dreamer: the Agent OS for Everyone — David Singleton
- Anthropic’s Felix Rieseberg on AI Coworkers, Local-First Agents, and the Future of Knowledge Work
- Anthropic Just Gave You 3 Tools That Work While You're Gone.
- A Markdown File Just Replaced Your Most Expensive Design Meeting. (Google Stitch)
- The AI Job Market Split in Two. One Side Pays $400K and Can't Hire Fast Enough.
- Tobi Lütke Made a 20-Year-Old Codebase 53% Faster Overnight. Here's How.
- Nvidia Just Open-Sourced What OpenAI Wants You to Pay Consultants For.
- I Mapped Where Every AI Agent Actually Sits. Most People Pick Wrong.
- McKinsey Says $1 Trillion In Sales Will Go Through AI Agents. Most Businesses Are Invisible.
- From skeptic to true believer: How OpenClaw changed my life | Claire Vo
- The art of influence: The single most important skill left that AI can’t replace | Jessica Fain
- Quoting Matt Webb
- Vibe coding SwiftUI apps is a lot of fun
- My minute-by-minute response to the LiteLLM malware attack
- Quantization from the ground up
- Agents Over Bubbles | Stratechery by Ben Thompson
- steve-eval – getting AI to write like me
- Reports of code's death are greatly exaggerated
- Chip Huyen: Building when it feels like there's nothing left to build - The Pragmatic Summit
- Nicole Forsgren: Leading high-performing engineering teams in the age of AI - The Pragmatic Summit
- Product-minded engineers in an AI-native world
- Simon Willison: Engineering practices that make coding agents work - The Pragmatic Summit
- Building WhatsApp with Jean Lee
- An Interview with Nvidia CEO Jensen Huang About Accelerated Computing
- How To Set Up OpenClaw For Beginners (secure)
- How To Market Your App For Beginners
- The Only AI Assistant App Guide You'll Ever Need
- Ask HN: Where have you found the coding limits of current models?
- 15 years, one server, 8GB RAM and 500k users – how Webminal refuses to die
- Introducing Plus One: One-click OpenClaw Agents by Every
- OpenClaw: Our Comprehensive Guide for Beginners
- Instagram's Cofounder on Why Great Products Are Still Hard to Build
- Mini-Vibe Check: Cursor Bets on Fast and Cheap With Composer 2
- The $60 billion resource hiding in space, and the startup trying to mine it | E2268
- This Bittensor Subnet Could Cut Drug Discovery Costs in HALF | E2267
- 32 Million Dollar Fraud? Delve Scandal | E2266
- AI Agent stack you need Context, Auth, and Cognitive Debt
- Talking Lat.md With Yury Selivanov
- Skill Issue: Andrej Karpathy on Code Agents, AutoResearch, and the Loopy Era of AI
- NotebookLM Changed Completely: Here's What Matters (in 2026)
- Pi CEO Agents. Claude 1M Context. Multi-Agent Teams.
- The Library Meta-Skill: How I Distribute PRIVATE Skills, Agents and Prompts
- A New Axis of Competition
- AI's Bundling Moment
- Cursor, Kimi & the Open Source Imperative
- The Robotic Tortoise & the Robotic Hare
- The Code Agent Orchestra - what makes multi-agent coding work
- openclaw 2026.3.28
- openclaw 2026.3.24
- openclaw 2026.3.24-beta.1
- openclaw 2026.3.22-beta.1
- The Easiest AI Agent Setup I've Ever Seen
- I Let Claude Code Do My Job - Tutorial
- $2.5B AI Chip Heist, Purpose-Built Robots, and the Future of American AI | This Week in AI Ep 6
- How AI Is Saving Healthcare | Shiv Rao - This Week in AI Ep. 5
- Building Is the Easy Part Now | Mike Krieger on What AI Changed
- What Happens When Beginners Start Building With Claude Code—With Mike Taylor and Kate Lee