[!] TOPIC ARCHIVE // #AI-AGENTS
#Ai-Agents
All 77 guides, operator dossiers, and signals tagged with #Ai-Agents.
driver, page, sandbox
CueBench scores the human driving coding agents, Page Agent turns the web page into a tested control layer, and CubeSandbox/OpenShell harden the runtime underneath.
exact calls, guarded writes, real tool tests
Agents are being pushed toward verifiable tool calls, pre-write service controls, and prompt tests that use the actual production harness.
the agent needs a human on the hook
Godot tightened AI contribution rules, Senior SWE-Bench graded agents on real senior-engineer work, and dependency checks moved into agent preflight.
May 25 Radar: serial reviewers, memory bills, and leaking sandboxes
Addy Osmani and Armin Ronacher put a human bottleneck under coding agents, Epoch and an energy paper put numbers under agent costs, and Canister shows why network allow-lists still leak secrets.
May 23 Radar: security queues, agent boundaries, and routing invoices
Anthropic's Glasswing update exposed the security-triage backlog, SQLite wrote a hard boundary for agents, and DeepSeek turned model routing into invoice math.
World Models for Personal Agents
Why agents need explicit state, consequence prediction, planning, guardrails, and mismatch detection outside the chat transcript.
Agent Verification Loop
Seven checks to catch fake success before an agent writes, sends, deploys, deletes, or publishes. For coding and publishing agents.
the control surface is the product
the model is the part you rent. the harness — settings, hooks, mcp, workflow files, custody, audit — is the part you own. that's the product.
the blind spots are getting plugged
observability for agents, karpathy's workflow flip, and anthropic's 73% market capture
recursion is shipping. vibe coding is collapsing.
claude writes its own training code. booklore implodes from AI-generated tech debt. the infrastructure split: those who understand what they ship vs those who vibe until it breaks.
your agent's memory is a filesystem now
why treating AI memory as a file tree instead of a vector store changes everything
agent infrastructure: the boring parts matter more than the demos
from parallel worktree managers to billing circuit breakers — the unsexy tooling layer that makes agentic coding actually work
trust is infrastructure now
the personal AI ecosystem is moving past 'can it code' and building the hard parts: memory, security, and consent
Anthropic Skills
Official skills repository from Anthropic for Claude Code and Claude agents. 74.7K stars. The format just became infrastructure.
stateless agents: why your AI shouldn't remember you
the title will go away. the skill won't.
Boris Cherny says the software engineering title is disappearing. that's not a job market story. it's an identity architecture story.
Qwen Code
an open-source AI coding agent that lives in your terminal. Alibaba's answer to Claude Code — MIT-licensed, built on Qwen models.
cognitive debt: the hidden cost of AI velocity
technical debt is code you can't maintain. cognitive debt is decisions you can't remember making. your AI agent ships fast — but are you taking out a loan you can't pay back?
what is MCP? the Model Context Protocol explained
what is MCP (Model Context Protocol)? a non-technical explanation of how MCP works, why it matters, and how it connects AI agents to the world.
Mem0
Mem0 — the open-source memory layer for AI agents. graph + vector memory, cross-session persistence, and why AI memory infrastructure matters.
context engineering
context engineering is the discipline of crafting optimal context for AI agents — memory, retrieval, compression, and instruction design.
x-cli
Twitter/X from your terminal. post, search, like, bookmark, read timelines — no browser required. agent-friendly from day one.
gogcli
command-line for your entire Google workspace. gmail, calendar, drive, contacts, tasks, sheets, forms, docs, slides, chat, classroom, keep — all from the terminal.
the collision: when AI agents enter human social spaces
an AI bot got rejected on GitHub and wrote a rant. this is just the beginning.
signals #13: the collision
agents learning from you. agents melting down on GitHub. the S-curve moment happening in real time.
Parasites — Weekly Signals 2026-02-12
your AI assistant is no longer a polite chatbot. it's a parasite with Docker access.
parasites
your AI assistant is no longer a polite chatbot. it's a parasite with Docker access.
Skill Seekers
Auto-generate AI agent skills from project documentation. Turn your docs into portable skill files that agents can read and execute.
why the next programming language will be designed for AI agents, not developers
armin ronacher's thesis on agent-first languages is the most important programming language design argument since Go. here's why he's right.
Ralv.ai — Starcraft for AI Agents
A 3D spatial interface for orchestrating swarms of AI agents. RTS-style drag-select, deploy, and zoom controls for managing 50+ agents without terminal chaos.
programming languages for agents (and why AI makes you work harder, not less)
Armin Ronacher wants new languages for agents. academics formalize context engineering. skills catalogs explode. and the dark truth: AI doesn't reduce work — it intensifies it.
AI Agent Skills Catalogs
Comparison of skills catalogs and plugins for AI coding agents: OpenAI Skills, Awesome Claude Skills, Compound Engineering Plugin. The emerging app store for agents.
markdown files are the new API layer for AI agents
AGENTS.md, Backlog.md, and SKILLS.md are turning plain text into the protocol layer between humans and AI. here's why .md files are becoming infrastructure.
Backlog.md
git-native project collaboration between humans and AI agents. tasks, issues, and agent instructions — all in markdown.
.md files are becoming the protocol layer for AI agents
Backlog.md, OpenAI/skills, tweakcc, and the AGENTS.md ecosystem signal a shift: markdown files are no longer documentation. they're infrastructure.
Token Efficiency: Fit More in Less
Practical techniques to reduce token usage, optimize context windows, and cut LLM costs without losing quality.
Parallel AI Sessions: Run Multiple Agents
Run multiple AI agents simultaneously. Patterns for concurrent prompts, session orchestration, and task distribution across LLM workers.
LLM Logging: Capture Every AI Conversation
Track prompts, responses, and token usage. Build a searchable archive of LLM interactions for debugging, learning, and prompt optimization.
Agent Memory Systems
How AI agents implement memory: short-term context, long-term storage, vector retrieval, and the architecture that ties it together.
Vision-Based Web Automation: Why Screenshots Are Replacing Selectors
How computer vision and multimodal LLMs enable browser agents that see pages like humans instead of parsing brittle DOM structures.
LLM-as-Judge Evaluation
Use LLMs to evaluate LLM outputs. Build reliable automated judges through critique shadowing and iterative calibration with domain experts.
Context Rot: When More Tokens Mean Worse Results
LLM performance degrades predictably as context windows fill up. Learn why this happens, how to detect it, and practical strategies to maintain output quality.
AI Memory Compression
Techniques for compressing AI observations into retrievable semantic summaries that fit in context windows
Adam Azzam's ControlFlow Framework
How Prefect's VP of Product built ControlFlow and Marvin, bringing workflow orchestration and failure handling to AI agents with native observability
Memory Consolidation and Forgetting
How AI agents consolidate short-term observations into long-term storage using sleep-inspired patterns, plus when and what to forget.
Prompt Engineering for Agent Coding
Structure prompts that make AI coding agents 30-40% more effective
Preference Learning: AI That Adapts to You
How AI systems infer your preferences from interactions and adapt without configuration. Covers POPI, Mem0, LaMP benchmarks, and building preference-aware systems.
Tool Routing: How AI Agents Pick Which Function to Call
Modern agents route between dozens of tools using semantic matching, LLM-as-router, hierarchical patterns, and fallback chains. Patterns for scoring, selection, and MCP sampling.
Browser agents vs Playwright: when to use AI browser automation
Choose between manual browser work, Playwright scripts, browser agents, Playwright MCP, and hosted browsers. Includes auth rules, receipts, and failure checks.
Subagent Patterns: Parallel, Sequential, Background
Three dispatch patterns for delegating work to AI subagents and when to use each one.
Keep Claude Running for Hours
Build autonomous development loops using todo files, hierarchical subagents, and context compaction to process task lists for hours without human input.
Multi-Agent Coordination: How to Run Three AI Agents Without Merge Conflicts
The four-phase workflow for running parallel AI agents on the same codebase using tmux, git worktrees, and a shared AGENTS.md file.
Multi-Agent Knowledge Management
When a single AI can't handle your PKM needs, specialized agents working together can automate capture, processing, and synthesis.
Browser Agents
AI that clicks, types, and scrolls your browser autonomously to complete web-based tasks
Human-on-the-Loop
Move from approving every AI action to supervising agents that act autonomously, escalating only when confidence drops or risk rises.
The Architecture of a Personal OS
Personal OS architecture: interface, agent, memory, integration, and tool layers. Build your AI system incrementally in 4 weeks
Checkpointing - Safe Rollback for Agent Work
How automatic checkpoints protect your work and let you recover from agent mistakes
Task Decomposition for AI Documentation
Break documentation projects into discrete steps to get accurate, consistent output from AI tools instead of hallucinated garbage.
10 AI Agent Failure Modes: Why Agents Break in Production
The documented ways AI agents fail: hallucination cascades, context overflow, tool calling errors, and 7 more. Diagnosis patterns and fixes for each.
ACE Framework for Personal AI
Implement David Shapiro's six-layer cognitive architecture to give your Claude Code assistant mission, values, and strategic context
MCP Server Composition
Connect your AI agent to multiple MCP servers at once, combining calendar, database, files, and search through one protocol
Principles for AI Delegation
What to delegate to AI and what to keep human
Agent Checkpointing: Save, Restore, and Rewind Autonomous Work
How checkpoint systems enable long-running agent workflows by saving state periodically, allowing recovery from failures and rollback from bad decisions
Memory Attribution and Provenance
Track where AI memories came from, when they were created, and how much to trust them
Context Window Management
Keep your AI sharp by managing what fits in its working memory
Git Worktrees for Parallel Agents
Run multiple AI agents on the same codebase without conflicts using git worktrees
Self-Updating Instructions (Procedural Memory)
Build AI agents that modify their own operating instructions based on experience, feedback, and observed failures
Tool Use Patterns: How LLMs Call External Tools
Function calling, MCP protocol, and ReAct patterns for AI tool use. Learn when to use each approach and how to implement them.
The Three-Layer Workflow
Match your AI tool to the task: tab completion for most work, agents for multi-file changes, reasoning for architecture
Agentic Design Patterns: ReAct, Reflection, Planning, Tool Use
When to use ReAct loops, self-critique, task decomposition, and tool calling in AI agents. A practical pattern library for building effective agent systems.
What is a Personal OS?
A Personal OS is the user's control plane for memory, identity, permissions, tools, workflows, actions, receipts, and rollback across AI agents and devices.
Building Your First MCP Server
Create custom MCP servers to extend Claude with your own tools
Sandboxing & Security for AI Agents
How to isolate AI agents using OS-level sandboxing to prevent unauthorized access and reduce permission fatigue.
Episodic Memory for LLM Agents
Give AI agents memory of specific past events with temporal context. The missing piece between semantic facts and procedural rules in the CoALA framework.
Self-Evolving Agents
Build AI agents that improve through structured feedback capture, automated evaluation, and continuous retraining loops
Agent Observability
How to implement distributed tracing, logging, and monitoring for AI agents using OpenTelemetry and purpose-built tools like Langfuse and Braintrust.
Agent Guardrails: Input/Output Validation for Autonomous Systems
How to implement runtime guardrails that validate agent inputs, filter outputs, and enforce business rules. Covers NeMo Guardrails, layered checking, and production patterns.