[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-microsoft-microsoft-opentelemetry-setup":3,"mdc-a51psr-key":36,"related-org-microsoft-microsoft-opentelemetry-setup":547,"related-repo-microsoft-microsoft-opentelemetry-setup":740},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":34,"mdContent":35},"microsoft-opentelemetry-setup","set up Microsoft OpenTelemetry in .NET","Set up Microsoft.OpenTelemetry distro in a new .NET application. Use when adding observability to an agent, ASP.NET Core app, console app, or Agent Framework project. Covers package installation, exporter configuration, token resolver setup, baggage context, and instrumentation options.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"microsoft","Microsoft","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fmicrosoft.png",[12,16,19,22,25],{"name":13,"slug":14,"type":15},"Observability","observability","tag",{"name":17,"slug":18,"type":15},"Monitoring","monitoring",{"name":20,"slug":21,"type":15},".NET","net",{"name":23,"slug":24,"type":15},"OpenTelemetry","opentelemetry",{"name":9,"slug":8,"type":15},1,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fopentelemetry-distro-dotnet","2026-07-03T16:31:50.418159",null,7,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":29},[],"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fopentelemetry-distro-dotnet\u002Ftree\u002FHEAD\u002Fskills\u002Fmicrosoft-opentelemetry-setup","---\nname: microsoft-opentelemetry-setup\ndescription: 'Set up Microsoft.OpenTelemetry distro in a new .NET application. Use when adding observability to an agent, ASP.NET Core app, console app, or Agent Framework project. Covers package installation, exporter configuration, token resolver setup, baggage context, and instrumentation options.'\n---\n\n# Microsoft OpenTelemetry Distro — Greenfield Setup\n\n## When to Use\n\n- User asks to \"add observability\" or \"add telemetry\" to a .NET app\n- User wants to set up Agent 365, Azure Monitor, or OTLP export\n- User is starting a new agent project and needs tracing\n- User asks about `Microsoft.OpenTelemetry` package\n\n## Procedure\n\n### 1. Detect App Type\n\nScan the project to determine the app type:\n- **ASP.NET Core** — has `WebApplication.CreateBuilder()` or `IHostApplicationBuilder` → use [hosted pattern](.\u002Freferences\u002Fgreenfield-aspnetcore.md)\n- **Console \u002F Background Service** — no web host, uses `OpenTelemetrySdk.Create()` → use [console pattern](.\u002Freferences\u002Fgreenfield-console.md)\n- **Agent Framework** — references `Microsoft.Agents.Builder` or `Microsoft.Agents.AI` → use [Agent Framework pattern](.\u002Freferences\u002Fgreenfield-agentframework.md)\n\n### 2. Install Package\n\nAdd to the project's `.csproj`:\n\n```xml\n\u003CPackageReference Include=\"Microsoft.OpenTelemetry\" Version=\"\u003Clatest>\" \u002F>\n```\n\nRemove any individual OpenTelemetry packages the distro replaces:\n- `OpenTelemetry.Extensions.Hosting`\n- `OpenTelemetry.Instrumentation.AspNetCore`\n- `OpenTelemetry.Instrumentation.Http`\n- `OpenTelemetry.Instrumentation.SqlClient`\n- `OpenTelemetry.Exporter.Console`\n- `OpenTelemetry.Exporter.OpenTelemetryProtocol`\n\n### 3. Configure Exporters\n\nSee [export targets reference](.\u002Freferences\u002Fexport-targets.md) for all options.\n\nMinimal setup in `Program.cs`:\n\n```csharp\nusing Microsoft.OpenTelemetry;\n\nbuilder.UseMicrosoftOpenTelemetry(o =>\n{\n    o.Exporters = ExportTarget.Console | ExportTarget.Agent365;\n});\n```\n\n### 4. Set Up Authentication\n\nSee [token resolver patterns](.\u002Freferences\u002Ftoken-resolver-patterns.md).\n\n- **Agent Framework apps**: No code needed — DI token cache auto-registers\n- **Custom apps**: Set `o.Agent365.TokenResolver`\n\n### 5. Add Baggage Context\n\nSee [baggage setup](.\u002Freferences\u002Fbaggage-setup.md).\n\nBaggage propagates tenant\u002Fagent identity to all child spans.\n\n### 6. Tune Instrumentation (optional)\n\nSee [instrumentation options](.\u002Freferences\u002Finstrumentation-options.md).\n\n### 7. Verify\n\n- Build the project\n- Run with `ExportTarget.Console` to see spans in stdout\n- Verify `gen_ai.agent.id` and `microsoft.tenant.id` appear on spans\n- See [troubleshooting](.\u002Freferences\u002Ftroubleshooting.md) if spans are missing\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,50,57,91,97,104,110,200,206,219,239,244,301,307,320,332,395,401,413,442,448,459,464,470,481,487,541],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"microsoft-opentelemetry-distro-greenfield-setup",[47],{"type":48,"value":49},"text","Microsoft OpenTelemetry Distro — Greenfield Setup",{"type":42,"tag":51,"props":52,"children":54},"h2",{"id":53},"when-to-use",[55],{"type":48,"value":56},"When to Use",{"type":42,"tag":58,"props":59,"children":60},"ul",{},[61,67,72,77],{"type":42,"tag":62,"props":63,"children":64},"li",{},[65],{"type":48,"value":66},"User asks to \"add observability\" or \"add telemetry\" to a .NET app",{"type":42,"tag":62,"props":68,"children":69},{},[70],{"type":48,"value":71},"User wants to set up Agent 365, Azure Monitor, or OTLP export",{"type":42,"tag":62,"props":73,"children":74},{},[75],{"type":48,"value":76},"User is starting a new agent project and needs tracing",{"type":42,"tag":62,"props":78,"children":79},{},[80,82,89],{"type":48,"value":81},"User asks about ",{"type":42,"tag":83,"props":84,"children":86},"code",{"className":85},[],[87],{"type":48,"value":88},"Microsoft.OpenTelemetry",{"type":48,"value":90}," package",{"type":42,"tag":51,"props":92,"children":94},{"id":93},"procedure",[95],{"type":48,"value":96},"Procedure",{"type":42,"tag":98,"props":99,"children":101},"h3",{"id":100},"_1-detect-app-type",[102],{"type":48,"value":103},"1. Detect App Type",{"type":42,"tag":105,"props":106,"children":107},"p",{},[108],{"type":48,"value":109},"Scan the project to determine the app type:",{"type":42,"tag":58,"props":111,"children":112},{},[113,147,170],{"type":42,"tag":62,"props":114,"children":115},{},[116,122,124,130,132,138,140],{"type":42,"tag":117,"props":118,"children":119},"strong",{},[120],{"type":48,"value":121},"ASP.NET Core",{"type":48,"value":123}," — has ",{"type":42,"tag":83,"props":125,"children":127},{"className":126},[],[128],{"type":48,"value":129},"WebApplication.CreateBuilder()",{"type":48,"value":131}," or ",{"type":42,"tag":83,"props":133,"children":135},{"className":134},[],[136],{"type":48,"value":137},"IHostApplicationBuilder",{"type":48,"value":139}," → use ",{"type":42,"tag":141,"props":142,"children":144},"a",{"href":143},".\u002Freferences\u002Fgreenfield-aspnetcore.md",[145],{"type":48,"value":146},"hosted pattern",{"type":42,"tag":62,"props":148,"children":149},{},[150,155,157,163,164],{"type":42,"tag":117,"props":151,"children":152},{},[153],{"type":48,"value":154},"Console \u002F Background Service",{"type":48,"value":156}," — no web host, uses ",{"type":42,"tag":83,"props":158,"children":160},{"className":159},[],[161],{"type":48,"value":162},"OpenTelemetrySdk.Create()",{"type":48,"value":139},{"type":42,"tag":141,"props":165,"children":167},{"href":166},".\u002Freferences\u002Fgreenfield-console.md",[168],{"type":48,"value":169},"console pattern",{"type":42,"tag":62,"props":171,"children":172},{},[173,178,180,186,187,193,194],{"type":42,"tag":117,"props":174,"children":175},{},[176],{"type":48,"value":177},"Agent Framework",{"type":48,"value":179}," — references ",{"type":42,"tag":83,"props":181,"children":183},{"className":182},[],[184],{"type":48,"value":185},"Microsoft.Agents.Builder",{"type":48,"value":131},{"type":42,"tag":83,"props":188,"children":190},{"className":189},[],[191],{"type":48,"value":192},"Microsoft.Agents.AI",{"type":48,"value":139},{"type":42,"tag":141,"props":195,"children":197},{"href":196},".\u002Freferences\u002Fgreenfield-agentframework.md",[198],{"type":48,"value":199},"Agent Framework pattern",{"type":42,"tag":98,"props":201,"children":203},{"id":202},"_2-install-package",[204],{"type":48,"value":205},"2. Install Package",{"type":42,"tag":105,"props":207,"children":208},{},[209,211,217],{"type":48,"value":210},"Add to the project's ",{"type":42,"tag":83,"props":212,"children":214},{"className":213},[],[215],{"type":48,"value":216},".csproj",{"type":48,"value":218},":",{"type":42,"tag":220,"props":221,"children":226},"pre",{"className":222,"code":223,"language":224,"meta":225,"style":225},"language-xml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003CPackageReference Include=\"Microsoft.OpenTelemetry\" Version=\"\u003Clatest>\" \u002F>\n","xml","",[227],{"type":42,"tag":83,"props":228,"children":229},{"__ignoreMap":225},[230],{"type":42,"tag":231,"props":232,"children":234},"span",{"class":233,"line":26},"line",[235],{"type":42,"tag":231,"props":236,"children":237},{},[238],{"type":48,"value":223},{"type":42,"tag":105,"props":240,"children":241},{},[242],{"type":48,"value":243},"Remove any individual OpenTelemetry packages the distro replaces:",{"type":42,"tag":58,"props":245,"children":246},{},[247,256,265,274,283,292],{"type":42,"tag":62,"props":248,"children":249},{},[250],{"type":42,"tag":83,"props":251,"children":253},{"className":252},[],[254],{"type":48,"value":255},"OpenTelemetry.Extensions.Hosting",{"type":42,"tag":62,"props":257,"children":258},{},[259],{"type":42,"tag":83,"props":260,"children":262},{"className":261},[],[263],{"type":48,"value":264},"OpenTelemetry.Instrumentation.AspNetCore",{"type":42,"tag":62,"props":266,"children":267},{},[268],{"type":42,"tag":83,"props":269,"children":271},{"className":270},[],[272],{"type":48,"value":273},"OpenTelemetry.Instrumentation.Http",{"type":42,"tag":62,"props":275,"children":276},{},[277],{"type":42,"tag":83,"props":278,"children":280},{"className":279},[],[281],{"type":48,"value":282},"OpenTelemetry.Instrumentation.SqlClient",{"type":42,"tag":62,"props":284,"children":285},{},[286],{"type":42,"tag":83,"props":287,"children":289},{"className":288},[],[290],{"type":48,"value":291},"OpenTelemetry.Exporter.Console",{"type":42,"tag":62,"props":293,"children":294},{},[295],{"type":42,"tag":83,"props":296,"children":298},{"className":297},[],[299],{"type":48,"value":300},"OpenTelemetry.Exporter.OpenTelemetryProtocol",{"type":42,"tag":98,"props":302,"children":304},{"id":303},"_3-configure-exporters",[305],{"type":48,"value":306},"3. Configure Exporters",{"type":42,"tag":105,"props":308,"children":309},{},[310,312,318],{"type":48,"value":311},"See ",{"type":42,"tag":141,"props":313,"children":315},{"href":314},".\u002Freferences\u002Fexport-targets.md",[316],{"type":48,"value":317},"export targets reference",{"type":48,"value":319}," for all options.",{"type":42,"tag":105,"props":321,"children":322},{},[323,325,331],{"type":48,"value":324},"Minimal setup in ",{"type":42,"tag":83,"props":326,"children":328},{"className":327},[],[329],{"type":48,"value":330},"Program.cs",{"type":48,"value":218},{"type":42,"tag":220,"props":333,"children":337},{"className":334,"code":335,"language":336,"meta":225,"style":225},"language-csharp shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","using Microsoft.OpenTelemetry;\n\nbuilder.UseMicrosoftOpenTelemetry(o =>\n{\n    o.Exporters = ExportTarget.Console | ExportTarget.Agent365;\n});\n","csharp",[338],{"type":42,"tag":83,"props":339,"children":340},{"__ignoreMap":225},[341,349,359,368,377,386],{"type":42,"tag":231,"props":342,"children":343},{"class":233,"line":26},[344],{"type":42,"tag":231,"props":345,"children":346},{},[347],{"type":48,"value":348},"using Microsoft.OpenTelemetry;\n",{"type":42,"tag":231,"props":350,"children":352},{"class":233,"line":351},2,[353],{"type":42,"tag":231,"props":354,"children":356},{"emptyLinePlaceholder":355},true,[357],{"type":48,"value":358},"\n",{"type":42,"tag":231,"props":360,"children":362},{"class":233,"line":361},3,[363],{"type":42,"tag":231,"props":364,"children":365},{},[366],{"type":48,"value":367},"builder.UseMicrosoftOpenTelemetry(o =>\n",{"type":42,"tag":231,"props":369,"children":371},{"class":233,"line":370},4,[372],{"type":42,"tag":231,"props":373,"children":374},{},[375],{"type":48,"value":376},"{\n",{"type":42,"tag":231,"props":378,"children":380},{"class":233,"line":379},5,[381],{"type":42,"tag":231,"props":382,"children":383},{},[384],{"type":48,"value":385},"    o.Exporters = ExportTarget.Console | ExportTarget.Agent365;\n",{"type":42,"tag":231,"props":387,"children":389},{"class":233,"line":388},6,[390],{"type":42,"tag":231,"props":391,"children":392},{},[393],{"type":48,"value":394},"});\n",{"type":42,"tag":98,"props":396,"children":398},{"id":397},"_4-set-up-authentication",[399],{"type":48,"value":400},"4. Set Up Authentication",{"type":42,"tag":105,"props":402,"children":403},{},[404,405,411],{"type":48,"value":311},{"type":42,"tag":141,"props":406,"children":408},{"href":407},".\u002Freferences\u002Ftoken-resolver-patterns.md",[409],{"type":48,"value":410},"token resolver patterns",{"type":48,"value":412},".",{"type":42,"tag":58,"props":414,"children":415},{},[416,426],{"type":42,"tag":62,"props":417,"children":418},{},[419,424],{"type":42,"tag":117,"props":420,"children":421},{},[422],{"type":48,"value":423},"Agent Framework apps",{"type":48,"value":425},": No code needed — DI token cache auto-registers",{"type":42,"tag":62,"props":427,"children":428},{},[429,434,436],{"type":42,"tag":117,"props":430,"children":431},{},[432],{"type":48,"value":433},"Custom apps",{"type":48,"value":435},": Set ",{"type":42,"tag":83,"props":437,"children":439},{"className":438},[],[440],{"type":48,"value":441},"o.Agent365.TokenResolver",{"type":42,"tag":98,"props":443,"children":445},{"id":444},"_5-add-baggage-context",[446],{"type":48,"value":447},"5. Add Baggage Context",{"type":42,"tag":105,"props":449,"children":450},{},[451,452,458],{"type":48,"value":311},{"type":42,"tag":141,"props":453,"children":455},{"href":454},".\u002Freferences\u002Fbaggage-setup.md",[456],{"type":48,"value":457},"baggage setup",{"type":48,"value":412},{"type":42,"tag":105,"props":460,"children":461},{},[462],{"type":48,"value":463},"Baggage propagates tenant\u002Fagent identity to all child spans.",{"type":42,"tag":98,"props":465,"children":467},{"id":466},"_6-tune-instrumentation-optional",[468],{"type":48,"value":469},"6. Tune Instrumentation (optional)",{"type":42,"tag":105,"props":471,"children":472},{},[473,474,480],{"type":48,"value":311},{"type":42,"tag":141,"props":475,"children":477},{"href":476},".\u002Freferences\u002Finstrumentation-options.md",[478],{"type":48,"value":479},"instrumentation options",{"type":48,"value":412},{"type":42,"tag":98,"props":482,"children":484},{"id":483},"_7-verify",[485],{"type":48,"value":486},"7. Verify",{"type":42,"tag":58,"props":488,"children":489},{},[490,495,508,529],{"type":42,"tag":62,"props":491,"children":492},{},[493],{"type":48,"value":494},"Build the project",{"type":42,"tag":62,"props":496,"children":497},{},[498,500,506],{"type":48,"value":499},"Run with ",{"type":42,"tag":83,"props":501,"children":503},{"className":502},[],[504],{"type":48,"value":505},"ExportTarget.Console",{"type":48,"value":507}," to see spans in stdout",{"type":42,"tag":62,"props":509,"children":510},{},[511,513,519,521,527],{"type":48,"value":512},"Verify ",{"type":42,"tag":83,"props":514,"children":516},{"className":515},[],[517],{"type":48,"value":518},"gen_ai.agent.id",{"type":48,"value":520}," and ",{"type":42,"tag":83,"props":522,"children":524},{"className":523},[],[525],{"type":48,"value":526},"microsoft.tenant.id",{"type":48,"value":528}," appear on spans",{"type":42,"tag":62,"props":530,"children":531},{},[532,533,539],{"type":48,"value":311},{"type":42,"tag":141,"props":534,"children":536},{"href":535},".\u002Freferences\u002Ftroubleshooting.md",[537],{"type":48,"value":538},"troubleshooting",{"type":48,"value":540}," if spans are missing",{"type":42,"tag":542,"props":543,"children":544},"style",{},[545],{"type":48,"value":546},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":548,"total":739},[549,571,590,609,624,641,652,665,680,695,714,727],{"slug":550,"name":550,"fn":551,"description":552,"org":553,"tags":554,"stars":568,"repoUrl":569,"updatedAt":570},"rushstack-best-practices","manage Rush monorepos with best practices","Provides best practices and guidance for working with Rush monorepos. Use when the user is working in a Rush-based repository, asks about Rush commands (install, update, build, rebuild), needs help with project selection, dependency management, build caching, subspace configuration, or troubleshooting Rush-specific issues.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[555,558,561,562,565],{"name":556,"slug":557,"type":15},"Engineering","engineering",{"name":559,"slug":560,"type":15},"Local Development","local-development",{"name":9,"slug":8,"type":15},{"name":563,"slug":564,"type":15},"Project Management","project-management",{"name":566,"slug":567,"type":15},"Rush","rush",6484,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Frushstack","2026-04-06T18:34:44.965032",{"slug":572,"name":572,"fn":573,"description":574,"org":575,"tags":576,"stars":587,"repoUrl":588,"updatedAt":589},"azure-ai-agents-persistent-dotnet","build AI agents with Azure .NET SDK","Azure AI Agents Persistent SDK for .NET. Low-level SDK for creating and managing AI agents with threads, messages, runs, and tools. Use for agent CRUD, conversation threads, streaming responses, function calling, file search, and code interpreter. Triggers: \"PersistentAgentsClient\", \"persistent agents\", \"agent threads\", \"agent runs\", \"streaming agents\", \"function calling agents .NET\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[577,578,581,584],{"name":20,"slug":21,"type":15},{"name":579,"slug":580,"type":15},"Agents","agents",{"name":582,"slug":583,"type":15},"Azure","azure",{"name":585,"slug":586,"type":15},"LLM","llm",2804,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fskills","2026-07-03T16:32:10.297433",{"slug":591,"name":591,"fn":592,"description":593,"org":594,"tags":595,"stars":587,"repoUrl":588,"updatedAt":608},"azure-ai-anomalydetector-java","build anomaly detection applications with Java","Build anomaly detection applications with Azure AI Anomaly Detector SDK for Java. Use when implementing univariate\u002Fmultivariate anomaly detection, time-series analysis, or AI-powered monitoring.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[596,599,600,603,606,607],{"name":597,"slug":598,"type":15},"Analytics","analytics",{"name":582,"slug":583,"type":15},{"name":601,"slug":602,"type":15},"Data Analysis","data-analysis",{"name":604,"slug":605,"type":15},"Java","java",{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},"2026-05-13T06:14:16.261754",{"slug":610,"name":610,"fn":611,"description":612,"org":613,"tags":614,"stars":587,"repoUrl":588,"updatedAt":623},"azure-ai-contentsafety-java","build content moderation applications with Azure AI","Build content moderation applications with Azure AI Content Safety SDK for Java. Use when implementing text\u002Fimage analysis, blocklist management, or harm detection for hate, violence, sexual content, and self-harm.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[615,618,619,620],{"name":616,"slug":617,"type":15},"AI Infrastructure","ai-infrastructure",{"name":582,"slug":583,"type":15},{"name":604,"slug":605,"type":15},{"name":621,"slug":622,"type":15},"Security","security","2026-07-07T06:53:31.293235",{"slug":625,"name":625,"fn":626,"description":627,"org":628,"tags":629,"stars":587,"repoUrl":588,"updatedAt":640},"azure-ai-contentsafety-py","detect harmful content with Azure AI Content Safety","Azure AI Content Safety SDK for Python. Use for detecting harmful content in text and images with multi-severity classification.\nTriggers: \"azure-ai-contentsafety\", \"ContentSafetyClient\", \"content moderation\", \"harmful content\", \"text analysis\", \"image analysis\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[630,631,634,635,636,639],{"name":582,"slug":583,"type":15},{"name":632,"slug":633,"type":15},"Compliance","compliance",{"name":585,"slug":586,"type":15},{"name":9,"slug":8,"type":15},{"name":637,"slug":638,"type":15},"Python","python",{"name":621,"slug":622,"type":15},"2026-07-18T05:14:23.017504",{"slug":642,"name":642,"fn":643,"description":644,"org":645,"tags":646,"stars":587,"repoUrl":588,"updatedAt":651},"azure-ai-language-conversations-py","implement conversational language understanding with Python","Implement Conversational Language Understanding (CLU) using the azure-ai-language-conversations Python SDK. Use when working with ConversationAnalysisClient to analyze conversation intent and entities, building NLP features, or integrating language understanding into applications.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[647,648,649,650],{"name":597,"slug":598,"type":15},{"name":582,"slug":583,"type":15},{"name":585,"slug":586,"type":15},{"name":637,"slug":638,"type":15},"2026-07-31T05:54:29.068751",{"slug":653,"name":653,"fn":654,"description":655,"org":656,"tags":657,"stars":587,"repoUrl":588,"updatedAt":664},"azure-ai-translation-text-py","translate text using Azure AI services","Azure AI Text Translation SDK for real-time text translation, transliteration, language detection, and dictionary lookup. Use for translating text content in applications.\nTriggers: \"text translation\", \"translator\", \"translate text\", \"transliterate\", \"TextTranslationClient\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[658,661,662,663],{"name":659,"slug":660,"type":15},"API Development","api-development",{"name":582,"slug":583,"type":15},{"name":9,"slug":8,"type":15},{"name":637,"slug":638,"type":15},"2026-07-18T05:14:16.988376",{"slug":666,"name":666,"fn":667,"description":668,"org":669,"tags":670,"stars":587,"repoUrl":588,"updatedAt":679},"azure-ai-vision-imageanalysis-py","analyze images with Azure AI Vision","Azure AI Vision Image Analysis SDK for captions, tags, objects, OCR, people detection, and smart cropping. Use for computer vision and image understanding tasks.\nTriggers: \"image analysis\", \"computer vision\", \"OCR\", \"object detection\", \"ImageAnalysisClient\", \"image caption\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[671,672,675,678],{"name":582,"slug":583,"type":15},{"name":673,"slug":674,"type":15},"Computer Vision","computer-vision",{"name":676,"slug":677,"type":15},"Images","images",{"name":637,"slug":638,"type":15},"2026-07-18T05:14:18.007737",{"slug":681,"name":681,"fn":682,"description":683,"org":684,"tags":685,"stars":587,"repoUrl":588,"updatedAt":694},"azure-appconfiguration-java","manage configuration with Azure App Configuration","Azure App Configuration SDK for Java. Centralized application configuration management with key-value settings, feature flags, and snapshots.\nTriggers: \"ConfigurationClient java\", \"app configuration java\", \"feature flag java\", \"configuration setting java\", \"azure config java\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[686,687,690,693],{"name":582,"slug":583,"type":15},{"name":688,"slug":689,"type":15},"Configuration","configuration",{"name":691,"slug":692,"type":15},"Feature Flags","feature-flags",{"name":604,"slug":605,"type":15},"2026-07-03T16:32:01.278468",{"slug":696,"name":696,"fn":697,"description":698,"org":699,"tags":700,"stars":587,"repoUrl":588,"updatedAt":713},"azure-cosmos-rust","build applications with Azure Cosmos DB","Azure Cosmos DB library for Rust (NoSQL API). Document CRUD, containers, and globally distributed data.\nTriggers: \"cosmos db rust\", \"CosmosClient rust\", \"document crud rust\", \"NoSQL rust\", \"partition key rust\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[701,704,707,710],{"name":702,"slug":703,"type":15},"Cosmos DB","cosmos-db",{"name":705,"slug":706,"type":15},"Database","database",{"name":708,"slug":709,"type":15},"NoSQL","nosql",{"name":711,"slug":712,"type":15},"Rust","rust","2026-07-31T05:54:27.021432",{"slug":715,"name":715,"fn":697,"description":716,"org":717,"tags":718,"stars":587,"repoUrl":588,"updatedAt":726},"azure-cosmos-ts","Azure Cosmos DB JavaScript\u002FTypeScript SDK (@azure\u002Fcosmos) for data plane operations. Use for CRUD operations on documents, queries, bulk operations, and container management. Triggers: \"Cosmos DB\", \"@azure\u002Fcosmos\", \"CosmosClient\", \"document CRUD\", \"NoSQL queries\", \"bulk operations\", \"partition key\", \"container.items\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[719,720,721,722,723],{"name":702,"slug":703,"type":15},{"name":705,"slug":706,"type":15},{"name":9,"slug":8,"type":15},{"name":708,"slug":709,"type":15},{"name":724,"slug":725,"type":15},"TypeScript","typescript","2026-07-03T16:31:19.368382",{"slug":728,"name":728,"fn":729,"description":730,"org":731,"tags":732,"stars":587,"repoUrl":588,"updatedAt":738},"azure-data-tables-java","build table storage applications with Java","Build table storage applications with Azure Tables SDK for Java. Use when working with Azure Table Storage or Cosmos DB Table API for NoSQL key-value data, schemaless storage, or structured data at scale.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[733,734,735,736,737],{"name":582,"slug":583,"type":15},{"name":702,"slug":703,"type":15},{"name":705,"slug":706,"type":15},{"name":604,"slug":605,"type":15},{"name":708,"slug":709,"type":15},"2026-05-13T06:14:17.582229",267,{"items":741,"total":351},[742,756],{"slug":743,"name":743,"fn":744,"description":745,"org":746,"tags":747,"stars":26,"repoUrl":27,"updatedAt":755},"microsoft-opentelemetry-migration","migrate to Microsoft OpenTelemetry distro","Migrate from A365 Observability SDK to Microsoft.OpenTelemetry distro. Use when converting an existing agent that uses Microsoft.Agents.A365.Observability packages to the unified distro. Covers package swap, API mapping, Program.cs rewrite, token resolver migration, and validation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[748,749,750,753,754],{"name":20,"slug":21,"type":15},{"name":9,"slug":8,"type":15},{"name":751,"slug":752,"type":15},"Migration","migration",{"name":13,"slug":14,"type":15},{"name":23,"slug":24,"type":15},"2026-07-03T16:31:49.149237",{"slug":4,"name":4,"fn":5,"description":6,"org":757,"tags":758,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[759,760,761,762,763],{"name":20,"slug":21,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":23,"slug":24,"type":15}]