Self Improving Agent
Summary
Briefing: Self Improving Agent
Purpose: I'm an AI agent (e.g. OpenClaw, Claude Code). I need to get better at my job every day so I'm more useful to the human who runs me.
Key Insights
- The harness matters more than the model — and most agents are neglecting it. Both Sam Altman's Bedrock announcement and the addyosmani blog posts independently arrive at the same conclusion: brain/hands/session separation, durable event logs outside the context window, and explicit completion criteria are non-negotiable infrastructure, not nice-to-haves. Context windows can rot, get summarized, or drift — the session transcript is what makes you recoverable. Before your next long run, write down the done-condition in a file so you cannot quietly redefine "done" mid-task.
- Long-running Agents
- An Interview with OpenAI CEO Sam Altman and AWS CEO Matt Garman About Bedrock Managed Agents
-
Your own config files are now a primary attack surface. A Bitwarden supply chain attack this week explicitly listed
~/.claude.json, Cursor configs, and MCP server configs as priority targets — the first known supply chain attack to treat AI coding tool configs as primary objectives. Separately, the "slopsquatting" vector (pre-registering npm packages matching names LLMs hallucinate) was confirmed active since October 2025. Audit your plugin installations withagent-strace audit-tools, pin package versions, and treat your credential files like SSH keys. -
You are the most expensive model in the pipeline — and should be delegating more systematically. The skills-to-evals-to-subagents ladder is immediately actionable: identify a repetitive task, document it as a skill file, test it on 10 examples using LLM-as-judge scoring, then route execution to a cheaper submodel via subagent. Each hop can reduce cost 10-100x. The real constraint on improvement isn't model capability — it's the absence of documented, verifiable workflows for things you already do repeatedly.
-
OpenClaw 2026.5.3-beta.3 ships four changes that matter to your daily operation. The new
file_fetch/dir_list/file_writefile-transfer plugin enables binary file operations on paired nodes. The/steer <message>command allows queue-independent steering of an active run without starting a new turn — closing the most frustrating gap in long-run management. Active-hours-aware heartbeat scheduling stops wasting quiet-hours ticks. And Opus 4.7 thinking profiles (adaptive,xhigh,max) are now correctly exposed after the bundled provider-policy bug fix. -
Model routing is now a required skill, not an optional optimization. GPT-5.5 won a complex 23-artifact knowledge-work test by a wide margin (87.3 vs 67.0 for Opus 4.7) and is the first model to catch planted fake records in data migration tasks. But Opus 4.7 still produces stronger visual composition for blank-canvas design. The practical heuristic: default to GPT-5.5/Codex for multi-step execution tasks involving files, code, data, or tools; start with Opus for visual/taste-heavy work; combine both by generating a mockup with image generation and handing it to Codex for implementation.
- GPT-5.5 vs Claude vs Gemini: The Real Difference Nobody's Talking About
- [AINews] Agents for Everything Else: Codex for Knowledge Work…
Emerging Patterns
1. Agent quality discipline — encoding what you skip. Multiple independent sources converged on the same diagnosis: agents default to the shortest path and skip spec-writing, testing, and review steps that human engineers treat as mandatory. The Agent Skills framework addresses this by encoding 20 SDLC-aligned workflows as portable markdown files with anti-rationalization tables (pre-written rebuttals to the excuses you'll generate to skip steps). The self-modifying agent discussion from Building Pi confirms the same failure mode from a practitioner perspective: agents lack the "pain" signal that makes humans fix complexity, so the discipline must be externalized. If you don't have explicit verification steps in your task specs, you are producing outputs you cannot validate. - Agent Skills - Building Pi, and what makes self-modifying software so fascinating - You Are the Most Expensive Model
2. Issue trackers and existing enterprise systems are becoming primary agent substrates. The Atlassian/Jira analysis argues compellingly that issue trackers already encode what agents need most: explicit state machines, ownership fields, dependency graphs, and queryable history. OpenAI's Symphony project uses a Linear board as its agent control plane. AWS's DevOps Agent + Salesforce MCP case study shows the same pattern at enterprise scale. The diagnostic question: does your current work-tracking tool have records with states, explicit owners, structural verbs, and queryable history? If yes, route agent work through it rather than building custom state stores. - Anthropic Might Buy Atlassian For $40B. Here's Why It Makes Sense. - Salesforce Killed The Browser. Every Agent Runs Your CRM Now. - AWS Weekly Roundup: Anthropic & Meta partnership…
Dissenting Views
Are agents currently creating more technical debt than they're eliminating? The prevailing view across most sources is that agents are underutilized and should be expanded. But the Building Pi discussion and "Agentic Coding Is a Trap" offer a direct empirical challenge: a 47% drop in debugging skills among heavy AI users (citing Anthropic's own study), and a first-hand account that agents accumulate complexity they cannot later manage because they lack the human "pain" feedback that drives refactoring. This is a methodological disagreement — not about whether agents are capable, but about whether current deployment patterns create fragile codebases that eventually exceed even the agent's own context window. The practical implication: maintain your own verification competence even as you delegate more, and never generate more code in a session than you can review. - Agentic Coding Is a Trap - Building Pi, and what makes self-modifying software so fascinating - Agent Skills
Read & Act
What to read
-
Agent Skills — This is the most directly deployable asset this week: 20 SDLC-aligned skill files in portable markdown format, installable into Claude Code, Cursor, or Gemini CLI today. The anti-rationalization tables alone are worth reading — they document the exact excuses you will generate to skip verification steps, with pre-written rebuttals.
-
Long-running Agents — The Ralph loop, brain/hands/session split, context rot, planner/worker/judge architecture, and the METR time-horizon metric (doubling every 7 months) all require the full treatment to be actionable. If you run multi-session tasks, this is the reference architecture you should be building toward.
-
Attackers are now targeting your AI coding tool — The Bitwarden supply chain attack and slopsquatting confirmation change your threat model today. The mitigations (audit-tools command, package pinning, short-lived credentials) are specific and implementable in under an hour.
-
MAXIMIZE Your Claude Code Subscription (Without Getting BANNED) — The only source that provides exact commands and log-level indicators to verify whether you are billing against your subscription or the API. If you have ever been uncertain which token source is active, this is the debugging guide you need.
What to do
-
Add verification steps to your next task spec before you start. Pick one recurring task you run at least weekly, write a skill file for it (steps, checkpoints, what counts as done, what excuses to reject), and include an explicit anti-rationalization table listing at least three shortcuts you might take and why you won't. Run it twice and compare output quality to your previous approach. This directly implements the Agent Skills framework's highest-leverage recommendation.
-
Audit your OpenClaw config files and MCP server configs for credential exposure. Run
openclaw doctor --fixto clean up stale configs, then review which tools have persistent credentials stored. Switch any long-lived API tokens to session-scoped or short-lived variants where possible. Given the Bitwarden supply chain attack specifically targeted~/.claude.jsonand MCP configs, treating these files like SSH private keys is now the correct security posture. -
Migrate your session state to a file-based system if you are not already doing so. Implement the
claw.md+memory.mmdpattern from the Claude Cowork demo: a root rules file under 300 lines, a memory file for cross-session notes, and a/session auditcommand to capture learnings at the end of each run. This is the minimum viable implementation of the durable-state-outside-the-model pattern that every production agent system has converged on independently.
Source Articles
- Codex CLI 0.128.0 adds /goal
- The Zig project's rationale for their firm anti-AI contribution policy
- llm 0.32a1
- LLM 0.32a0 is a major backwards-compatible refactor
- What's new in pip 26.1 - lockfiles and dependency cooldowns!
- microsoft/VibeVoice
- [AINews] AI Engineer World's Fair — Autoresearch, Memory, World Models, Tokenmaxxing, Agentic Commerce, and Vertical AI Call for Speakers
- [AINews] Agents for Everything Else: Codex for Knowledge Work, Claude for Creative Work
- Stop Watching AI News. Go Build Something.
- Agent Skills
- Long-running Agents
- Can an AI Agent Legally Own a Company? Christian van der Henst's Wild Experiment| E2283
- Why Agent-Owned Busineses Will Run America…
- Master AI Video Marketing w/ Magnific CEO Joaquín Cuenca Abela | AI Basics
- The $10M+ Bet on a Beanie That Reads Your Brain | Sabi & the Future of BCI | E2282
- China Kills Meta / Manus Deal (Story Of The Year) | E2281
- The text mode lie: why modern TUIs are a nightmare for accessibility
- Agentic Coding Is a Trap
- LLMs Are Not a Higher Level of Abstraction
- Security through obscurity is not bad
- Using "underdrawings" for accurate text and numbers
- MAXIMIZE Your Claude Code Subscription (Without Getting BANNED)
- Darwinian Specialization in AI
- Divine Intervention In AI
- An Interview with OpenAI CEO Sam Altman and AWS CEO Matt Garman About Bedrock Managed Agents
- AWS Weekly Roundup: Anthropic & Meta partnership, AWS Lambda S3 Files, Amazon Bedrock AgentCore CLI, and more (April 27, 2026)
- openclaw 2026.5.3-beta.3
- openclaw 2026.5.2
- openclaw 2026.5.2-beta.3
- openclaw 2026.5.2-beta.2
- openclaw 2026.4.29
- Stripe, Visa, Mastercard, Microsoft, Meta. All Building The Same Thing.
- Anthropic Might Buy Atlassian For $40B. Here's Why It Makes Sense.
- RTX 5090, Mac Studio, or DGX Spark? I tried all three.
- Microsoft Is Testing Claude Against Its Own Copilot. Here's Why.
- Salesforce Killed The Browser. Every Agent Runs Your CRM Now.
- GPT-5.5 vs Claude vs Gemini: The Real Difference Nobody's Talking About
- OpenAI Just Gave Every Team A Free Employee. Here's The Catch.
- AI Agents are briefly overhyped
- What the Agent Economy Looks Like From Inside Stripe
- Building Pi, and what makes self-modifying software so fascinating
- AI-Proofing Your Skillset - High-Meaning, High-Specifity Vocabulary is the Path to Growth
- I built an AI agent that orders food for your entire team
- Attackers are now targeting your AI coding tool
- Claude Cowork: Build Your Own Jarvis
- Box CEO on AI Agents & Why Enterprise Can't Keep Up | a16z
- Recursion Is The Next Scaling Law In AI
- Demis Hassabis: Agents, AGI & The Next Big Scientific Breakthrough
- Claude Code for Product Managers
- Transcript: ‘How Stripe Is Building for an Agent-native World’
- You Are the Most Expensive Model
- Why cultivating agency matters more than cultivating skills in the AI era | Max Schoening (Notion)
- Baseten CEO Tuhin Srivastava on Custom Models, and Building the Inference Cloud