Video summary

Prompting is dead. So we're loop engineering now??

Main summary

Key takeaways

Technology

Overview

The video argues that “loop engineering” is becoming the next step beyond standard “prompting coding agents.” Instead of repeatedly writing prompts and micromanaging an agent step-by-step, you design an orchestration system (“loops”) that can repeatedly decide what to do next.


What “loop engineering” means

Current workflow (direct prompting)

You write a prompt → the agent works → you evaluate → you write the next prompt.

Loop engineering (agent orchestration)

You write an initial prompt to a system you built, and that system can:

  • Find the work needed
  • Evaluate and create a plan
  • Trigger agents to execute tasks
  • Trigger agents to review other agents’ outputs
  • Document results
  • Decide what happens next
  • Continue until the goal is complete

Key shift: from you prompting individual agents to you prompting an orchestrator/system.


Why people are talking about it

The creator claims that two influential AI figures independently suggested the same transition:

  • Boris Cherny (Claude Code) says he has “loops” running that “prompt Claude,” and that his job is to “write loops.”
  • Peter Steinberg (OpenAI/Open claw mentioned in subtitles) tweets a reminder: stop “prompting coding agents,” and instead “design loops” that prompt agents.

The internet reaction is described as hype-driven: if you’re not looping, you’ll be left behind.


Product/implementation “anatomy” of a loop

The speaker provides a practical breakdown of what a loop needs:

  1. Trigger (start condition)

    • Manual start, scheduled (cron), or event-based
    • Examples mentioned: a “loop command” (Cloud Code), GitHub issue creation, Linear ticket creation.
  2. Goal / success criteria (stop condition)

    • Defines when the job is complete and what “success” looks like.
  3. Context + skills (guardrails)

    • Project information, rules, and where code/resources live
    • Intended to prevent “agents running wild” and control cost/token usage.
  4. Connectors / tool access

    • If using external systems (e.g., Linear, GitHub, databases), the loop needs integrations (subtitles mention MCP servers).
    • Enables actions like creating pull requests.
  5. Sub-agents

    • Specialized agents for different roles, such as:
      • one agent writes tests
      • another reviews work
    • Emphasis on structuring agent behavior.
  6. Work trees (local file concurrency)

    • For local development, avoid conflicts when multiple agents touch the same files.
  7. State / memory

    • Track progress: what’s done and what’s next
    • Examples: using Linear ticket status or a Markdown checklist file.
  8. Fine-tuning + ongoing maintenance

    • Loops require custom tuning per use case.
    • Humans still monitor outcomes—responsibility doesn’t fully disappear.
    • The harder part is reducing supervision while maintaining quality and safety.

Guidance / caution vs hype

  • Cost & orchestration difficulty: Loops can be expensive and hard to get right; “letting agents run wild” is a key risk.
  • The speaker recommends caution, especially if you’re doing it purely because of hype.
  • Budget signal: Peter Steinberg is cited as having spent $1.3M in a month, suggesting early experimentation may require significant budget.

Personal recommendation (trial strategy)

The speaker’s “personal take” is:

  • Treat loops as an evolution of repeated prompt workflows.
  • Start by automating parts of your process that are already reliable.
  • Keep manual prompting where you don’t fully trust the agent, until automation “naturally flows” for those tasks.

Conclusion: proceed with caution—try it in limited areas and don’t assume full automation immediately.


Main speakers / sources

  • Primary speaker: the YouTube narrator/author (name not provided in subtitles).
  • Referenced sources:
    • Boris Cherny (creator of Claude Code) — quoted interview message about running loops.
    • Peter Steinberg (creator associated with “Open claw,” as cited in subtitles) — quoted tweet about designing loops instead of prompting agents directly.

Original video