{"id":8469,"date":"2026-06-30T12:26:14","date_gmt":"2026-06-30T12:26:14","guid":{"rendered":"https:\/\/nextagile.ai\/blogs\/?p=8469"},"modified":"2026-06-30T12:26:14","modified_gmt":"2026-06-30T12:26:14","slug":"prompt-engineering-to-loop-engineering","status":"publish","type":"post","link":"https:\/\/nextagile.ai\/blogs\/gen-ai\/prompt-engineering-to-loop-engineering\/","title":{"rendered":"From Prompt Engineering to Loop Engineering: The Next Evolution of AI Systems"},"content":{"rendered":"<h2>Quick Answer<\/h2>\n<p><span style=\"font-weight: 400;\">Loop engineering is the practice of designing the automated system that prompts an AI agent on your behalf, instead of you typing each instruction by hand. It became a defining idea in AI circles in June 2026, when developer Peter Steinberger posted that people should stop prompting coding agents and start &#8220;designing loops that prompt your agents,&#8221; a post that crossed 2.2 million views in days.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Google engineering lead Addy Osmani formalized the concept the next day in an essay that gave it its name and structure. The shift makes sense once you see the progression: prompt engineering is about the words you send, context engineering is about everything the model can see, and loop engineering is about the repeating cycle, act, observe, decide, repeat, that drives an agent toward a goal without a human typing every step.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">It matters most for anyone running AI coding agents or long, multi-step automated tasks. It matters less if you&#8217;re doing one-off, single-turn AI requests, where a well-written prompt is still all you need.<\/span><\/p>\n<h2>Key Highlights of Prompt Engineering to Loop Engineering<\/h2>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Loop engineering was named and popularized in June 2026 by Google&#8217;s Addy Osmani, building on a viral post by developer Peter Steinberger that hit 2.2 million views<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Anthropic&#8217;s Claude Code lead, Boris Cherny, has publicly said his job is now to &#8220;write loops, not individual prompts&#8221;<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">The progression runs four layers deep: prompt engineering (the words), context engineering (the information), harness engineering (the environment), and loop engineering (the repeating cycle)<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">The technique traces back to a simpler 2026 pattern called &#8220;Ralph,&#8221; where engineer Geoffrey Huntley ran a coding agent inside a plain while-loop with a clean context reset every iteration<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">A loop is defined by a goal and a stopping condition, not a fixed number of steps, which is the core difference from a prompt chain<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Stanford research cited in industry coverage found the same underlying model can perform up to 6x better depending on the quality of its surrounding harness and loop design, not the model itself<\/span><\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">Loop engineering is the discipline of designing the system that runs an AI agent through a repeating act, observe, decide, repeat cycle, instead of a person prompting that agent by hand at every step. If that sounds like a small distinction, consider what happened in the first two weeks of June 2026: a six-word sentence from developer Peter Steinberger, &#8220;you shouldn&#8217;t be prompting coding agents anymore, you should be designing loops that prompt your agents,&#8221; reorganized how a large part of the AI development community talks about working with these tools.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The post crossed 2.2 million views within days. Reddit threads split into camps, with some developers calling it &#8220;the next abstraction layer&#8221; and others dismissing it as &#8220;a cron job wearing a hat.&#8221; Google engineering lead Addy Osmani published a structured essay the next day that gave the idea a name, loop engineering, and a framework: five building blocks plus a persistence layer sitting outside any single conversation.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">This matters for anyone serious about AI right now, whether you&#8217;re a student learning how modern AI systems actually get built, or a professional leading a team that&#8217;s trying to figure out what skill to invest in next. This guide explains exactly what loop engineering is, why it emerged now, how it connects to prompt engineering and context engineering (concepts you may already know), and what it practically changes about how people work with AI agents in 2026.<\/span><\/p>\n<h2>What Is Loop Engineering, in Plain Terms?<\/h2>\n<p><span style=\"font-weight: 400;\">Loop engineering is designing an automated cycle, act, observe, decide, repeat, that drives an AI agent toward a defined goal until a stopping condition is met, instead of a human manually issuing each instruction one at a time.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Addy Osmani&#8217;s own framing, cited widely across the industry in 2026, captures it cleanly: &#8220;Loop engineering is replacing yourself as the person who prompts the agent. You design the system that does it instead.&#8221; Anthropic&#8217;s Boris Cherny, who built Claude Code, put the same idea even more bluntly on stage just two days before Osmani&#8217;s essay: &#8220;I don&#8217;t prompt Claude anymore.&#8221;<\/span><\/p>\n<h3>A Loop Is Not the Same as a Chain<\/h3>\n<p><span style=\"font-weight: 400;\">This is the distinction that trips up most people new to the concept. A prompt chain, the kind we cover in our companion guide on <\/span><a href=\"https:\/\/nextagile.ai\/blogs\/gen-ai\/what-is-prompt-chaining\/\"><span style=\"font-weight: 400;\">what prompt chaining is<\/span><\/a><span style=\"font-weight: 400;\">, runs a fixed sequence: Step A leads to Step B leads to Step C, in that order, every time.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">A loop is dynamic. According to MindStudio&#8217;s 2026 explainer on the topic, &#8220;a chain runs steps in a fixed sequence&#8230; a loop is dynamic: the agent can revisit steps, adjust based on feedback, or retry with a different approach.&#8221; Chains are predictable and easy to trace. Loops are flexible and better suited to tasks where the right path isn&#8217;t known ahead of time, like debugging an unfamiliar codebase or exploring an API you&#8217;ve never used before.<\/span><\/p>\n<h3>The Origin Story: A Simple While-Loop Named After a Cartoon Character<\/h3>\n<p><span style=\"font-weight: 400;\">Loop engineering didn&#8217;t appear out of nowhere in June 2026. Its direct predecessor is a technique called &#8220;Ralph,&#8221; described by engineer Geoffrey Huntley in early 2026, according to Lushbinary&#8217;s 2026 history of the technique. Huntley ran a coding agent inside a plain while-loop: feed the agent the same prompt against a written specification, let it pick exactly one task and implement it, then start a completely fresh agent instance and feed it the identical prompt again.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">He named it after Ralph Wiggum, the perpetually confused Simpsons character, because the technique is, in Huntley&#8217;s own words, &#8220;deterministically simple in an unpredictable world.&#8221; The insight that made it work was the context reset: a long agent session degrades as its working memory fills with old reasoning, dead ends, and stale file contents. Ralph sidesteps that entirely by giving every iteration a clean slate that reads the current state of the project from disk and picks up exactly where the last iteration left off.<\/span><\/p>\n<h2>The Four-Layer Progression: Prompt, Context, Harness, Loop<\/h2>\n<p><span style=\"font-weight: 400;\">Understanding loop engineering is much easier once you see it as the latest step in a clear progression, not an isolated new idea.<\/span><\/p>\n<h3>Layer 1: Prompt Engineering<\/h3>\n<p><span style=\"font-weight: 400;\">This is the practice of crafting the words you send to an AI model to get a better output. It&#8217;s about communication: what instructions to give, what examples to include, how to format the request. This was the dominant skill from roughly 2022 through 2024.<\/span><\/p>\n<h3>Layer 2: Context Engineering<\/h3>\n<p><span style=\"font-weight: 400;\">In June 2025, AI researcher Andrej Karpathy argued that &#8220;prompt engineering&#8221; understated the actual work involved in serious AI applications. He proposed context engineering instead, describing it as &#8220;the delicate art and science of filling the context window with just the right information for the next step.&#8221; Shopify CEO Tobi Lutke echoed the idea, calling it &#8220;the art of providing all the context for the task to be plausibly solvable by the LLM.&#8221;<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The distinction matters: prompt engineering is about the instruction itself. Context engineering is about everything else the model needs to see, retrieved documents, conversation history, tool definitions, memory, structured around that instruction. We go deeper into this exact comparison in our guide on <\/span><a href=\"https:\/\/nextagile.ai\/blogs\/gen-ai\/context-engineering-vs-prompt-engineering\/\"><span style=\"font-weight: 400;\">context engineering vs. prompt engineering<\/span><\/a><span style=\"font-weight: 400;\">.<\/span><\/p>\n<h3>Layer 3: Harness Engineering<\/h3>\n<p><span style=\"font-weight: 400;\">As agents started operating at greater scale in 2026, a third layer emerged. According to Atlan&#8217;s 2026 industry analysis, Ryan Lopopolo of the OpenAI Codex team named the shift precisely: &#8220;Agents aren&#8217;t hard, the harness is hard.&#8221; Harness engineering is about the environment an agent runs inside, the tools it has access to, the permissions it operates under, the feedback loops that tell it whether its actions worked.<\/span><\/p>\n<h3>Layer 4: Loop Engineering<\/h3>\n<p><span style=\"font-weight: 400;\">This is where the repeating cycle itself becomes the object of design. According to Tosea.ai&#8217;s 2026 complete guide, the breakdown is clean: &#8220;Prompt engineering is about the words you send; context engineering is about all the information the model sees; harness engineering is about the environment the agent runs in; loop engineering is about the iterative cycle that drives the agent toward a goal.&#8221;<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Crucially, loop engineering doesn&#8217;t replace the first three layers. As puppyone&#8217;s 2026 analysis puts it, &#8220;loop engineering doesn&#8217;t replace prompt engineering or context engineering. It wraps them.&#8221; Every loop still needs well-crafted prompts and well-managed context at each iteration; it just adds the structure that decides when and how those prompts get triggered.<\/span><\/p>\n<table>\n<thead>\n<tr>\n<th><b>Layer<\/b><\/th>\n<th><b>Core Question It Answers<\/b><\/th>\n<th><b>Who Designs It<\/b><\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><span style=\"font-weight: 400;\">Prompt Engineering<\/span><\/td>\n<td><span style=\"font-weight: 400;\">What words get the best output right now?<\/span><\/td>\n<td><span style=\"font-weight: 400;\">The person typing the instruction<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Context Engineering<\/span><\/td>\n<td><span style=\"font-weight: 400;\">What information does the model need to see?<\/span><\/td>\n<td><span style=\"font-weight: 400;\">The system architect building the AI application<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Harness Engineering<\/span><\/td>\n<td><span style=\"font-weight: 400;\">What environment and tools does the agent operate in?<\/span><\/td>\n<td><span style=\"font-weight: 400;\">The engineer building the agent&#8217;s operating environment<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Loop Engineering<\/span><\/td>\n<td><span style=\"font-weight: 400;\">What repeating cycle drives the agent toward the goal?<\/span><\/td>\n<td><span style=\"font-weight: 400;\">The engineer designing the automated control flow<\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>The 5 Building Blocks of a Working Loop<\/h2>\n<p><span style=\"font-weight: 400;\">Based on Addy Osmani&#8217;s framework, widely referenced across 2026 industry coverage, a functioning agent loop typically needs five components, plus one element that sits outside the conversation entirely.<\/span><\/p>\n<h3>1. A Clear Goal<\/h3>\n<p><span style=\"font-weight: 400;\">The loop needs a defined outcome it&#8217;s working toward, not a vague direction. &#8220;Improve this codebase&#8221; is too loose. &#8220;Make all tests in this repository pass&#8221; is a goal a loop can actually verify against.<\/span><\/p>\n<h3>2. A Stopping Condition<\/h3>\n<p><span style=\"font-weight: 400;\">Without this, a loop runs forever or until it hits a resource limit. The stopping condition is how the loop knows it&#8217;s done: tests pass, a checklist is complete, a human approval gate is reached.<\/span><\/p>\n<h3>3. An Observation Step<\/h3>\n<p><span style=\"font-weight: 400;\">After the agent acts, something needs to check what happened. Did the code compile? Did the test pass? This is what separates a loop from blind repetition.<\/span><\/p>\n<h3>4. A Decision Step<\/h3>\n<p><span style=\"font-weight: 400;\">Based on the observation, the loop decides what happens next: continue, retry with a different approach, escalate to a human, or stop because the goal is met.<\/span><\/p>\n<h3>5. The Action Itself<\/h3>\n<p><span style=\"font-weight: 400;\">This is where prompt engineering and context engineering actually get used, the agent takes its next concrete action based on a well-constructed prompt and the right context.<\/span><\/p>\n<h3>The Missing Piece: Persistence Outside the Conversation<\/h3>\n<p><span style=\"font-weight: 400;\">According to puppyone&#8217;s 2026 breakdown, Osmani&#8217;s framework includes a sixth element that sits apart from the five-step cycle: memory that persists outside any single conversation. His own description: &#8220;a markdown file, or a Linear board, anything outside a single conversation that holds what&#8217;s done and what&#8217;s next.&#8221; This is what allows a fresh agent instance, like in the Ralph pattern, to pick up exactly where the last one left off instead of starting blind. NextAgile&#8217;s own approach to <\/span><a href=\"https:\/\/nextagile.ai\/agile-transformation-consulting\/\"><span style=\"font-weight: 400;\">Agile transformation consulting<\/span><\/a><span style=\"font-weight: 400;\"> leans on a similar principle at the team level, persistent, visible state that survives any single meeting or sprint, rather than relying on memory living only in someone&#8217;s head.<\/span><\/p>\n<h2>Why This Shift Happened in 2026, Specifically<\/h2>\n<p><span style=\"font-weight: 400;\">This isn&#8217;t a trend that appeared from nowhere. According to ExplainX&#8217;s 2026 analysis, the timing tracks a real capability shift: &#8220;By mid-2026, AI coding agents had become capable enough to run multi-step tasks autonomously for hours. The bottleneck shifted from model capability to orchestration design.&#8221;<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In other words, the models got good enough that the limiting factor stopped being &#8220;can the AI do this task&#8221; and became &#8220;can we structure the system around the AI well enough that it does the task reliably, for hours, without supervision.&#8221; That&#8217;s a fundamentally different problem, and it&#8217;s the one loop engineering is built to solve.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">There&#8217;s supporting evidence for why the harness and loop design matters as much as the model itself. Stanford research, referenced in MindStudio&#8217;s 2026 coverage, found that the same underlying model can perform up to 6 times better or worse depending on the quality of its harness, not the model&#8217;s raw capability. You can review <\/span><a href=\"https:\/\/www.stanford.edu\/\" rel=\"nofollow noopener\" target=\"_blank\"><span style=\"font-weight: 400;\">Stanford&#8217;s broader AI research output<\/span><\/a><span style=\"font-weight: 400;\"> for the kind of rigorous, independently reproducible work this finding builds on. That single data point reframes the whole conversation: better models alone don&#8217;t guarantee better outcomes. Better systems around the models do.<\/span><\/p>\n<h2>What This Means If You&#8217;re Learning AI Right Now<\/h2>\n<p><span style=\"font-weight: 400;\">If you&#8217;re a student or early-career professional building AI skills in 2026, here&#8217;s the practical takeaway: prompt engineering is not dead, and you still need it. Every loop, every chain, every agent still runs on well-constructed prompts at each individual step. As MindStudio&#8217;s comparison guide puts it plainly when discussing the related shift to context engineering, prompt engineering &#8220;did not die, it was reclassified.&#8221; It became a contained skill that lives inside larger systems, instead of the entire skill set on its own.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">What&#8217;s changed is what you build toward. Learning to write a good single prompt is table stakes. The skill that compounds in value now is understanding how prompts, context, and loops fit together into something that runs reliably without you babysitting every step. That&#8217;s exactly the structured, hands-on approach NextAgile takes in our <\/span><a href=\"https:\/\/nextagile.ai\/workshop\/advanced-prompt-engineering-techniques-workshop\/\"><span style=\"font-weight: 400;\">Advanced Prompt Engineering Techniques Workshop<\/span><\/a><span style=\"font-weight: 400;\">, which covers structured instruction design, output formatting, and debugging as enterprise capabilities rather than isolated tricks. For teams exploring agent-based workflows specifically, our <\/span><a href=\"https:\/\/nextagile.ai\/workshop\/agentic-ai-workshop\/\"><span style=\"font-weight: 400;\">Agentic AI Workshop<\/span><\/a><span style=\"font-weight: 400;\"> builds directly on these foundations.<\/span><\/p>\n<h2>What This Means If You&#8217;re Leading a Team Adopting AI<\/h2>\n<p><span style=\"font-weight: 400;\">For HR leaders, L&amp;D heads, and engineering managers, loop engineering is a signal worth paying attention to even outside of pure software development. The underlying principle, designing repeating, self-correcting systems instead of relying on someone manually directing every step, mirrors what NextAgile teaches across Agile and <a href=\"https:\/\/nextagile.ai\/blogs\/okr\/how-to-implement-okrs\/\">OKR implementation<\/a>: define the goal clearly, build in observation and feedback, and let the system iterate toward the outcome rather than micromanaging every action.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">If your organization is investing in AI capability building, the sequencing matters. Teams that jump straight to &#8220;build an autonomous agent&#8221; without first mastering prompt design and context management tend to build fragile, unreliable systems. The progression matters: solid prompt engineering, then context engineering, then loop and harness design. Our <\/span><a href=\"https:\/\/nextagile.ai\/generative-ai-consulting-services\/\"><span style=\"font-weight: 400;\">Generative AI Consulting Services<\/span><\/a><span style=\"font-weight: 400;\"> help organizations sequence this capability build correctly instead of skipping straight to the most advanced layer and wondering why it breaks in production. For a broader enterprise rollout, our <\/span><a href=\"https:\/\/nextagile.ai\/workshop\/generative-ai-workshop-for-enterprise\/\"><span style=\"font-weight: 400;\">Gen AI for Enterprise Workshop<\/span><\/a><span style=\"font-weight: 400;\"> covers how these layers apply at organizational scale.<\/span><\/p>\n<h2>Conclusion<\/h2>\n<p><span style=\"font-weight: 400;\">Loop engineering represents a real shift in how the most advanced AI practitioners work in 2026, moving from manually prompting an agent at each step to designing the automated system, goal, stopping condition, observation, decision, action, that prompts the agent for you. It builds directly on prompt engineering and context engineering rather than replacing them, which is why understanding the full progression matters more than chasing the newest term in isolation.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Three decisions worth making now: figure out whether your current AI work is still single-turn (where strong prompting alone is enough) or genuinely multi-step and repetitive (where loop thinking starts to pay off); audit whether your team has solid prompt and context fundamentals before reaching for loop or agent frameworks; and if you&#8217;re building toward autonomous AI workflows, start with the small, traceable version, a simple loop with a clear stopping condition, before attempting something fully open-ended. NextAgile&#8217;s <\/span><a href=\"https:\/\/nextagile.ai\/agentic-ai-consulting-services\/\"><span style=\"font-weight: 400;\">Agentic AI Consulting Services<\/span><\/a><span style=\"font-weight: 400;\"> work with organizations at exactly this stage of the journey, building the capability layer by layer instead of skipping ahead.<\/span><\/p>\n<h2>Frequently Asked Questions<\/h2>\n<h3>1. Is loop engineering only relevant for coding agents, or does it apply to other types of AI work?<\/h3>\n<p><span style=\"font-weight: 400;\">It originated in the coding agent world, where the idea was most visibly demonstrated, but the underlying pattern, goal plus stopping condition plus repeated act-observe-decide cycles, applies anywhere you want an AI system to work autonomously over multiple steps. Research workflows, content production pipelines, and data processing tasks can all benefit from loop thinking, not just software development.<\/span><\/p>\n<h3>2. Do I need to know how to code to understand or use loop engineering concepts?<\/h3>\n<p><span style=\"font-weight: 400;\">Understanding the concept doesn&#8217;t require coding. Many no-code and low-code AI automation tools now let you build loop-like workflows visually, with conditions and retry logic configured through an interface rather than written code. That said, the most sophisticated and reliable loop implementations today are still built by engineers who understand both the AI behavior and the surrounding software system.<\/span><\/p>\n<h3>3. Is loop engineering just a new buzzword for something developers were already doing?<\/h3>\n<p><span style=\"font-weight: 400;\">There&#8217;s genuine debate about this within the developer community. Some Reddit discussions referenced in 2026 coverage call it &#8220;a cron job wearing a hat,&#8221; arguing it renames existing automation concepts. Others argue it&#8217;s a real new abstraction layer because the goal-driven, self-correcting nature of agent loops is meaningfully different from a fixed, scheduled job. Both views have merit: the underlying mechanics (loops, retries, state management) are not new to software engineering, but applying them specifically to drive autonomous AI agent behavior toward open-ended goals is a newer practice worth naming.<\/span><\/p>\n<h3>4. How is loop engineering different from simply running a prompt chain repeatedly?<\/h3>\n<p><span style=\"font-weight: 400;\">A repeated prompt chain still follows a fixed sequence each time it runs. A true loop, as described in MindStudio&#8217;s 2026 explainer, can dynamically revisit earlier steps, change its approach based on what it observes, and continue until a goal-based stopping condition is met, not a fixed number of repetitions. The flexibility to adapt mid-cycle is the defining difference.<\/span><\/p>\n<h3>5. Who actually coined the term loop engineering, and is it widely accepted yet?<\/h3>\n<p><span style=\"font-weight: 400;\">Google engineering lead Addy Osmani is widely credited with formalizing and naming the concept in an essay published in June 2026, building on a viral post by developer Peter Steinberger and comments from Anthropic&#8217;s Boris Cherny. As of mid-2026, it is a fast-spreading term within the AI engineering community, though, like most fast-moving terminology in this space, broader industry-wide consensus on the exact definition is still forming.<\/span><\/p>\n<h3>6. What should I learn first if I want to eventually understand and apply loop engineering?<\/h3>\n<p><span style=\"font-weight: 400;\">Start with solid prompt engineering fundamentals, learning to write clear, focused instructions for a single task. Then build understanding of context engineering, what information an AI model needs access to and how to structure it. Only after those two layers feel comfortable does loop and harness design start to make sense, because loops are built on top of well-designed prompts and context, not as a replacement for them.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Quick Answer Loop engineering is the practice of designing the automated system that prompts an AI agent on your behalf, instead of you typing each instruction by hand. It became a defining idea in AI circles in June 2026, when developer Peter Steinberger posted that people should stop prompting coding agents and start &#8220;designing loops&#8230;<\/p>\n","protected":false},"author":19,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"content-type":"","footnotes":""},"categories":[145],"tags":[],"class_list":["post-8469","post","type-post","status-publish","format-standard","hentry","category-gen-ai"],"_links":{"self":[{"href":"https:\/\/nextagile.ai\/blogs\/wp-json\/wp\/v2\/posts\/8469","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/nextagile.ai\/blogs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/nextagile.ai\/blogs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/nextagile.ai\/blogs\/wp-json\/wp\/v2\/users\/19"}],"replies":[{"embeddable":true,"href":"https:\/\/nextagile.ai\/blogs\/wp-json\/wp\/v2\/comments?post=8469"}],"version-history":[{"count":1,"href":"https:\/\/nextagile.ai\/blogs\/wp-json\/wp\/v2\/posts\/8469\/revisions"}],"predecessor-version":[{"id":8470,"href":"https:\/\/nextagile.ai\/blogs\/wp-json\/wp\/v2\/posts\/8469\/revisions\/8470"}],"wp:attachment":[{"href":"https:\/\/nextagile.ai\/blogs\/wp-json\/wp\/v2\/media?parent=8469"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/nextagile.ai\/blogs\/wp-json\/wp\/v2\/categories?post=8469"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/nextagile.ai\/blogs\/wp-json\/wp\/v2\/tags?post=8469"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}