A senior Anthropic engineer just dropped 11-page PDF on "Loop Engineering" for agentic systems.
The shift: you stop prompting the agent. You build the system that prompts it instead.
Schedule → Discover → Build → Verify → Repeat
Every loop runs one turn, five moves:
• Discovery: it finds its own work - failing CI, open issues, recent commits - instead of being handed a list.
• Handoff: each task gets an isolated git worktree so parallel agents don't collide.
• Verification: a second agent, told to assume the code is broken, reviews the first. The "thing that can say no."
• Persistence: results get written to disk, never left in a context window that gets flushed.
• Scheduling: an automation wakes it on a timer. That's what makes it a loop.
The key insight: an agent grading its own work always praises it.
This 11-page PDF changed how I'm building agentic systems today.
Read it now, then explore the article below.
요약
엔지니어가 공개한 11페이지 PDF 문서가 '루프 엔지니어링'의 개념을 소개합니다. 이 접근 방식은 에이전트를 프롬프트하는 대신, 시스템이 에이전트를 프롬프트하도록 설계하는 것을 핵심으로 합니다.
루프의 구조
시스템은 '발견 → 인계 → 검증 → 지속성 → 스케줄링'의 순환 구조를 따릅니다. 각 루프는 단일 턴으로 실행되며, 에이전트는 CI 실패, 오픈 이슈, 최근 커밋 등을 직접 발견하여 작업을 수행합니다.
주요 기능
핵심 통찰
에이전트가 자신의 작업을 평가할 경우 항상 자신을 칭찬하므로, 독립적인 검증 단계가 필수적입니다.