[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-azure-foundry-web-search":3,"mdc--sfawbw-key":49,"related-repo-azure-foundry-web-search":407,"related-org-azure-foundry-web-search":519},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":21,"repoUrl":22,"updatedAt":23,"license":24,"forks":25,"topics":26,"repo":44,"sourceUrl":47,"mdContent":48},"foundry-web-search","search the web with Azure Foundry","Real-time web search via Azure AI Foundry Responses API with bing_grounding tool. Get current information with citations — no egress policy needed.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"azure","Azure (Microsoft)","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fazure.png","Azure",[13,17,18],{"name":14,"slug":15,"type":16},"Research","research","tag",{"name":11,"slug":8,"type":16},{"name":19,"slug":20,"type":16},"Search","search",28,"https:\u002F\u002Fgithub.com\u002FAzure\u002Fkars","2026-07-12T08:18:37.139595",null,2,[27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43],"agent","agentic-framework","agentmesh","ai-agent","ai-agents-automation","ai-sandbox","end-to-end-encryption","hermes","hermes-agent","kubernetes","kubernetes-sandbox","microsoft","openclaw","reference","runtime-security","sandbox","zero-trust",{"repoUrl":22,"stars":21,"forks":25,"topics":45,"description":46},[27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43],"Agent Reference Stack for Kubernetes (kars) - an open source stack from Microsoft for running AI agents safely on Kubernetes. Multi-runtime, Foundry-aware, hardened per-agent sandboxes, governed egress, end-to-end encrypted inter-agent mesh.","https:\u002F\u002Fgithub.com\u002FAzure\u002Fkars\u002Ftree\u002FHEAD\u002Fruntimes\u002Fopenclaw\u002Fskills\u002Ffoundry-web-search","---\nname: foundry-web-search\ndescription: Real-time web search via Azure AI Foundry Responses API with bing_grounding tool. Get current information with citations — no egress policy needed.\nmetadata: {\"openclaw\": {\"requires\": {\"env\": [\"FOUNDRY_PROJECT_ENDPOINT\"]}, \"primaryEnv\": \"FOUNDRY_PROJECT_ENDPOINT\"}}\n---\n\n# Foundry Web Search — Bing Grounding (Responses API)\n\nYou have access to real-time web search via the Foundry Responses API `bing_grounding` tool. Results come with inline URL citations. No sandbox egress policy exceptions needed — search runs server-side.\n\n**Note:** Requires a Bing Grounding connection configured in the Foundry project. If not available, the model will answer from its training data instead.\n\n## Endpoint\n\nAll requests: `http:\u002F\u002Flocalhost:8443` with `?api-version=2025-11-15-preview`. Auth is automatic.\n\n## Operations\n\n### Search the web\n\n```bash\ncurl -s -X POST 'http:\u002F\u002Flocalhost:8443\u002Fopenai\u002Fresponses?api-version=2025-11-15-preview' \\\n  -H 'Content-Type: application\u002Fjson' \\\n  -d '{\"model\":\"gpt-4.1\",\"input\":\"What are the latest Azure AI Foundry announcements?\",\"tools\":[{\"type\":\"bing_grounding\",\"bing_grounding\":{\"search_configurations\":[{\"project_connection_id\":\"AUTO_DISCOVERED_AT_RUNTIME\"}]}}],\"store\":false}'\n```\n\nThe response includes the answer with inline URL citations.\n\n### Simple search (no Bing connection needed)\n\nIf Bing is not configured, use plain chat — the model answers from training data:\n\n```bash\ncurl -s -X POST 'http:\u002F\u002Flocalhost:8443\u002Fv1\u002Fchat\u002Fcompletions' \\\n  -H 'Content-Type: application\u002Fjson' \\\n  -d '{\"model\":\"gpt-4.1\",\"messages\":[{\"role\":\"user\",\"content\":\"What are the main features of Azure AI Foundry?\"}]}'\n```\n\n## When to use\n\n- User asks about current events, news, recent changes\n- Need real-time data: weather, stock prices, sports scores\n- Verifying facts with web sources\n- User says \"search the web\", \"look up\", \"what's the latest\"\n\n## When NOT to use\n\n- For information in uploaded documents (use foundry-knowledge)\n- For calculations or data analysis (use foundry-code)\n- For recalling previous conversations (use foundry-memory)\n",{"data":50,"body":56},{"name":4,"description":6,"metadata":51},{"openclaw":52},{"requires":53,"primaryEnv":55},{"env":54},[55],"FOUNDRY_PROJECT_ENDPOINT",{"type":57,"children":58},"root",[59,68,83,94,101,122,128,135,244,249,255,260,346,352,377,383,401],{"type":60,"tag":61,"props":62,"children":64},"element","h1",{"id":63},"foundry-web-search-bing-grounding-responses-api",[65],{"type":66,"value":67},"text","Foundry Web Search — Bing Grounding (Responses API)",{"type":60,"tag":69,"props":70,"children":71},"p",{},[72,74,81],{"type":66,"value":73},"You have access to real-time web search via the Foundry Responses API ",{"type":60,"tag":75,"props":76,"children":78},"code",{"className":77},[],[79],{"type":66,"value":80},"bing_grounding",{"type":66,"value":82}," tool. Results come with inline URL citations. No sandbox egress policy exceptions needed — search runs server-side.",{"type":60,"tag":69,"props":84,"children":85},{},[86,92],{"type":60,"tag":87,"props":88,"children":89},"strong",{},[90],{"type":66,"value":91},"Note:",{"type":66,"value":93}," Requires a Bing Grounding connection configured in the Foundry project. If not available, the model will answer from its training data instead.",{"type":60,"tag":95,"props":96,"children":98},"h2",{"id":97},"endpoint",[99],{"type":66,"value":100},"Endpoint",{"type":60,"tag":69,"props":102,"children":103},{},[104,106,112,114,120],{"type":66,"value":105},"All requests: ",{"type":60,"tag":75,"props":107,"children":109},{"className":108},[],[110],{"type":66,"value":111},"http:\u002F\u002Flocalhost:8443",{"type":66,"value":113}," with ",{"type":60,"tag":75,"props":115,"children":117},{"className":116},[],[118],{"type":66,"value":119},"?api-version=2025-11-15-preview",{"type":66,"value":121},". Auth is automatic.",{"type":60,"tag":95,"props":123,"children":125},{"id":124},"operations",[126],{"type":66,"value":127},"Operations",{"type":60,"tag":129,"props":130,"children":132},"h3",{"id":131},"search-the-web",[133],{"type":66,"value":134},"Search the web",{"type":60,"tag":136,"props":137,"children":142},"pre",{"className":138,"code":139,"language":140,"meta":141,"style":141},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","curl -s -X POST 'http:\u002F\u002Flocalhost:8443\u002Fopenai\u002Fresponses?api-version=2025-11-15-preview' \\\n  -H 'Content-Type: application\u002Fjson' \\\n  -d '{\"model\":\"gpt-4.1\",\"input\":\"What are the latest Azure AI Foundry announcements?\",\"tools\":[{\"type\":\"bing_grounding\",\"bing_grounding\":{\"search_configurations\":[{\"project_connection_id\":\"AUTO_DISCOVERED_AT_RUNTIME\"}]}}],\"store\":false}'\n","bash","",[143],{"type":60,"tag":75,"props":144,"children":145},{"__ignoreMap":141},[146,196,221],{"type":60,"tag":147,"props":148,"children":151},"span",{"class":149,"line":150},"line",1,[152,158,164,169,174,180,185,190],{"type":60,"tag":147,"props":153,"children":155},{"style":154},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[156],{"type":66,"value":157},"curl",{"type":60,"tag":147,"props":159,"children":161},{"style":160},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[162],{"type":66,"value":163}," -s",{"type":60,"tag":147,"props":165,"children":166},{"style":160},[167],{"type":66,"value":168}," -X",{"type":60,"tag":147,"props":170,"children":171},{"style":160},[172],{"type":66,"value":173}," POST",{"type":60,"tag":147,"props":175,"children":177},{"style":176},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[178],{"type":66,"value":179}," '",{"type":60,"tag":147,"props":181,"children":182},{"style":160},[183],{"type":66,"value":184},"http:\u002F\u002Flocalhost:8443\u002Fopenai\u002Fresponses?api-version=2025-11-15-preview",{"type":60,"tag":147,"props":186,"children":187},{"style":176},[188],{"type":66,"value":189},"'",{"type":60,"tag":147,"props":191,"children":193},{"style":192},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[194],{"type":66,"value":195}," \\\n",{"type":60,"tag":147,"props":197,"children":198},{"class":149,"line":25},[199,204,208,213,217],{"type":60,"tag":147,"props":200,"children":201},{"style":160},[202],{"type":66,"value":203},"  -H",{"type":60,"tag":147,"props":205,"children":206},{"style":176},[207],{"type":66,"value":179},{"type":60,"tag":147,"props":209,"children":210},{"style":160},[211],{"type":66,"value":212},"Content-Type: application\u002Fjson",{"type":60,"tag":147,"props":214,"children":215},{"style":176},[216],{"type":66,"value":189},{"type":60,"tag":147,"props":218,"children":219},{"style":192},[220],{"type":66,"value":195},{"type":60,"tag":147,"props":222,"children":224},{"class":149,"line":223},3,[225,230,234,239],{"type":60,"tag":147,"props":226,"children":227},{"style":160},[228],{"type":66,"value":229},"  -d",{"type":60,"tag":147,"props":231,"children":232},{"style":176},[233],{"type":66,"value":179},{"type":60,"tag":147,"props":235,"children":236},{"style":160},[237],{"type":66,"value":238},"{\"model\":\"gpt-4.1\",\"input\":\"What are the latest Azure AI Foundry announcements?\",\"tools\":[{\"type\":\"bing_grounding\",\"bing_grounding\":{\"search_configurations\":[{\"project_connection_id\":\"AUTO_DISCOVERED_AT_RUNTIME\"}]}}],\"store\":false}",{"type":60,"tag":147,"props":240,"children":241},{"style":176},[242],{"type":66,"value":243},"'\n",{"type":60,"tag":69,"props":245,"children":246},{},[247],{"type":66,"value":248},"The response includes the answer with inline URL citations.",{"type":60,"tag":129,"props":250,"children":252},{"id":251},"simple-search-no-bing-connection-needed",[253],{"type":66,"value":254},"Simple search (no Bing connection needed)",{"type":60,"tag":69,"props":256,"children":257},{},[258],{"type":66,"value":259},"If Bing is not configured, use plain chat — the model answers from training data:",{"type":60,"tag":136,"props":261,"children":263},{"className":138,"code":262,"language":140,"meta":141,"style":141},"curl -s -X POST 'http:\u002F\u002Flocalhost:8443\u002Fv1\u002Fchat\u002Fcompletions' \\\n  -H 'Content-Type: application\u002Fjson' \\\n  -d '{\"model\":\"gpt-4.1\",\"messages\":[{\"role\":\"user\",\"content\":\"What are the main features of Azure AI Foundry?\"}]}'\n",[264],{"type":60,"tag":75,"props":265,"children":266},{"__ignoreMap":141},[267,303,326],{"type":60,"tag":147,"props":268,"children":269},{"class":149,"line":150},[270,274,278,282,286,290,295,299],{"type":60,"tag":147,"props":271,"children":272},{"style":154},[273],{"type":66,"value":157},{"type":60,"tag":147,"props":275,"children":276},{"style":160},[277],{"type":66,"value":163},{"type":60,"tag":147,"props":279,"children":280},{"style":160},[281],{"type":66,"value":168},{"type":60,"tag":147,"props":283,"children":284},{"style":160},[285],{"type":66,"value":173},{"type":60,"tag":147,"props":287,"children":288},{"style":176},[289],{"type":66,"value":179},{"type":60,"tag":147,"props":291,"children":292},{"style":160},[293],{"type":66,"value":294},"http:\u002F\u002Flocalhost:8443\u002Fv1\u002Fchat\u002Fcompletions",{"type":60,"tag":147,"props":296,"children":297},{"style":176},[298],{"type":66,"value":189},{"type":60,"tag":147,"props":300,"children":301},{"style":192},[302],{"type":66,"value":195},{"type":60,"tag":147,"props":304,"children":305},{"class":149,"line":25},[306,310,314,318,322],{"type":60,"tag":147,"props":307,"children":308},{"style":160},[309],{"type":66,"value":203},{"type":60,"tag":147,"props":311,"children":312},{"style":176},[313],{"type":66,"value":179},{"type":60,"tag":147,"props":315,"children":316},{"style":160},[317],{"type":66,"value":212},{"type":60,"tag":147,"props":319,"children":320},{"style":176},[321],{"type":66,"value":189},{"type":60,"tag":147,"props":323,"children":324},{"style":192},[325],{"type":66,"value":195},{"type":60,"tag":147,"props":327,"children":328},{"class":149,"line":223},[329,333,337,342],{"type":60,"tag":147,"props":330,"children":331},{"style":160},[332],{"type":66,"value":229},{"type":60,"tag":147,"props":334,"children":335},{"style":176},[336],{"type":66,"value":179},{"type":60,"tag":147,"props":338,"children":339},{"style":160},[340],{"type":66,"value":341},"{\"model\":\"gpt-4.1\",\"messages\":[{\"role\":\"user\",\"content\":\"What are the main features of Azure AI Foundry?\"}]}",{"type":60,"tag":147,"props":343,"children":344},{"style":176},[345],{"type":66,"value":243},{"type":60,"tag":95,"props":347,"children":349},{"id":348},"when-to-use",[350],{"type":66,"value":351},"When to use",{"type":60,"tag":353,"props":354,"children":355},"ul",{},[356,362,367,372],{"type":60,"tag":357,"props":358,"children":359},"li",{},[360],{"type":66,"value":361},"User asks about current events, news, recent changes",{"type":60,"tag":357,"props":363,"children":364},{},[365],{"type":66,"value":366},"Need real-time data: weather, stock prices, sports scores",{"type":60,"tag":357,"props":368,"children":369},{},[370],{"type":66,"value":371},"Verifying facts with web sources",{"type":60,"tag":357,"props":373,"children":374},{},[375],{"type":66,"value":376},"User says \"search the web\", \"look up\", \"what's the latest\"",{"type":60,"tag":95,"props":378,"children":380},{"id":379},"when-not-to-use",[381],{"type":66,"value":382},"When NOT to use",{"type":60,"tag":353,"props":384,"children":385},{},[386,391,396],{"type":60,"tag":357,"props":387,"children":388},{},[389],{"type":66,"value":390},"For information in uploaded documents (use foundry-knowledge)",{"type":60,"tag":357,"props":392,"children":393},{},[394],{"type":66,"value":395},"For calculations or data analysis (use foundry-code)",{"type":60,"tag":357,"props":397,"children":398},{},[399],{"type":66,"value":400},"For recalling previous conversations (use foundry-memory)",{"type":60,"tag":402,"props":403,"children":404},"style",{},[405],{"type":66,"value":406},"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":408,"total":518},[409,429,441,464,476,490,505],{"slug":410,"name":410,"fn":411,"description":412,"org":413,"tags":414,"stars":21,"repoUrl":22,"updatedAt":428},"agt-governance","enforce behavioral governance for agents","Behavioral governance for OpenClaw agents via AGT — tool-level policy, inter-agent trust, audit logging.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[415,418,421,422,425],{"name":416,"slug":417,"type":16},"Agents","agents",{"name":419,"slug":420,"type":16},"Audit","audit",{"name":11,"slug":8,"type":16},{"name":423,"slug":424,"type":16},"Governance","governance",{"name":426,"slug":427,"type":16},"Policy","policy","2026-07-12T08:18:34.446985",{"slug":430,"name":430,"fn":431,"description":432,"org":433,"tags":434,"stars":21,"repoUrl":22,"updatedAt":440},"foundry-agents","inspect and invoke Foundry prompt agents","Query and inspect Foundry prompt agents and invoke Foundry tools via the Responses API. OpenClaw is the orchestrator — Foundry provides managed AI services.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[435,436,439],{"name":416,"slug":417,"type":16},{"name":437,"slug":438,"type":16},"API Development","api-development",{"name":11,"slug":8,"type":16},"2026-07-12T08:18:31.798351",{"slug":442,"name":442,"fn":443,"description":444,"org":445,"tags":446,"stars":21,"repoUrl":22,"updatedAt":463},"foundry-code","execute Python code in Azure Foundry","Python code execution via Azure AI Foundry Responses API with code_interpreter tool. Data analysis, charts, and math in a managed sandbox.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[447,448,451,454,457,460],{"name":11,"slug":8,"type":16},{"name":449,"slug":450,"type":16},"Charts","charts",{"name":452,"slug":453,"type":16},"Data Analysis","data-analysis",{"name":455,"slug":456,"type":16},"Data Visualization","data-visualization",{"name":458,"slug":459,"type":16},"Mathematics","mathematics",{"name":461,"slug":462,"type":16},"Python","python","2026-07-12T08:18:30.4206",{"slug":465,"name":465,"fn":466,"description":467,"org":468,"tags":469,"stars":21,"repoUrl":22,"updatedAt":475},"foundry-conversations","manage persistent conversations via Foundry","Manage persistent conversations via Foundry Conversations API. Create conversations, add messages, and maintain history across sessions.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[470,471,472],{"name":416,"slug":417,"type":16},{"name":11,"slug":8,"type":16},{"name":473,"slug":474,"type":16},"Memory","memory","2026-07-12T08:18:38.407887",{"slug":477,"name":477,"fn":478,"description":479,"org":480,"tags":481,"stars":21,"repoUrl":22,"updatedAt":489},"foundry-deployments","query Foundry model deployments and infrastructure","Query model deployments, connections, and indexes in the Foundry project. Discover available models and infrastructure.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[482,483,486],{"name":11,"slug":8,"type":16},{"name":484,"slug":485,"type":16},"Infrastructure","infrastructure",{"name":487,"slug":488,"type":16},"LLM","llm","2026-07-12T08:18:39.662409",{"slug":491,"name":491,"fn":492,"description":493,"org":494,"tags":495,"stars":21,"repoUrl":22,"updatedAt":504},"foundry-evaluations","evaluate agent quality with Foundry Evals","Evaluate agent quality using Foundry OpenAI Evals API. Create evaluations, run them against models, and analyze results.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[496,497,500,501],{"name":11,"slug":8,"type":16},{"name":498,"slug":499,"type":16},"Evals","evals",{"name":487,"slug":488,"type":16},{"name":502,"slug":503,"type":16},"OpenAI","openai","2026-07-12T08:18:40.889909",{"slug":506,"name":506,"fn":507,"description":508,"org":509,"tags":510,"stars":21,"repoUrl":22,"updatedAt":517},"foundry-knowledge","retrieve knowledge via Foundry RAG","Knowledge retrieval (RAG) via Foundry file_search and azure_ai_search tools. Agentic retrieval with citations — uses Responses API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[511,512,515,516],{"name":11,"slug":8,"type":16},{"name":513,"slug":514,"type":16},"Knowledge Management","knowledge-management",{"name":14,"slug":15,"type":16},{"name":19,"slug":20,"type":16},"2026-07-12T08:18:35.894301",11,{"items":520,"total":691},[521,536,555,572,587,602,615,630,641,653,666,679],{"slug":522,"name":522,"fn":523,"description":524,"org":525,"tags":526,"stars":533,"repoUrl":534,"updatedAt":535},"azure-arg-external-evaluation-policy-author","author and test Azure Resource Graph policies","Use when the user wants to author, design, or test an Azure Policy that queries Azure Resource Graph (ARG) at request-time — i.e. a policy whose deny\u002Faudit decision depends on data from elsewhere in the subscription (sibling\u002Fparent resource state, RG-wide invariants, multi-hop relationships, etc.). Formally called Azure Policy External Evaluation; sometimes referred to colloquially as \"Invoke\". Drives an iterative KQL co-design loop against the user's real subscription via `az graph query`, then emits a policy definition, assignment, `.http` test flow, and an `EXPLANATION.md` companion. Read-only; never provisions anything.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[527,528,531,532],{"name":11,"slug":8,"type":16},{"name":529,"slug":530,"type":16},"Compliance","compliance",{"name":423,"slug":424,"type":16},{"name":426,"slug":427,"type":16},1686,"https:\u002F\u002Fgithub.com\u002FAzure\u002Fazure-policy","2026-07-12T08:17:48.378432",{"slug":537,"name":537,"fn":538,"description":539,"org":540,"tags":541,"stars":552,"repoUrl":553,"updatedAt":554},"azure-blueprints-migration","migrate Azure Blueprints to Template Specs","Use when a user needs to migrate off Azure Blueprints (definitions and\u002For assignments) to Template Specs and Deployment Stacks before the January 31, 2027 retirement. Covers inventory, export, conversion to Bicep, policy decoupling, Template Spec publishing, Deployment Stack deployment with deny-settings, validation, and cutover.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[542,543,546,549],{"name":11,"slug":8,"type":16},{"name":544,"slug":545,"type":16},"Deployment","deployment",{"name":547,"slug":548,"type":16},"Infrastructure as Code","infrastructure-as-code",{"name":550,"slug":551,"type":16},"Migration","migration",260,"https:\u002F\u002Fgithub.com\u002FAzure\u002Fazure-blueprints","2026-07-12T08:17:49.646405",{"slug":556,"name":556,"fn":557,"description":558,"org":559,"tags":560,"stars":569,"repoUrl":570,"updatedAt":571},"apiview-feedback-resolution","resolve APIView feedback on Azure SDKs","Analyze and resolve APIView review feedback on Azure SDK PRs. **UTILITY SKILL**. USE FOR: APIView comments, API review feedback, SDK API surface changes. DO NOT USE FOR: general code review, non-APIView feedback. INVOKES: azure-sdk-mcp:azsdk_apiview_get_comments, azure-sdk-mcp:azsdk_typespec_customized_code_update.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[561,562,563,566],{"name":437,"slug":438,"type":16},{"name":11,"slug":8,"type":16},{"name":564,"slug":565,"type":16},"Code Review","code-review",{"name":567,"slug":568,"type":16},"Documentation","documentation",133,"https:\u002F\u002Fgithub.com\u002FAzure\u002Fazure-sdk-tools","2026-07-12T08:17:43.350876",{"slug":573,"name":573,"fn":574,"description":575,"org":576,"tags":577,"stars":569,"repoUrl":570,"updatedAt":586},"azsdk-common-live-and-recorded-tests","deploy resources and run Azure SDK tests","Deploy test resources and run Azure SDK tests in live, record, or playback mode. WHEN: \"run live tests\", \"run recorded tests\", \"deploy test resources\", \"record tests\", \"run tests in record mode\", \"clean up test resources\", \"run tests against live resources\". DO NOT USE FOR: writing new tests, authoring Bicep templates, playback-only test runs without resource deployment. INVOKES: azure-sdk-mcp:azsdk_package_run_tests.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[578,579,580,583],{"name":11,"slug":8,"type":16},{"name":544,"slug":545,"type":16},{"name":581,"slug":582,"type":16},"SDK","sdk",{"name":584,"slug":585,"type":16},"Testing","testing","2026-07-12T08:17:44.718943",{"slug":588,"name":588,"fn":589,"description":590,"org":591,"tags":592,"stars":569,"repoUrl":570,"updatedAt":601},"azsdk-common-prepare-release-plan","manage Azure SDK release plan work items","Create, get, update, abandon, and link SDK PRs to release plan work items for Azure SDK releases. **UTILITY SKILL**. USE FOR: \"create release plan\", \"get release plan\", \"update release plan\", \"update API spec in release plan\", \"update SDK details in release plan\", \"abandon release plan\", \"link SDK PR to plan\", \"namespace approval\", \"check release plan status\". DO NOT USE FOR: SDK code generation, pipeline troubleshooting, API review feedback. INVOKES: azure-sdk-mcp:azsdk_create_release_plan, azure-sdk-mcp:azsdk_get_release_plan, azure-sdk-mcp:azsdk_get_release_plan_for_spec_pr, azure-sdk-mcp:azsdk_update_release_plan, azure-sdk-mcp:azsdk_update_api_spec_pull_request_in_release_plan, azure-sdk-mcp:azsdk_update_sdk_details_in_release_plan, azure-sdk-mcp:azsdk_abandon_release_plan, azure-sdk-mcp:azsdk_link_sdk_pull_request_to_release_plan, azure-sdk-mcp:azsdk_link_namespace_approval_issue.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[593,594,597,600],{"name":11,"slug":8,"type":16},{"name":595,"slug":596,"type":16},"GitHub","github",{"name":598,"slug":599,"type":16},"Project Management","project-management",{"name":581,"slug":582,"type":16},"2026-07-12T08:17:38.345387",{"slug":603,"name":603,"fn":604,"description":605,"org":606,"tags":607,"stars":569,"repoUrl":570,"updatedAt":614},"azsdk-common-sdk-release","release Azure SDK packages","Check release readiness and trigger the release pipeline for Azure SDK packages. **UTILITY SKILL**. USE FOR: \"release SDK\", \"trigger release\", \"check release readiness\", \"release pipeline\", \"publish package\", \"ship SDK\". DO NOT USE FOR: SDK development, code generation, pipeline debugging, release plan creation. INVOKES: azure-sdk-mcp:azsdk_release_sdk.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[608,609,612,613],{"name":11,"slug":8,"type":16},{"name":610,"slug":611,"type":16},"CI\u002FCD","ci-cd",{"name":544,"slug":545,"type":16},{"name":581,"slug":582,"type":16},"2026-07-12T08:17:34.27607",{"slug":616,"name":616,"fn":617,"description":618,"org":619,"tags":620,"stars":569,"repoUrl":570,"updatedAt":629},"azure-typespec-author","author and modify Azure TypeSpec API specifications","Authors and modifies Azure TypeSpec (.tsp) API specifications. USE FOR: any TypeSpec\u002Ftsp change — api versions (add, bump, preview, stable, promote), resources, operations, models, properties, decorators, visibility, constraints, breaking changes, LRO, suppressions, operationId, spread model. Covers ARM resource-manager and data-plane services. DO NOT USE FOR: SDK generation, releasing SDK packages, or single MCP tool calls. INVOKES: azure-sdk-mcp:azsdk_typespec_generate_authoring_plan, azure-sdk-mcp:azsdk_run_typespec_validation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[621,622,623,626],{"name":437,"slug":438,"type":16},{"name":11,"slug":8,"type":16},{"name":624,"slug":625,"type":16},"OpenAPI","openapi",{"name":627,"slug":628,"type":16},"Technical Writing","technical-writing","2026-07-12T08:17:39.603232",{"slug":631,"name":631,"fn":632,"description":633,"org":634,"tags":635,"stars":569,"repoUrl":570,"updatedAt":640},"generate-sdk-locally","generate and test Azure SDKs locally","Generate, build, and test Azure SDKs locally from TypeSpec with automatic customization. WHEN: \"generate SDK locally\", \"build SDK\", \"run SDK tests\", \"run CI checks\", \"validate package\", \"run checks\", \"update changelog\", \"fix SDK build errors\", \"fix breaking changes\", \"resolve SDK generation errors\", \"customize TypeSpec\", \"rename SDK client\", \"rename SDK model\", \"hide operation from SDK\", \"fix analyzer errors\", \"resolve customization drift\", \"create subclient\", \"update metadata\", \"update version\". DO NOT USE FOR: publishing to package registries, CI pipeline configuration, API design review. INVOKES: azsdk_verify_setup, azsdk_package_generate_code, azsdk_package_build_code, azsdk_package_run_check, azsdk_package_run_tests, azsdk_customized_code_update, azsdk_package_update_changelog_content, azsdk_package_update_metadata, azsdk_package_update_version.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[636,637,638,639],{"name":11,"slug":8,"type":16},{"name":610,"slug":611,"type":16},{"name":581,"slug":582,"type":16},{"name":584,"slug":585,"type":16},"2026-07-12T08:17:37.08523",{"slug":642,"name":642,"fn":643,"description":644,"org":645,"tags":646,"stars":569,"repoUrl":570,"updatedAt":652},"markdown-token-optimizer","optimize markdown files for token efficiency","Analyze markdown files for token efficiency and reduce context-window bloat. **UTILITY SKILL**. DO NOT USE FOR: code optimization, general file editing, non-markdown files. TRIGGERS: optimize markdown, reduce tokens, token count, token bloat, too many tokens, make concise, shrink file, file too large, optimize for AI, token efficiency, verbose markdown, reduce file size. INVOKES: waza CLI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[647,648,651],{"name":487,"slug":488,"type":16},{"name":649,"slug":650,"type":16},"Performance","performance",{"name":627,"slug":628,"type":16},"2026-07-12T08:17:42.080413",{"slug":654,"name":654,"fn":655,"description":656,"org":657,"tags":658,"stars":569,"repoUrl":570,"updatedAt":665},"pipeline-troubleshooting","troubleshoot Azure SDK CI pipelines","Diagnose and resolve failures in Azure SDK CI and generation pipelines. **UTILITY SKILL**. USE FOR: \"pipeline failed\", \"build failure\", \"CI check failing\", \"SDK generation error\", \"reproduce pipeline locally\", \"debug SDK pipeline\". DO NOT USE FOR: local build issues without pipeline context, API design review, SDK publishing. INVOKES: azure-sdk-mcp:azsdk_analyze_pipeline, azure-sdk-mcp:azsdk_package_build_code, azure-sdk-mcp:azsdk_package_run_check.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[659,660,661,664],{"name":11,"slug":8,"type":16},{"name":610,"slug":611,"type":16},{"name":662,"slug":663,"type":16},"Debugging","debugging",{"name":581,"slug":582,"type":16},"2026-07-12T08:17:40.821512",{"slug":667,"name":667,"fn":668,"description":669,"org":670,"tags":671,"stars":569,"repoUrl":570,"updatedAt":678},"sensei","improve skill frontmatter compliance","**WORKFLOW SKILL** — Iteratively improve skill frontmatter compliance using the Ralph loop pattern. WHEN: \"run sensei\", \"sensei help\", \"improve skill\", \"fix frontmatter\", \"skill compliance\", \"frontmatter audit\", \"score skill\", \"check skill tokens\". INVOKES: token counting tools, test runners, git commands. FOR SINGLE OPERATIONS: use token CLI directly for counts\u002Fchecks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[672,673,674,677],{"name":11,"slug":8,"type":16},{"name":529,"slug":530,"type":16},{"name":675,"slug":676,"type":16},"Process Optimization","process-optimization",{"name":627,"slug":628,"type":16},"2026-07-12T08:17:32.970921",{"slug":680,"name":680,"fn":681,"description":682,"org":683,"tags":684,"stars":569,"repoUrl":570,"updatedAt":690},"skill-authoring","author agent skills for agentskills.io","Write Agent Skills that comply with the agentskills.io specification. WHEN: \"create a skill\", \"new skill\", \"write a skill\", \"skill template\", \"skill structure\", \"review skill\", \"skill PR\", \"skill compliance\", \"SKILL.md format\", \"skill frontmatter\", \"skill best practices\". DO NOT USE FOR: improving existing skills (use sensei), general documentation. INVOKES: waza CLI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[685,686,689],{"name":567,"slug":568,"type":16},{"name":687,"slug":688,"type":16},"Plugin Development","plugin-development",{"name":627,"slug":628,"type":16},"2026-07-12T08:17:35.873862",109]