You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You're already shipping reliable pipelines, managing infrastructure at scale, and responding to production incidents before most of your organization even opens their laptops. Your DevOps practices are mature. But your tools are changing faster than your workflows.
2
2
3
-
AI-assisted capabilities are now embedded across the Microsoft platform you work in every day — inside GitHub Copilot, Azure DevOps, your CI/CD tooling, and the Azure operations experience itself. Some of those capabilities follow a fundamentally different model than the automation you've built and trusted for years. They observe context, reason about it, and take multi-step actions without explicit scripting for every case.
3
+
AI-assisted capabilities are now embedded across the Microsoft platform you work in every day: inside GitHub Copilot, Azure DevOps, your CI/CD tooling, and the Azure operations experience itself. Some of those capabilities follow a fundamentally different model than the automation you've built and trusted for years. They observe context, reason about it, and take multi-step actions without explicit scripting for every case.
4
4
5
-
This shift is called agentic DevOps. Understanding it isn't about adopting hype. It's about knowing exactly where these new capabilities fit in your workflows, where they add clear value, and where human judgment must stay in the loop.
5
+
This shift is called **agentic DevOps**. Understanding it isn't about adopting hype. It's about knowing exactly where these new capabilities fit in your workflows, where they add clear value, and where human judgment must stay in the loop.
6
6
7
7
## What you'll learn in this module
8
8
9
-
This module builds a working mental model for agentic DevOps in Microsoft-first Azure environments. You'll define what makes a capability "agentic" and how it differs from traditional automation. You'll map specific, high-frequency tasks in the DevOps lifecycle to agentic patterns — so you leave with a concrete view of where to focus first. Finally, you'll establish the autonomy boundaries and human control points that make agentic approaches safe to apply in production environments.
9
+
This module builds a working mental model for agentic DevOps in **Microsoft-first Azure and Azure DevOps environments**. You'll define what makes a capability "agentic" and how it differs from traditional automation. Next, you'll map specific, high-frequency tasks in the DevOps lifecycle to agentic patterns. This allows you to leave with a concrete view of where to focus first. Finally, you'll establish the autonomy boundaries and human control points that make agentic approaches safe to apply in production environments.
10
10
11
11
By the end of this module, you'll be able to:
12
12
13
-
- Define agentic DevOps in a Microsoft and Azure context.
13
+
- Define agentic DevOps in a Microsoft Azure and Azure DevOps context.
14
14
- Identify high-value DevOps tasks that benefit from agentic support.
15
15
- Distinguish assistant, semi-autonomous, and autonomous operating modes.
16
16
- Explain human oversight requirements for production-facing operations.
Copy file name to clipboardExpand all lines: learn-pr/wwl-azure/introduction-agentic-devops-microsoft-tools-azure/includes/2-define-agentic-devops-microsoft-environments.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,15 +8,15 @@ An agent, in the AI sense, is a system that perceives its environment, reasons a
8
8
9
9
Three properties distinguish agentic capabilities from traditional automation and from simple AI chatbots:
10
10
11
-
-**Goal orientation**— the agent works toward an objective, not a fixed sequence of commands.
12
-
-**Tool invocation**— the agent calls external tools, APIs, or services to gather information and take actions.
13
-
-**Observe-reason-act loops**— the agent evaluates intermediate results and adjusts its plan accordingly.
11
+
-**Goal orientation**- the agent works toward an objective, not a fixed sequence of commands.
12
+
-**Tool invocation**- the agent calls external tools, APIs, or services to gather information and take actions.
13
+
-**Observe-reason-act loops**- the agent evaluates intermediate results and adjusts its plan accordingly.
14
14
15
-
Traditional DevOps automation has goal orientation (pipelines have a target state) and sometimes tool invocation, but it doesn't have the adaptive reasoning loop. A Bash script doesn't observe that its first command failed and then choose a different strategy. An agent does.
15
+
Traditional DevOps automation has goal orientation (pipelines have a target state) and sometimes tool invocation, but it doesn't have the **adaptive reasoning loop**. A Bash script doesn't observe that its first command failed to then choose a different strategy. An agent does.
16
16
17
17
## Place agentic DevOps on the Microsoft platform spectrum
18
18
19
-
Microsoft has been building incremental agentic capabilities across its toolchain for several years. The progression is clearest in GitHub Copilot, which moved from a code completion tool to a chat assistant, then to agent mode, and now to a cloud-based coding agent that can take assigned tasks, open pull requests, and iterate on feedback without staying in your editor.
19
+
Microsoft has been building incremental agentic capabilities across its toolchain for several years. The progression is clearest in GitHub Copilot, which moved from a code completion tool to a chat assistant. Then evolved into agent mode, and now is a cloud-based coding agent that can take assigned tasks, open pull requests, and iterate on feedback without staying in your editor.
20
20
21
21
A similar progression appears across the platform:
22
22
@@ -29,7 +29,7 @@ A similar progression appears across the platform:
29
29
| Azure DevOps AI capabilities | AI-assisted work item summaries, pull request descriptions, pipeline authoring suggestions, and Boards content generation — integrated into daily workflow surfaces. |
30
30
| MCP-enabled tooling | Extensions to any of the above through the Model Context Protocol. Gives agents access to additional tools (Azure CLI, ADO project context, Bicep analyzer) scoped by you. |
31
31
32
-
Rather than treating these as separate products to learn in isolation, think of them as different points on an autonomy spectrum. A Copilot suggestion is you driving with AI navigation. Agent mode is AI driving while you supervise. A platform-managed agent is AI driving on a closed course while you watch the dashcam.
32
+
Rather than treating these as separate products to learn in isolation, think of them as different points on an autonomy spectrum. Based on your experience level, you might use them isolated at first, to then evolve into a combined set of tools.
33
33
34
34
## Distinguish agentic capabilities from your existing automation
35
35
@@ -41,15 +41,15 @@ The key distinction is *breadth of context* and *adaptive decision-making*. Your
41
41
- Select from a set of available tools to gather what it needs, rather than having tool selection hard-coded.
42
42
- Respond to intermediate results — for example, discovering mid-task that a resource name conflicts with an existing deployment and choosing an alternative automatically.
43
43
44
-
This isn't a replacement for your automation. It's a different layer of the operating model — one that handles the *judgment-intensive, context-switching, multi-source* work that your pipelines were never designed to absorb.
44
+
This isn't a replacement for your automation. It's a different layer of the operating model. One that handles the *judgment-intensive, context-switching, multi-source* work that your pipelines were never designed to absorb.
45
45
46
46
## Define agentic DevOps as an operating model
47
47
48
48
Agentic DevOps is the application of agent-based AI capabilities to DevOps workflows, where those capabilities handle tasks that require multi-source reasoning, produce structured outcomes that fit into existing delivery processes, and operate within human-defined boundaries.
49
49
50
50
The goal isn't to remove DevOps engineers from the loop. It's to change **what** they're in the loop for. Instead of manually triaging a failing build by searching through five different log views, you describe the failure to an agent, which synthesizes the logs, cross-references similar past failures, and surfaces the probable root cause with supporting evidence. You still make the fix decision. You just spend less time on the search.
51
51
52
-
This distinction — AI doing the information-intensive groundwork, humans making the consequential decision — is the foundation of every concept in the rest of this module.
52
+
This distinction of AI doing the information-intensive groundwork, and humans making the consequential decision, is the foundation of every concept in the rest of this module.
53
53
54
54
> [!NOTE]
55
55
> The capabilities described in this module represent the Microsoft platform. Specific feature availability may vary by plan, region, and product release cycle. Always verify capability status in official Microsoft documentation before designing production workflows.
0 commit comments