From d8525796e7adc657272ff9e2b3e7ee211018ac08 Mon Sep 17 00:00:00 2001 From: Genevieve Warren <24882762+gewarren@users.noreply.github.com> Date: Tue, 17 Mar 2026 14:24:00 -0700 Subject: [PATCH 1/9] update guidance for ca rules guidance --- .openpublishing.redirection.json | 9 +++++++-- ...ute-code-analysis.md => code-analysis-rules.md} | 14 +++++++------- 2 files changed, 14 insertions(+), 9 deletions(-) rename Contribute/content/dotnet/{dotnet-contribute-code-analysis.md => code-analysis-rules.md} (88%) diff --git a/.openpublishing.redirection.json b/.openpublishing.redirection.json index d7abcd7b..bc9b3848 100644 --- a/.openpublishing.redirection.json +++ b/.openpublishing.redirection.json @@ -11,6 +11,11 @@ "source_path": "Contribute/light-workflow.md", "redirect_url": "/" }, + { + "source_path": "Contribute/content/dotnet/dotnet-contribute-code-analysis.md", + "redirect_url": "/contribute/dotnet/code-analysis-rules", + "redirect_document_id": true + }, { "source_path": "Contribute/dotnet-contribute-process.md", "redirect_url": "/contribute/dotnet/dotnet-contribute" @@ -237,11 +242,11 @@ "source_path": "ai-navigator/index.yml", "redirect_url": "/contribute/", "redirect_document_id": false - }, + }, { "source_path": "Contribute/content/architecture-center/solution-idea-templates.md", "redirect_url": "/contribute/content/architecture-center/aac-contribute", "redirect_document_id": false } ] -} \ No newline at end of file +} diff --git a/Contribute/content/dotnet/dotnet-contribute-code-analysis.md b/Contribute/content/dotnet/code-analysis-rules.md similarity index 88% rename from Contribute/content/dotnet/dotnet-contribute-code-analysis.md rename to Contribute/content/dotnet/code-analysis-rules.md index 59422448..5c29f306 100644 --- a/Contribute/content/dotnet/dotnet-contribute-code-analysis.md +++ b/Contribute/content/dotnet/code-analysis-rules.md @@ -1,29 +1,29 @@ --- -title: Contribute docs for .NET code analysis rules to the .NET docs repository +title: Contribute docs for .NET code analysis rules description: This article describes the process for contributing to the articles and code samples for .NET code analysis rules in the .NET docs repository. author: mavasani ms.author: mavasani ms.topic: contributor-guide ms.service: learn ms.custom: external-contributor-guide -ms.date: 06/17/2025 +ms.date: 03/17/2026 --- -# Contribute docs for .NET code analysis rules to the .NET docs repository +# Contribute docs for .NET code analysis rules -.NET compiler platform (Roslyn) analyzers inspect your C# or Visual Basic code for code quality and code style issues. Starting in .NET 5.0, these analyzers are [included with the .NET SDK](/dotnet/fundamentals/code-analysis/overview). +.NET compiler platform (Roslyn) analyzers inspect your C# or Visual Basic code for code quality and code style issues. These analyzers are [included with the .NET SDK](/dotnet/fundamentals/code-analysis/overview). - [Code quality analysis ("CAxxxx" rules)](/dotnet/fundamentals/code-analysis/overview#code-quality-analysis): - - Implemented [here](https://github.com/dotnet/roslyn-analyzers/tree/main/src/NetAnalyzers) in `dotnet/roslyn-analyzers` repo. + - Implemented in the [dotnet/sdk](https://github.com/dotnet/sdk/tree/main/src/Microsoft.CodeAnalysis.NetAnalyzers) repo (previously implemented in `dotnet/roslyn-analyzers` repo). - Documented [here](https://github.com/dotnet/docs/blob/main/docs/fundamentals/code-analysis/quality-rules) in the `dotnet/docs` repo. See [Contribute docs for 'CAxxxx' rules](#contribute-docs-for-caxxxx-rules). - [Code style analysis ("IDExxxx" rules)](/dotnet/fundamentals/code-analysis/overview#code-style-analysis): - - Implemented [here](https://github.com/dotnet/roslyn/tree/main/src/Analyzers) in `dotnet/roslyn` repo. + - Implemented in the [dotnet/roslyn](https://github.com/dotnet/roslyn/tree/main/src/Analyzers) repo. - Documented [here](https://github.com/dotnet/docs/blob/main/docs/fundamentals/code-analysis/style-rules) in the `dotnet/docs` repo. See [Contribute docs for 'IDExxxx' rules](#contribute-docs-for-idexxxx-rules). ## Contribute docs for 'CAxxxx' rules Please follow the following steps to contribute documentation for code quality analysis rules to the [dotnet/docs](https://github.com/dotnet/docs) repo: -1. Determine `Rule ID` and `Category`: Ensure that you know the 'CAxxxx' rule ID and category for the rule to be documented. This means either your CA analyzer has been merged into [dotnet/roslyn-analyzers](https://github.com/dotnet/roslyn-analyzers) repo or you have an open PR with an approved ID and category that has been assigned to the rule. +1. Determine `Rule ID` and `Category`: Ensure that you know the 'CAxxxx' rule ID and category for the rule to be documented. This means either your CA analyzer has been merged into the [dotnet/sdk](https://github.com/dotnet/sdk) repo or you have an open PR with an approved ID and category that has been assigned to the rule. 2. Add rule doc: 1. Clone an existing CA rule file under [root](https://github.com/dotnet/docs/blob/main/docs/fundamentals/code-analysis/quality-rules) folder, say `ca1000.md`, and rename it. 2. Update the content of the file appropriately. From 8744e941b0eda1d4ca011a2e1dd39d54692e9b46 Mon Sep 17 00:00:00 2001 From: Genevieve Warren <24882762+gewarren@users.noreply.github.com> Date: Tue, 17 Mar 2026 14:26:53 -0700 Subject: [PATCH 2/9] Update Contribute/content/dotnet/code-analysis-rules.md --- Contribute/content/dotnet/code-analysis-rules.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Contribute/content/dotnet/code-analysis-rules.md b/Contribute/content/dotnet/code-analysis-rules.md index 5c29f306..f6896ca8 100644 --- a/Contribute/content/dotnet/code-analysis-rules.md +++ b/Contribute/content/dotnet/code-analysis-rules.md @@ -2,7 +2,7 @@ title: Contribute docs for .NET code analysis rules description: This article describes the process for contributing to the articles and code samples for .NET code analysis rules in the .NET docs repository. author: mavasani -ms.author: mavasani +ms.author: gewarren ms.topic: contributor-guide ms.service: learn ms.custom: external-contributor-guide From f3fb2145cb5ed9acd9f8e3eb3452212117218252 Mon Sep 17 00:00:00 2001 From: Genevieve Warren <24882762+gewarren@users.noreply.github.com> Date: Tue, 17 Mar 2026 14:45:40 -0700 Subject: [PATCH 3/9] add to toc --- .openpublishing.redirection.json | 2 +- Contribute/content/TOC.yml | 2 +- Contribute/index.yml | 19 +++++++++---------- 3 files changed, 11 insertions(+), 12 deletions(-) diff --git a/.openpublishing.redirection.json b/.openpublishing.redirection.json index bc9b3848..80ff2e70 100644 --- a/.openpublishing.redirection.json +++ b/.openpublishing.redirection.json @@ -13,7 +13,7 @@ }, { "source_path": "Contribute/content/dotnet/dotnet-contribute-code-analysis.md", - "redirect_url": "/contribute/dotnet/code-analysis-rules", + "redirect_url": "/contribute/content/dotnet/code-analysis-rules", "redirect_document_id": true }, { diff --git a/Contribute/content/TOC.yml b/Contribute/content/TOC.yml index 5b5d1266..0da618e5 100644 --- a/Contribute/content/TOC.yml +++ b/Contribute/content/TOC.yml @@ -102,7 +102,7 @@ - name: Pull request review process href: dotnet/dotnet-pr-review.md - name: Code analysis docs - href: dotnet/dotnet-contribute-code-analysis.md + href: dotnet/code-analysis-rules.md - name: Patterns and Practices (AAC, WAF, CAF) href: architecture-center/aac-contribute.md - name: PowerShell-Docs diff --git a/Contribute/index.yml b/Contribute/index.yml index 9ccd5fd5..7e22da1d 100644 --- a/Contribute/index.yml +++ b/Contribute/index.yml @@ -1,8 +1,7 @@ ### YamlMime:Marketing -### YamlMime:Marketing title: 'Experts Hub' metadata: - title: 'Experts Hub: Share what you know. Shape what’s next.' + title: "Experts Hub: Share what you know. Shape what's next." description: 'Share your knowledge with the world as a Microsoft expert!' sections: # hero with background image @@ -16,7 +15,7 @@ sections: src: media/experts-hub-long-format-400.png # top navigation links - componentType: navigation - size: large + size: large alignment: center blocks: - componentType: icon-link @@ -39,7 +38,7 @@ sections: questions: - question: Overview of this section answer: | - This section highlights high‑interest topics your audience is already searching for and talking about. Think of these as prime opportunities to create content that stands out and attracts learners who are actively looking for guidance. + This section highlights high-interest topics your audience is already searching for and talking about. Think of these as prime opportunities to create content that stands out and attracts learners who are actively looking for guidance. If a topic aligns with your expertise, jump in and turn it into content that showcases your voice and point of view. You might: @@ -67,7 +66,7 @@ sections: - Developer audiences are interested in building and remotely hosting MCP servers. [This episode](https://learn.microsoft.com/shows/azure-friday/host-remote-mcp-servers-on-azure-functions), led by Scott Hanselman and Lily Ma, demonstrates how to remotely host MCP servers on Azure Functions with official MCP SDKs. - Explore a [deep dive into the AKS MCP Server & Agentic CLI](https://www.youtube.com/watch?v=tEPfxO1FEMk) in January's AKS community call. - As more audiences build AI agents, they're looking to improve cost efficiency on Azure. [This learning path on maximizing AI agent ROI](https://learn.microsoft.com/training/paths/maximize-cost-efficiency-ai-agents/) offers strategies for cost-conscious decisions, ROI forecasting, and scalable architectures to optimize investments on Azure. - - question: AI for all levels of .NET developers + - question: AI for all levels of .NET developers answer: | Help .NET developers across multiple skill levels understand the foundations and opportunities for leveraging AI in their applications. - [Hands-on course](https://github.com/microsoft/Generative-AI-for-beginners-dotnet) and [accompanying video series](https://www.youtube.com/playlist?list=PLdo4fOcmZ0oUkPkWy9EtmBvFAjfp4ZHnx) on Generative AI fundamentals with .NET. @@ -82,7 +81,7 @@ sections: alt: A GitHub Copilot chat interaction with the Microsoft Learn MCP Server componentType: image - title: Content creation resources for the Microsoft Learn MCP Server - summary: A set of ready-to-use assets to help you accurately present, demo, and share the Microsoft Learn MCP Server with your audience. + summary: A set of ready-to-use assets to help you accurately present, demo, and share the Microsoft Learn MCP Server with your audience. componentType: text links: - componentType: link @@ -184,7 +183,7 @@ sections: title: Impactful opportunities happening now blocks: - componentType: summary-card - title: Contribute to awesome-azd + title: Contribute to awesome-azd summary: Share templates for using the Azure Developer CLI (azd) by contributing to the awesome-azd collection. url: https://github.com/azure/awesome-azd - componentType: summary-card @@ -193,7 +192,7 @@ sections: url: https://github.com/github/awesome-copilot - componentType: summary-card title: Join the Azure AI Foundry Discord community - summary: Join the Azure AI Foundry community to share your knowledge and connect with other AI experts and learners. + summary: Join the Azure AI Foundry community to share your knowledge and connect with other AI experts and learners. url: https://discord.com/invite/microsoftfoundry - componentType: summary-card title: Agent Creators @@ -260,7 +259,7 @@ sections: title: Connect with us links: - componentType: social-link - url: https://twitter.com/MicrosoftLearn + url: https://twitter.com/MicrosoftLearn destination: twitter - componentType: social-link url: https://www.linkedin.com/showcase/microsoftlearn/ @@ -269,5 +268,5 @@ sections: url: https://www.tiktok.com/@microsoftlearn destination: website - componentType: social-link - url: https://aka.ms/MicrosoftLearnNewsletter + url: https://aka.ms/MicrosoftLearnNewsletter destination: website From 7dbb327262aaf235dff7539e92ad78ada42e3dbb Mon Sep 17 00:00:00 2001 From: Genevieve Warren <24882762+gewarren@users.noreply.github.com> Date: Tue, 17 Mar 2026 15:06:49 -0700 Subject: [PATCH 4/9] remove bad link --- Contribute/index.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/Contribute/index.yml b/Contribute/index.yml index 7e22da1d..d0597fdb 100644 --- a/Contribute/index.yml +++ b/Contribute/index.yml @@ -52,7 +52,6 @@ sections: answer: | Grow your reputation on Microsoft Q&A by providing expert insights, clarification, and solutions on these trending topics: - - There's interest in understanding the differences between [Developer Command Prompt and Developer PowerShell in Visual Studio](https://learn.microsoft.com/answers/questions/5722678/what-are-the-different-between-developer-command-p). - Help Azure users [understand error codes](https://learn.microsoft.com/answers/questions/5562339/error-code-5000225-message-this-tenant-has-been-bl) related to managing [tenant lifecycles in Microsoft Entra](https://learn.microsoft.com/entra/fundamentals/inaccessible-tenant). - Learners want to understand how to use agents created from templates in Copilot Studio, such as the [Customer Insight template agent](https://learn.microsoft.com/answers/questions/5527396/an-agent-created-through-co-pilot-studio-is-not-ab). - question: 'Updates and tools for AI builders in Microsoft Foundry' From f1dcbcef2ab4e77738d13e397d58b90cff7fa63d Mon Sep 17 00:00:00 2001 From: sgaspari815 <104521440+sgaspari815@users.noreply.github.com> Date: Mon, 20 Apr 2026 21:01:33 -0700 Subject: [PATCH 5/9] April update for Experts Hub --- Contribute/index.yml | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/Contribute/index.yml b/Contribute/index.yml index d0597fdb..74d86826 100644 --- a/Contribute/index.yml +++ b/Contribute/index.yml @@ -52,25 +52,23 @@ sections: answer: | Grow your reputation on Microsoft Q&A by providing expert insights, clarification, and solutions on these trending topics: - - Help Azure users [understand error codes](https://learn.microsoft.com/answers/questions/5562339/error-code-5000225-message-this-tenant-has-been-bl) related to managing [tenant lifecycles in Microsoft Entra](https://learn.microsoft.com/entra/fundamentals/inaccessible-tenant). - - Learners want to understand how to use agents created from templates in Copilot Studio, such as the [Customer Insight template agent](https://learn.microsoft.com/answers/questions/5527396/an-agent-created-through-co-pilot-studio-is-not-ab). - - question: 'Updates and tools for AI builders in Microsoft Foundry' + - A Copilot user is seeing [Link generation issues in Excel](https://learn.microsoft.com/answers/questions/5707555/excel-copilot-is-generating-download-links-that-ha). + - Help a user solve [Conditional Access challenges](https://learn.microsoft.com/answers/questions/5602614/entra-conditional-access-issue) with Entra. + - Visual Studio users want to [resolve high memory usage issues](https://learn.microsoft.com/answers/questions/5744593/visual-studio-2026-uses-excessive-memory-(20gb-)-w). + - question: Copilot Cowork answer: | - - [Claude Opus 4.6 is now in Microsoft Foundry](https://azure.microsoft.com/en-us/blog/claude-opus-4-6-anthropics-powerful-model-for-coding-agents-and-enterprise-workflows-is-now-available-in-microsoft-foundry-on-azure/), enabling advanced reasoning for AI agents acting on business systems. - - For healthcare and life sciences applications, see [Claude's specialized capabilities with Foundry](https://www.microsoft.com/en-us/industry/blog/healthcare/2026/01/11/bridging-the-gap-between-ai-and-medicine-claude-in-microsoft-foundry-advances-capabilities-for-healthcare-and-life-sciences-customers/). - - Explore the [catalog of AI models from Foundry](https://ai.azure.com/catalog/models) and documentation on [Foundry Models sold directly by Azure](https://learn.microsoft.com/en-us/azure/ai-foundry/foundry-models/concepts/models-sold-directly-by-azure?view=foundry-classic&tabs=global-standard-aoai%2Cglobal-standard&pivots=azure-openai). Audiences want to understand how to leverage these models in their AI solutions. - - Check out a hands-on way to improve security posture and build customer trust in an agentic AI solution with [the AI Red Teaming agent in Microsoft Foundry](https://github.com/microsoft/aitour26-LTG156-safeguard-agentic-ai-solutions-with-ai-red-teaming-agent). - - question: Azure updates for developers + Copilot Cowork is a new capability in Microsoft 365 Copilot announced in March. It plans and carries out multi‑step tasks across emails, meetings, files, and apps, rather than only returning responses. It executes work through an explicit plan with checkpoints and approvals, allowing tasks to run while remaining within M365’s existing security and governance boundaries. It's now available to users in the [Frontier program](https://www.microsoft.com/microsoft-365/blog/2026/03/30/copilot-cowork-now-available-in-frontier/?msockid=0494b01f33f86ff500b3a51332d56e84). Check out the following resources to learn more before sharing with your audiences: + - Read the [announcement post](https://www.microsoft.com/microsoft-365/blog/2026/03/09/copilot-cowork-a-new-way-of-getting-work-done/?msockid=0494b01f33f86ff500b3a51332d56e84) introducing Copilot Cowork and describing how it enables Copilot to plan and execute tasks across M365. + - Check out a [short demo](https://www.youtube.com/watch?v=j8rHJsM3fxQ) of Copilot Cowork in action, including planning a [product launch and associated assets](https://www.youtube.com/watch?v=9uRuf7nB4cg) + - question: Azure migration resources answer: | - - Developer audiences are interested in building and remotely hosting MCP servers. [This episode](https://learn.microsoft.com/shows/azure-friday/host-remote-mcp-servers-on-azure-functions), led by Scott Hanselman and Lily Ma, demonstrates how to remotely host MCP servers on Azure Functions with official MCP SDKs. - - Explore a [deep dive into the AKS MCP Server & Agentic CLI](https://www.youtube.com/watch?v=tEPfxO1FEMk) in January's AKS community call. - - As more audiences build AI agents, they're looking to improve cost efficiency on Azure. [This learning path on maximizing AI agent ROI](https://learn.microsoft.com/training/paths/maximize-cost-efficiency-ai-agents/) offers strategies for cost-conscious decisions, ROI forecasting, and scalable architectures to optimize investments on Azure. - - question: AI for all levels of .NET developers + - This [Virtual Training Day session](https://www.youtube.com/watch?v=WaVISr34SSM) provides a detailed foundation to help audiences understand best practices for migrating and modernizing on Azure. + - For more scenario-specific and troubleshooting content, check out [this blog post on migration challenges and solutions](https://techcommunity.microsoft.com/blog/itopstalkblog/azure-migration-challenges-and-how-to-resolve-them/4499618). + - question: Copilot CLI for GitHub Copilot answer: | - Help .NET developers across multiple skill levels understand the foundations and opportunities for leveraging AI in their applications. - - [Hands-on course](https://github.com/microsoft/Generative-AI-for-beginners-dotnet) and [accompanying video series](https://www.youtube.com/playlist?list=PLdo4fOcmZ0oUkPkWy9EtmBvFAjfp4ZHnx) on Generative AI fundamentals with .NET. - - [Video overview of modernizing .NET apps with GitHub Copilot](https://www.youtube.com/watch?v=-YKguff5GY8). - - [Workshop for .NET developers](https://github.com/Azure-Samples/modernize-monolith-workshop) looking for hands‑on experience modernizing a legacy .NET Framework monolith using AI‑powered tools and GitHub Copilot agents. + Copilot CLI is a command‑line interface that brings Copilot assistance directly into the terminal, enabling developers to generate commands, scripts, and explanations using natural language. It’s designed to help developers work faster in the CLI without switching context to an editor or chat interface. + - Check out an [open source, hands-on course](https://github.com/github/copilot-cli-for-beginners) + - See video demos and additional beginner tutorials in a [YouTube playlist by GitHub](https://www.youtube.com/watch?v=BDxRhhs36ns&list=PL0lo9MOBetEHvO-spzKBAITkkTqv4RvNl) # bifold with image and text blocks - componentType: bifold From f981c7ec8ab047fcf462e9e995df1437f632ac21 Mon Sep 17 00:00:00 2001 From: Nick Walker Date: Mon, 20 Apr 2026 21:28:06 -0700 Subject: [PATCH 6/9] Update CODEOWNERS to remove a user Removed 'nickwalkmsft' from the default owners list. --- CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODEOWNERS b/CODEOWNERS index e9224ee0..ab68fd32 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -1,2 +1,2 @@ # These owners will be the default owners for everything in the repo. Unless a later match takes precedence -* @mikekinsman @jehchow @Kiranchandratrey @sgaspari815 @nickwalkmsft +* @mikekinsman @jehchow @Kiranchandratrey @sgaspari815 From 52eb53c568ccb4003c014e93b87b361d94ec8d67 Mon Sep 17 00:00:00 2001 From: sgaspari815 <104521440+sgaspari815@users.noreply.github.com> Date: Tue, 21 Apr 2026 06:31:22 -0700 Subject: [PATCH 7/9] Add Agent Governance Toolkit --- Contribute/index.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Contribute/index.yml b/Contribute/index.yml index 74d86826..6de63481 100644 --- a/Contribute/index.yml +++ b/Contribute/index.yml @@ -64,11 +64,17 @@ sections: answer: | - This [Virtual Training Day session](https://www.youtube.com/watch?v=WaVISr34SSM) provides a detailed foundation to help audiences understand best practices for migrating and modernizing on Azure. - For more scenario-specific and troubleshooting content, check out [this blog post on migration challenges and solutions](https://techcommunity.microsoft.com/blog/itopstalkblog/azure-migration-challenges-and-how-to-resolve-them/4499618). - - question: Copilot CLI for GitHub Copilot + - question: GitHub Copilot CLI answer: | Copilot CLI is a command‑line interface that brings Copilot assistance directly into the terminal, enabling developers to generate commands, scripts, and explanations using natural language. It’s designed to help developers work faster in the CLI without switching context to an editor or chat interface. - Check out an [open source, hands-on course](https://github.com/github/copilot-cli-for-beginners) - See video demos and additional beginner tutorials in a [YouTube playlist by GitHub](https://www.youtube.com/watch?v=BDxRhhs36ns&list=PL0lo9MOBetEHvO-spzKBAITkkTqv4RvNl) + - question: Agent Governance Toolkit (New) + answer: | + In April, Microsoft announced the Agent Governance Toolkit, a new, open-source runtime security toolkit designed to help agent builders govern what agents do at execution, using the tools they already work with. It was released under the Microsoft organization and MIT license, is framework-agnostic, and aligns to the OWASP Agentic AI Top 10. + - Review the announcement of the launch of the [Agent Governance Toolkit](https://opensource.microsoft.com/blog/2026/04/02/introducing-the-agent-governance-toolkit-open-source-runtime-security-for-ai-agents/). + - Dive into the full toolkit in [the open-source GitHub repo](https://github.com/microsoft/agent-governance-toolkit). + - Explore [Microsoft Agent Framework(MAF)](https://learn.microsoft.com/agent-framework/overview/?pivots=programming-language-csharp) to learn more about Microsoft's framework for building and orchestrating agents. The Agent Governance Toolkit can be used alongside MAF and other services. # bifold with image and text blocks - componentType: bifold From b365ab0d033f64976aa79dafeadeb98f0aad8ca5 Mon Sep 17 00:00:00 2001 From: sgaspari815 <104521440+sgaspari815@users.noreply.github.com> Date: Tue, 21 Apr 2026 09:59:54 -0700 Subject: [PATCH 8/9] Clean up --- Contribute/index.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Contribute/index.yml b/Contribute/index.yml index 6de63481..1ba70542 100644 --- a/Contribute/index.yml +++ b/Contribute/index.yml @@ -52,12 +52,12 @@ sections: answer: | Grow your reputation on Microsoft Q&A by providing expert insights, clarification, and solutions on these trending topics: - - A Copilot user is seeing [Link generation issues in Excel](https://learn.microsoft.com/answers/questions/5707555/excel-copilot-is-generating-download-links-that-ha). - - Help a user solve [Conditional Access challenges](https://learn.microsoft.com/answers/questions/5602614/entra-conditional-access-issue) with Entra. + - A Copilot user is seeing [link generation issues in Excel](https://learn.microsoft.com/answers/questions/5707555/excel-copilot-is-generating-download-links-that-ha). + - Help a user solve [conditional Access challenges](https://learn.microsoft.com/answers/questions/5602614/entra-conditional-access-issue) with Entra. - Visual Studio users want to [resolve high memory usage issues](https://learn.microsoft.com/answers/questions/5744593/visual-studio-2026-uses-excessive-memory-(20gb-)-w). - question: Copilot Cowork answer: | - Copilot Cowork is a new capability in Microsoft 365 Copilot announced in March. It plans and carries out multi‑step tasks across emails, meetings, files, and apps, rather than only returning responses. It executes work through an explicit plan with checkpoints and approvals, allowing tasks to run while remaining within M365’s existing security and governance boundaries. It's now available to users in the [Frontier program](https://www.microsoft.com/microsoft-365/blog/2026/03/30/copilot-cowork-now-available-in-frontier/?msockid=0494b01f33f86ff500b3a51332d56e84). Check out the following resources to learn more before sharing with your audiences: + Copilot Cowork is a new capability in Microsoft 365 Copilot, now available to users in the [Frontier program](https://www.microsoft.com/microsoft-365/blog/2026/03/30/copilot-cowork-now-available-in-frontier/?msockid=0494b01f33f86ff500b3a51332d56e84). It plans and carries out multi‑step tasks across emails, meetings, files, and apps, rather than only returning responses. It executes work through an explicit plan with checkpoints and approvals, allowing tasks to run while remaining within M365’s existing security and governance boundaries. Check out the following resources to help you share Cowork with your audiences: - Read the [announcement post](https://www.microsoft.com/microsoft-365/blog/2026/03/09/copilot-cowork-a-new-way-of-getting-work-done/?msockid=0494b01f33f86ff500b3a51332d56e84) introducing Copilot Cowork and describing how it enables Copilot to plan and execute tasks across M365. - Check out a [short demo](https://www.youtube.com/watch?v=j8rHJsM3fxQ) of Copilot Cowork in action, including planning a [product launch and associated assets](https://www.youtube.com/watch?v=9uRuf7nB4cg) - question: Azure migration resources @@ -67,11 +67,11 @@ sections: - question: GitHub Copilot CLI answer: | Copilot CLI is a command‑line interface that brings Copilot assistance directly into the terminal, enabling developers to generate commands, scripts, and explanations using natural language. It’s designed to help developers work faster in the CLI without switching context to an editor or chat interface. - - Check out an [open source, hands-on course](https://github.com/github/copilot-cli-for-beginners) - - See video demos and additional beginner tutorials in a [YouTube playlist by GitHub](https://www.youtube.com/watch?v=BDxRhhs36ns&list=PL0lo9MOBetEHvO-spzKBAITkkTqv4RvNl) - - question: Agent Governance Toolkit (New) + - Check out an [open-source, hands-on course](https://github.com/github/copilot-cli-for-beginners) + - See video demos and additional beginner tutorials in a [YouTube playlist created by GitHub](https://www.youtube.com/watch?v=BDxRhhs36ns&list=PL0lo9MOBetEHvO-spzKBAITkkTqv4RvNl) + - question: 'New: Agent Governance Toolkit' answer: | - In April, Microsoft announced the Agent Governance Toolkit, a new, open-source runtime security toolkit designed to help agent builders govern what agents do at execution, using the tools they already work with. It was released under the Microsoft organization and MIT license, is framework-agnostic, and aligns to the OWASP Agentic AI Top 10. + In April, Microsoft announced the Agent Governance Toolkit, a new, open-source runtime security toolkit designed to help agent builders govern what agents do at execution in the tools they already work with. It was released under the Microsoft organization and MIT license, is framework-agnostic, and aligns to the OWASP Agentic AI Top 10. - Review the announcement of the launch of the [Agent Governance Toolkit](https://opensource.microsoft.com/blog/2026/04/02/introducing-the-agent-governance-toolkit-open-source-runtime-security-for-ai-agents/). - Dive into the full toolkit in [the open-source GitHub repo](https://github.com/microsoft/agent-governance-toolkit). - Explore [Microsoft Agent Framework(MAF)](https://learn.microsoft.com/agent-framework/overview/?pivots=programming-language-csharp) to learn more about Microsoft's framework for building and orchestrating agents. The Agent Governance Toolkit can be used alongside MAF and other services. From 1daba18a9db9a65cc1be6e3053751fa787ff43b0 Mon Sep 17 00:00:00 2001 From: Sarah Gaspari <104521440+sgaspari815@users.noreply.github.com> Date: Wed, 22 Apr 2026 12:12:03 -0700 Subject: [PATCH 9/9] Update CODEOWNERS --- CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODEOWNERS b/CODEOWNERS index ab68fd32..0f2b1c33 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -1,2 +1,2 @@ # These owners will be the default owners for everything in the repo. Unless a later match takes precedence -* @mikekinsman @jehchow @Kiranchandratrey @sgaspari815 +* @mikekinsman @jehchow @Kiranchandratrey @sgaspari815 @kcpitt