Microsoft
Developer Blogs

Get the latest information, insights, and news from Microsoft.

Highlights

How to test agent skills without hitting real APIs

Your agent skill calls an API. The moment you start evaluating it, every run either costs money or mutates production data. Learn how to mock APIs transparently so you can run evals without changing your skill or hitting real endpoints.
Read moreClick to read more about this post

Latest posts

Jul 20, 2026
Post comments count0
Post likes count1

C++ Dependencies Without the Headache: vcpkg + Copilot CLI

Augustin Popa
At Pure Virtual C++ 2026, we build a C++ console app from an empty folder using CMake, MSVC, and GitHub Copilot CLI. This walkthrough shows a practical prompt sequence for dependency selection, reproducible builds, and controlled updates.
C++ Team Blog
Jul 20, 2026
Post comments count0
Post likes count0

Pure Virtual C++ 2026 Is Tomorrow and On-Demand Sessions Are Now Available

Marian Luparu
The on-demand sessions for Pure Virtual C++ 2026 are available now on YouTube. Watch seven talks on SPGO, vcpkg + Copilot CLI, CMake Tools, PackageReference, MSVC upgrades, and C++23/26 status — then join us live tomorrow.
C++ Team Blog
Jul 20, 2026
Post comments count0
Post likes count0

Announcing a New Visual Manifest Editor in the WinApp VS Code Extension

Chiara Mooney
The WinApp VS Code extension exists to make Windows app development feel at home in VS Code. It brings the Windows App Development CLI right into the editor, so you can initialize, run, debug, package, and sign Windows apps built with .NET, WPF, WinUI, C++, Electron, Rust, Tauri, or...
#ifdef Windows
Jul 20, 2026
Post comments count0
Post likes count1

T-SQL Hygiene: Introducing the Covering Index

Jerry Nixon
Often in applications, we write database queries. And often, the same query is executed again and again. To make queries against large tables faster, we can add an index. This is a general improvement for anyone accessing the table. However, there is a specially designed index called a...
Azure SQL Dev Corner
Jul 20, 2026
Post comments count0
Post likes count1

AI agents, meet the Azure Cosmos DB vNext emulator

Abhishek Gupta
If you use the Azure Cosmos DB vNext emulator, you probably know the local development loop: start the emulator, connect to it, create some resources, load test data, run queries, and inspect the results. Each step is straightforward, but together they add setup work before you can test...
Azure Cosmos DB Blog
Jul 20, 2026
Post comments count2
Post likes count1

Making an agile version of a Windows Runtime delegate in C++/WinRT, part 1

Raymond Chen
The easy case is easy.
The Old New Thing
Jul 17, 2026
Post comments count0
Post likes count1

Faster C++ iterative builds with GitHub Copilot

David Li
Slow builds are a consistent theme of feedback from C++ developers. We built GitHub Copilot build performance for Windows so you can leverage Copilot to optimize your project’s build times. This workflow will find optimizations that bring your build times down. At first, we only...
C++ Team Blog
Jul 17, 2026
Post comments count6
Post likes count3

Why has the display control panel pointer truncation bug gone unfixed for so long?

Raymond Chen
It's fixed, but the fix isn't getting there.
The Old New Thing
Jul 17, 2026
Post comments count0
Post likes count0

How to test agent skills without hitting real APIs

Waldek Mastykarz
Your agent skill calls an API. The moment you start evaluating it, every run either costs money or mutates production data. Learn how to mock APIs transparently so you can run evals without changing your skill or hitting real endpoints.
Microsoft for Developers