{"id":3537,"date":"2025-11-19T09:22:31","date_gmt":"2025-11-19T17:22:31","guid":{"rendered":"https:\/\/devblogs.microsoft.com\/azure-sdk\/?p=3537"},"modified":"2025-11-19T10:26:27","modified_gmt":"2025-11-19T18:26:27","slug":"azure-developer-cli-foundry-agent-extension","status":"publish","type":"post","link":"https:\/\/devblogs.microsoft.com\/azure-sdk\/azure-developer-cli-foundry-agent-extension\/","title":{"rendered":"Announcing the azd AI agent extension: Publish Microsoft Foundry agents directly from your development environment"},"content":{"rendered":"<h1>Announcing the new azd AI agent extension: Publish Microsoft Foundry agents directly from your development environment<\/h1>\n<p>If you&#8217;ve ever built an AI agent, you know the real challenge is more than writing the code, it&#8217;s the complex dance of provisioning resources, managing models, and securely deploying everything to the cloud. We thought, what if that entire workflow could be simplified?<\/p>\n<p>That&#8217;s why our team has been working on a new extension for the Azure Developer CLI (<code>azd<\/code>), which we&#8217;re excited to announce at Ignite 2025. Our goal was to simplify the entire workflow. This new extension helps you build, provision, and publish AI agents on Microsoft Foundry, bridging the gap between local development and cloud deployment. It brings everything you need into your terminal and code editor, letting you go from an agent idea on your machine to a running, shareable agent in Azure with minimal friction.<\/p>\n<p>With this extension, agents become a part of your toolchain. You get the power of Foundry&#8217;s advanced features (from multi-model reasoning to integrated evaluations) combined with the developer-first workflow of <code>azd<\/code>. This extension empowers you to rapidly iterate on AI agents locally and reliably push them to the cloud for at-scale use, all using a consistent set of tools.<\/p>\n<h2>What is the new <code>azd<\/code> AI agent extension?<\/h2>\n<p>The new <code>azd ai agent<\/code> extension adds agent-centric workflows directly into the Azure Developer CLI. It integrates Foundry projects, model deployments, and agent definitions leveraging the <code>azd<\/code> concepts, such as <code>azd init<\/code> and <code>azd up<\/code>. When paired with a template that includes Infrastructure as Code (IaC) or when you bring your own IaC, this extension automates the process of provisioning Azure resources, configuring model deployments, and publishing agents.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-content\/uploads\/sites\/58\/2025\/11\/11-19-azd-ai-agent-extension.png\" alt=\"azd ai agent extension workflow\" \/><\/p>\n<p>These new features handle three critical aspects of agent development:<\/p>\n<ul>\n<li><strong>Project scaffolding<\/strong>: Initialize a new project with an agent-ready starter template that includes pre-configured IaC files you need to get started, then initializes agents from a manifest file.<\/li>\n<li><strong>Resource provisioning<\/strong>: After you&#8217;ve initialized your IaC and agents, then the extension will provision and configure Foundry projects, deploy models with proper SKUs and capacity settings, and establish required connections.<\/li>\n<li><strong>Agent deployment<\/strong>: Package your agent, push container images to Azure Container Registry, and deploy agents to Foundry where they become shareable, production-ready services.<\/li>\n<\/ul>\n<p>The result? You can go from an empty folder to a deployed, callable agent endpoint in minutes instead of hours. Ready to see how?<\/p>\n<h2>Key features<\/h2>\n<p>The new <code>azd ai agent<\/code> extension provides several powerful features that accelerate your agent development:<\/p>\n<ul>\n<li>\n<p><strong>Simplify agent project initialization<\/strong>: Use starter templates that include the necessary IaC to scaffold complete projects. <code>azd<\/code> creates the necessary directory structure, IaC files, and configuration so you can start building immediately.<\/p>\n<\/li>\n<li>\n<p><strong>Declarative configuration<\/strong>: Define your entire agent stack\u2014services, resources, and model deployments\u2014in a declarative <code>azure.yaml<\/code> file. This approach makes your agent infrastructure version-controlled, repeatable, and easy to share across teams.<\/p>\n<\/li>\n<li>\n<p><strong>Unified provisioning and deployment<\/strong>: Use the familiar <code>azd up<\/code> command to provision infrastructure and deploy your agent. <code>azd<\/code> handles the container builds, registry pushes, resource provisioning, and agent deployment automatically.<\/p>\n<\/li>\n<li>\n<p><strong>Agent definition management<\/strong>: Pull agent definitions from GitHub repositories or local paths. The <code>azd ai agent init<\/code> command analyzes the definition, updates your project configuration, and maps parameters to environment variables automatically.<\/p>\n<\/li>\n<li>\n<p><strong>Secure by default<\/strong>: <code>azd<\/code> handles, with IaC files in templates, the boilerplate security configuration for you. It automatically configures your agent with a managed identity for secure access to Azure resources, following recommended practices without manual setup.<\/p>\n<\/li>\n<\/ul>\n<h2>Getting started<\/h2>\n<p>Let&#8217;s walk through creating and deploying your first Foundry agent using the new AI agent features in <code>azd<\/code>.<\/p>\n<h3>Prerequisites<\/h3>\n<p>Before you begin, ensure you have:<\/p>\n<ul>\n<li><a href=\"https:\/\/learn.microsoft.com\/azure\/developer\/azure-developer-cli\/install-azd\">Azure Developer CLI (<code>azd<\/code>)<\/a> (version 1.21.3 or later) installed and authenticated (<code>azd auth login<\/code>). <\/li>\n<li>The <code>azd ai agent<\/code> extension installed (<code>azd extension install azure.ai.agents<\/code>); and, if you don&#8217;t have the extension installed, when you initialize the starter template or run <code>azd ai agent<\/code> the extension is installed automatically.<\/li>\n<li>An Azure subscription with permissions to create resource groups and Foundry resources. Sign up for a free account at <a href=\"https:\/\/azure.com\/free\">azure.com\/free<\/a> if you don&#8217;t have one.<\/li>\n<li>Azure CLI (<code>az<\/code>) installed for certain operations.<\/li>\n<\/ul>\n<h3>Initialize with a Foundry configuration template<\/h3>\n<p>This extension works with an azd template and is also able to connect to an existing project using <code>azd ai agent init --project-id [resourceID]<\/code>.<\/p>\n<p>In this post, we&#8217;ll walk through the approach of starting with a template. It&#8217;s a basic template for Foundry Agent Service to get started quickly.<\/p>\n<ul>\n<li><strong>Basic Setup<\/strong> (<code>azd-ai-starter-basic<\/code>): Optimized for speed and simplicity with all essential resources<\/li>\n<\/ul>\n<p>Start by initializing a new project with the Basic Setup template. In an empty folder, run:<\/p>\n<pre><code class=\"language-bash\">azd init -t Azure-Samples\/azd-ai-starter-basic<\/code><\/pre>\n<p>When prompted, provide an environment name for your agent project (for example, &#8220;my-agent-project&#8221;).<\/p>\n<p>The <code>azd init<\/code> process:<\/p>\n<ul>\n<li>Clones the starter template files into your project<\/li>\n<li>Creates the directory structure with <code>infra\/<\/code> (IaC files) and <code>src\/<\/code> folders<\/li>\n<li>Generates an <code>azure.yaml<\/code> configuration file<\/li>\n<li>Sets up <code>.azure\/&lt;env&gt;\/.env<\/code> for environment-specific variables<\/li>\n<\/ul>\n<h3>Review your project structure<\/h3>\n<p>The initialized template includes these key files:<\/p>\n<pre><code class=\"language-text\">\u251c\u2500\u2500 .azure\/              # Environment-specific settings (.env)\n\u251c\u2500\u2500 infra\/               # Bicep files for Azure infrastructure\n\u2514\u2500\u2500 azure.yaml           # Project configuration<\/code><\/pre>\n<p>Open the <code>azure.yaml<\/code> file to see how your agent project is configured:<\/p>\n<pre><code class=\"language-yaml\"># yaml-language-server: $schema=https:\/\/raw.githubusercontent.com\/Azure\/azure-dev\/main\/schemas\/v1.0\/azure.yaml.json\nname: my-agent-project\n\ninfra:\n  provider: bicep\n  path: .\/infra\n\nrequiredVersions:\n  extensions:\n    # the azd ai agent extension is required for this template\n    \"azure.ai.agents\": latest<\/code><\/pre>\n<p>This declarative configuration defines your agent service and the Azure AI resources it needs, including model deployments. To read more about the <code>azure.yaml<\/code> schema, see the <a href=\"https:\/\/learn.microsoft.com\/azure\/developer\/azure-developer-cli\/azd-schema\">Azure Developer CLI documentation<\/a> and azd environment variables that the agent relies on, such as <code>AZURE_AI_ACCOUNT_NAME<\/code> and <code>AZURE_AI_PROJECT_NAME<\/code>, see the <a href=\"https:\/\/learn.microsoft.com\/azure\/developer\/azure-developer-cli\/manage-environment-variables?tabs=bash\">azd environment variables documentation<\/a>.<\/p>\n<h3>Initialize your agent definition<\/h3>\n<p>The starter template provides the project structure, but you need to add a specific agent definition. Agent definitions describe your agent&#8217;s behavior, tools, and capabilities. You can find example definitions in the <a href=\"https:\/\/github.com\/microsoft\/agent-framework\">Agent Framework repository<\/a>.<\/p>\n<p>For this walkthrough, use an agent definition manifest:<\/p>\n<pre><code class=\"language-bash\">azd ai agent init -m &lt;agent-definition-url&gt;<\/code><\/pre>\n<p>As an example, you can use the following URL for a simple calculator agent:<\/p>\n<pre><code class=\"language-bash\">azd ai agent init -m https:\/\/github.com\/azure-ai-foundry\/foundry-samples\/blob\/main\/samples\/microsoft\/hosted-agents\/python\/calculator-agent\/agent.yaml<\/code><\/pre>\n<p>Here&#8217;s what happens when you run <code>azd ai agent init<\/code>:<\/p>\n<ul>\n<li>Downloads the agent definition YAML file into your project&#8217;s <code>src\/<\/code> directory.<\/li>\n<li>Analyzes the agent definition to understand its requirements.<\/li>\n<li>Updates <code>azure.yaml<\/code> with the corresponding services and configurations.<\/li>\n<li>Maps agent parameters to environment variables.<\/li>\n<\/ul>\n<p>After running <code>azd ai agent init<\/code>, review the updated <code>azure.yaml<\/code> and <code>.env<\/code> files to see how your agent is configured. The <code>azure.yaml<\/code> file looks like:<\/p>\n<pre><code class=\"language-yaml\">requiredVersions:\n    extensions:\n        azure.ai.agents: latest\n        azure.ai.agents: latest\nname: my-agent-project\nservices:\n    CalculatorAgent:\n        project: src\/CalculatorAgent\n        host: azure.ai.agent\n        language: docker\n        docker:\n            remoteBuild: true\n        config:\n            container:\n                resources:\n                    cpu: \"1\"\n                    memory: 2Gi\n                scale:\n                    maxReplicas: 3\n                    minReplicas: 1\n            deployments:\n                - model:\n                    format: OpenAI\n                    name: gpt-4o-mini\n                    version: \"2024-07-18\"\n                  name: gpt-4o-mini\n                  sku:\n                    capacity: 10\n                    name: GlobalStandard<\/code><\/pre>\n<h3>Provision and deploy your agent<\/h3>\n<p>Now with your project is configured, you can deploy everything to Azure with one command:<\/p>\n<pre><code class=\"language-bash\">azd up<\/code><\/pre>\n<p>This single command orchestrates the entire deployment workflow, from infrastructure to a live agent endpoint. Here&#8217;s what happens step-by-step:<\/p>\n<ol>\n<li><strong>Provisions Infrastructure<\/strong>: Creates the Foundry account, project, and all necessary Azure resources defined in the Bicep files.\n<ul>\n<li>Pre-provision hooks inspect the agents and their dependencies, models, and other resources, then populates environment variables so that Bicep knows what to provision, including:<\/li>\n<li><code>AI_PROJECT_DEPLOYMENTS<\/code> (JSON): Specification of the models to deploy.<\/li>\n<li><code>AI_PROJECT_CONNECTIONS<\/code> (JSON): Specification of the connections to create.<\/li>\n<li><code>AI_PROJECT_DEPENDENT_RESOURCES<\/code> (JSON): Specification of the dependent resources.<\/li>\n<li><code>ENABLE_HOSTED_AGENTS<\/code> (boolean): Whether hosted agents need to be provisioned (with an ACR and CapHost).<\/li>\n<\/ul>\n<\/li>\n<li><strong>Deploys Models<\/strong>: Provisions the model deployments specified in <code>azure.yaml<\/code> (for example, GPT-4o-mini with the configured SKU and capacity).<\/li>\n<li><strong>Builds &amp; Pushes Container<\/strong>: If the agent has custom code, <code>azd<\/code> packages it into a container image and pushes it to your Azure Container Registry.<\/li>\n<li><strong>Publishes Agent<\/strong>: Creates an Agent Application in Foundry and deploys your agent as a live, callable service.<\/li>\n<\/ol>\n<p>The entire process typically completes in 5-10 minutes for a new project. When <code>azd up<\/code> finishes, there are links in the terminal output to the agent playground portal and the agent endpoint.<\/p>\n<p>The agent is now live and ready to use. From an empty folder to a running agent, all with just three commands:<\/p>\n<ol>\n<li><code>azd init -t Azure-Samples\/azd-ai-starter-basic<\/code><\/li>\n<li><code>azd ai agent init -manifest &lt;agent-definition-url&gt;<\/code><\/li>\n<li><code>azd up<\/code><\/li>\n<\/ol>\n<h3>Test your agent in Foundry<\/h3>\n<p>Now for the fun part\u2014let&#8217;s make sure your agent is working.<\/p>\n<ol>\n<li>Follow the link in the terminal output. (Alternatively, open the <a href=\"https:\/\/ai.azure.com\">Foundry portal<\/a> and navigate to the project provisioned by <code>azd<\/code> which is the project name was displayed in the <code>azd up<\/code> output).<\/li>\n<li>Open the <strong>Agents<\/strong> section to see your deployed agent.<\/li>\n<li>Launch the agent in the playground and send a test query, for example: &#8220;Summarize your capabilities.&#8221;<\/li>\n<\/ol>\n<p>If your agent responds successfully, congratulations! You&#8217;ve just deployed a working Foundry agent from your local development environment.<\/p>\n<h2>How it works: Under the hood<\/h2>\n<p>So, what&#8217;s happening behind the scenes when you run these <code>azd<\/code> commands? Let&#8217;s break down the how this transforms your local project into a cloud-native AI agent. The process follows a clear, logical flow from scaffolding to a secure, running service.<\/p>\n<h3>1. Project scaffolding and configuration<\/h3>\n<p>When you run <code>azd init<\/code> with a Foundry template, <code>azd<\/code> sets up a complete, well-structured project. The template includes:<\/p>\n<ul>\n<li><strong>Bicep infrastructure files<\/strong> in the <code>infra\/<\/code> directory that define all the necessary Foundry resources, model deployments, and networking.<\/li>\n<li><strong>An <code>azure.yaml<\/code> file<\/strong> that provides a declarative map of your services, resources, and dependencies.<\/li>\n<li><strong>Environment configurations<\/strong> in <code>.azure\/&lt;env&gt;\/.env<\/code> that store subscription IDs, resource names, and endpoints.<\/li>\n<li><strong>An <code>agent.yaml<\/code> file<\/strong> in the <code>src\/<\/code> directory that stores the environment variables the agent needs. For example:<\/li>\n<\/ul>\n<pre><code class=\"language-yaml\">kind: hosted\nname: CalculatorAgent\ndescription: This LangGraph agent can perform arithmetic calculations such as addition, subtraction, multiplication, and division.\nmetadata:\n    authors:\n        - migu\n    example:\n        - content: What is the size of France in square miles, divided by 27?\n          role: user\n    tags:\n        - example\n        - learning\nprotocols:\n    - protocol: responses\n      version: v1\nenvironment_variables:\n    - name: AZURE_OPENAI_ENDPOINT\n      value: ${AZURE_OPENAI_ENDPOINT}\n    - name: OPENAI_API_VERSION\n      value: 2025-03-01-preview<\/code><\/pre>\n<p>Next, when you run <code>azd ai agent init<\/code>, the CLI:<\/p>\n<ul>\n<li>Fetches the agent definition from the URL or local path you provided.<\/li>\n<li>Parses the YAML to understand the agent&#8217;s requirements (models, tools, connections).<\/li>\n<li>Updates <code>azure.yaml<\/code> to include the agent as a service.<\/li>\n<li>Creates or updates the environment variables needed for the agent&#8217;s runtime.<\/li>\n<\/ul>\n<h3>2. Resource provisioning<\/h3>\n<p>The <code>azd up<\/code> command triggers all infrastructure provisioning through Azure Resource Manager. Based on your <code>azure.yaml<\/code> and Bicep files, <code>azd<\/code>:<\/p>\n<ul>\n<li>Compiles your Bicep templates into ARM templates.<\/li>\n<li>Creates the resource group in your specified Azure region.<\/li>\n<li>Provisions the Foundry account and project.<\/li>\n<li>Deploys the specified models to the project with your configured SKUs and capacity.<\/li>\n<\/ul>\n<p>For example, if your <code>azure.yaml<\/code> specifies <code>gpt-4o-mini<\/code> with version <code>2024-07-18<\/code>, <code>azd<\/code> creates that exact model deployment in your Foundry project. This declarative approach ensures consistency between environments, so your development, staging, and production deployments use identical configurations.<\/p>\n<h3>3. Container build and publishing<\/h3>\n<p>For agents with custom code (for custom tools, integrations, or business logic), <code>azd<\/code> handles the complete containerization workflow:<\/p>\n<ol>\n<li><strong>Build<\/strong>: Packages your agent code into a Docker container image using the configuration from your project.<\/li>\n<li><strong>Push<\/strong>: Authenticates to Azure Container Registry and pushes the image with a unique tag.<\/li>\n<li><strong>Deploy<\/strong>: Creates an agent in the Foundry and a deployment that runs your container.<\/li>\n<\/ol>\n<p>Your agent is deployed to the Foundry hosted agent service, which provides automatic scaling, managed compute, and integrated monitoring. The Agent Application becomes the stable, versionable interface for your agent, with a unique name and endpoint.<\/p>\n<h3>4. Identity and security<\/h3>\n<p>Finally, <code>azd<\/code> automatically configures secure access patterns with IaC so you don&#8217;t have to manage credentials manually:<\/p>\n<ul>\n<li><strong>Managed Identity<\/strong>: Your agent uses the Foundry project&#8217;s system-assigned managed identity for authenticating to other Azure resources.<\/li>\n<li><strong>Role Assignments<\/strong>: Required permissions are granted automatically (for example, giving your agent access to Azure AI services, storage, or databases) with the starter template.<\/li>\n<li><strong>Endpoint Security<\/strong>: Agent endpoints use Azure AD authentication by default to ensure only authorized users or applications can call your agent.<\/li>\n<\/ul>\n<p>These security configurations in the template follow Azure recommended practices and work out of the box, giving you a secure foundation from the start.<\/p>\n<h2>Use cases and scenarios<\/h2>\n<p>Now that you have a solid understanding of how these <code>azd<\/code> features work, let&#8217;s explore how you can use them to build different kinds of agents. For complete, ready-to-deploy examples, check out:<\/p>\n<ul>\n<li><a href=\"https:\/\/aka.ms\/hosted-agent-samples\/python\">Python hosted agents samples<\/a><\/li>\n<li><a href=\"https:\/\/aka.ms\/hosted-agent-samples\/csharp\">.NET hosted agents samples<\/a>.<\/li>\n<\/ul>\n<h3>Building conversational AI assistants<\/h3>\n<p>Create intelligent customer service agents that understand context, access knowledge bases, and provide personalized responses. With <code>azd<\/code>, you can:<\/p>\n<ul>\n<li>Rapidly deploy multiple agent variations for A\/B testing<\/li>\n<li>Integrate agents with Azure AI Search for retrieval-augmented generation<\/li>\n<li>Connect to business systems and APIs through custom tools<\/li>\n<li>Version and roll back agent deployments as you iterate<\/li>\n<\/ul>\n<h3>Data analysis and insights agents<\/h3>\n<p>Build agents that analyze data, generate visualizations, and provide insights. With <code>azd<\/code>, you can:<\/p>\n<ul>\n<li>Provision agents with access to Azure SQL Database or Cosmos DB.<\/li>\n<li>Deploy specialized models for quantitative analysis.<\/li>\n<li>Create agents that use code interpreter tools for calculations.<\/li>\n<li>Publish agents to help learn French.<\/li>\n<\/ul>\n<h3>Multi-agent orchestration<\/h3>\n<p>Develop systems where multiple specialized agents collaborate on complex tasks:<\/p>\n<ul>\n<li>Deploy a coordinator agent that routes requests to specialist agents<\/li>\n<li>Provision each agent with different model configurations for optimal performance<\/li>\n<li>Use the declarative <code>azure.yaml<\/code> to define agent relationships and dependencies<\/li>\n<li>Scale individual agents independently based on workload<\/li>\n<\/ul>\n<h3>Enterprise agent deployment<\/h3>\n<p>Standardize agent development and deployment across your organization:<\/p>\n<ul>\n<li>Create reusable agent blueprints that encode your organization&#8217;s best practices<\/li>\n<li>Publish agent templates to internal catalogs for teams to consume<\/li>\n<li>Enforce consistent security, compliance, and monitoring configurations<\/li>\n<li>Automate agent deployment in CI\/CD pipelines using <code>azd provision<\/code> and <code>azd deploy<\/code><\/li>\n<\/ul>\n<h2>Advanced configuration<\/h2>\n<p>Once you&#8217;re comfortable with the basic workflow, you can start customizing your deployments to meet more advanced requirements.<\/p>\n<h3>Customizing model deployments<\/h3>\n<p>Your <code>azure.yaml<\/code> file gives you full control over which models get deployed. To add or change a model, edit the file:<\/p>\n<pre><code class=\"language-yaml\">services:\n    CalculatorAgent:\n        project: src\/CalculatorAgent\n        host: azure.ai.agent\n        language: docker\n        docker:\n            remoteBuild: true\n        config:\n            container:\n                resources:\n                    cpu: \"1\"\n                    memory: 2Gi\n                scale:\n                    maxReplicas: 3\n                    minReplicas: 1\n            deployments:\n                - model:\n                    format: OpenAI\n                    name: gpt-4o-mini\n                    version: \"2024-07-18\"\n                  name: gpt-4o-mini\n                  sku:\n                    capacity: 10\n                    name: GlobalStandard<\/code><\/pre>\n<p>This configuration provisions multiple models, enabling your agent to use different models for different tasks (for example, a larger model for complex reasoning and a smaller one for simple queries). When you next run <code>azd up<\/code>, it automatically deploys the new model and update your project.<\/p>\n<h3>Managing environment variables<\/h3>\n<p>Key environment variables <code>azd<\/code> sets or uses:<\/p>\n<table>\n<thead>\n<tr>\n<th>Variable<\/th>\n<th>Purpose<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><code>AZURE_SUBSCRIPTION_ID<\/code><\/td>\n<td>Target subscription for resources.<\/td>\n<\/tr>\n<tr>\n<td><code>AZURE_RESOURCE_GROUP<\/code><\/td>\n<td>Resource group hosting the AI project.<\/td>\n<\/tr>\n<tr>\n<td><code>AZURE_LOCATION<\/code><\/td>\n<td>Azure region (must support chosen models).<\/td>\n<\/tr>\n<tr>\n<td><code>AZURE_AI_PROJECT_ID<\/code><\/td>\n<td>The full Azure resource ID of your project.<\/td>\n<\/tr>\n<tr>\n<td><code>AZURE_AI_PROJECT_NAME<\/code><\/td>\n<td>Project hosting the agent.<\/td>\n<\/tr>\n<tr>\n<td><code>AZURE_AI_PROJECT_ENDPOINT<\/code><\/td>\n<td>Endpoint for agent management and runtime calls.<\/td>\n<\/tr>\n<tr>\n<td><code>AZURE_CONTAINER_REGISTRY_ENDPOINT<\/code><\/td>\n<td>Endpoint to build and push container images<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>These variables are stored in <code>.azure\/&lt;environment-name&gt;\/.env<\/code> and can be customized for each of your environments (for example, dev, test, and prod).<\/p>\n<h2>Get started today<\/h2>\n<p>The new <code>azd ai agent<\/code> capabilities are available in public preview as of Microsoft Ignite 2025. While it&#8217;s an early release, it&#8217;s ready for you to try today, and we&#8217;re actively evolving these features based on your feedback.<\/p>\n<h3>Getting involved<\/h3>\n<p>To get started:<\/p>\n<ul>\n<li><strong>Explore sample agents<\/strong>: Check out the <a href=\"https:\/\/github.com\/microsoft\/agent-framework\">Agent Framework repository<\/a> for <a href=\"https:\/\/github.com\/microsoft\/agent-framework\/tree\/main\/dotnet\/samples\">.NET agents<\/a> and <a href=\"https:\/\/github.com\/microsoft\/agent-framework\/tree\/main\/python\/samples\">Python agents<\/a> you can deploy with <code>azd ai agent init<\/code>.<\/li>\n<li><strong>Join the community<\/strong>: Share your experiences and ask questions in the <a href=\"https:\/\/github.com\/Azure\/azure-dev\/discussions\">Azure Developer CLI GitHub discussions<\/a>.<\/li>\n<li><strong>Report issues and suggest features<\/strong>: We&#8217;re eager for your feedback! File issues or suggestions in the <a href=\"https:\/\/github.com\/Azure\/azure-dev\/issues\">Azure\/azure-dev repository<\/a> (tag them with <code>ext-agents<\/code>).<\/li>\n<li><strong>Review documentation<\/strong>: Visit the <a href=\"https:\/\/learn.microsoft.com\/azure\/ai-foundry\/\">Foundry documentation<\/a> for comprehensive guides on agent development.<\/li>\n<\/ul>\n<p>Your feedback shapes these priorities, so we encourage you to share your ideas and use cases.<\/p>\n<h2>Start building intelligent agents today<\/h2>\n<p>We believe this new extension will change how you develop agents by letting you focus on what&#8217;s important: building intelligent solutions. We handled the complexity so you can get back to creating. With Foundry&#8217;s advanced capabilities and <code>azd<\/code>&#8216;s developer-friendly workflow, you have everything you need to create, iterate, and deploy production-grade AI agents.<\/p>\n<p><a href=\"https:\/\/learn.microsoft.com\/azure\/developer\/azure-developer-cli\/install-azd\">Install the Azure Developer CLI<\/a> today and start building the next generation of AI agents.<\/p>\n<h2>Additional resources<\/h2>\n<ul>\n<li><a href=\"https:\/\/learn.microsoft.com\/azure\/developer\/azure-developer-cli\/\">Azure Developer CLI documentation<\/a><\/li>\n<li><a href=\"https:\/\/learn.microsoft.com\/azure\/ai-foundry\/\">Foundry documentation<\/a><\/li>\n<li><a href=\"https:\/\/github.com\/microsoft\/agent-framework\">Agent Framework repository (samples and tools)<\/a><\/li>\n<li><a href=\"https:\/\/github.com\/Azure\/azure-dev\">Azure Developer CLI GitHub repository<\/a><\/li>\n<li><a href=\"https:\/\/github.com\/Azure-Samples\/azd-ai-starter-basic\">AI Foundry starter template<\/a><\/li>\n<\/ul>\n<p>Happy building!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This post shares how to work with the new Azure Developer CLI (`azd`) agents extension.<\/p>\n","protected":false},"author":107449,"featured_media":3541,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1],"tags":[701,956,864,878,939,160,159,861,955,162,733,895],"class_list":["post-3537","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-azure-sdk","tag-net","tag-ai-agent","tag-azure-developer-cli","tag-codespaces","tag-docker","tag-java","tag-javascript","tag-kubernetes","tag-microsoft-foundry","tag-python","tag-typescript","tag-vscode"],"acf":[],"blog_post_summary":"<p>This post shares how to work with the new Azure Developer CLI (`azd`) agents extension.<\/p>\n","_links":{"self":[{"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/posts\/3537","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/users\/107449"}],"replies":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/comments?post=3537"}],"version-history":[{"count":0,"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/posts\/3537\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/media\/3541"}],"wp:attachment":[{"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/media?parent=3537"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/categories?post=3537"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/azure-sdk\/wp-json\/wp\/v2\/tags?post=3537"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}