[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-microsoft-inbox-search-issues":3,"mdc-7hgozu-key":33,"related-repo-microsoft-inbox-search-issues":434,"related-org-microsoft-inbox-search-issues":528},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":31,"mdContent":32},"inbox-search-issues","search GitHub issues and pull requests","Search GitHub issues and PRs assigned to you, needing triage, or matching custom queries",{"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],{"name":13,"slug":14,"type":15},"GitHub","github","tag",{"name":17,"slug":18,"type":15},"Triage","triage",{"name":20,"slug":21,"type":15},"Search","search",25,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fvscode-team-kit","2026-05-13T06:14:04.611836",null,5,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"Plugins the VS Code team uses","https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fvscode-team-kit\u002Ftree\u002FHEAD\u002Fgithub-inbox\u002Fskills\u002Finbox-search-issues","---\nname: inbox-search-issues\ndescription: Search GitHub issues and PRs assigned to you, needing triage, or matching custom queries\ntools:\n  - execute\n---\n\n# Search GitHub Issues and PRs\n\nUse `gh` CLI to search for issues and PRs beyond notifications. This covers your full \"issues inbox\" — assigned work, triage queue, open PRs, and custom queries.\n\n## My assigned issues\n\n```\ngh api \u002Fsearch\u002Fissues --jq '.items[] | {number, title, repo: .repository_url, state, labels: [.labels[].name], updated_at, html_url}' -f q='assignee:@me is:open is:issue sort:updated-desc'\n```\n\n## My open PRs\n\n```\ngh api \u002Fsearch\u002Fissues --jq '.items[] | {number, title, repo: .repository_url, state, draft: .draft, updated_at, html_url}' -f q='author:@me is:open is:pr sort:updated-desc'\n```\n\n## PRs waiting for my review\n\n```\ngh api \u002Fsearch\u002Fissues --jq '.items[] | {number, title, repo: .repository_url, state, updated_at, html_url}' -f q='review-requested:@me is:open is:pr sort:updated-desc'\n```\n\n## Issues needing triage (no type label)\n\nThis depends on the repo's label conventions. Common pattern — issues with no `bug`, `feature-request`, or `enhancement` label:\n\n```\ngh api \u002Fsearch\u002Fissues --jq '.items[] | {number, title, labels: [.labels[].name], updated_at, html_url}' -f q='assignee:@me is:open is:issue -label:bug -label:feature-request -label:enhancement sort:updated-desc repo:{owner}\u002F{repo}'\n```\n\nReplace `{owner}\u002F{repo}` with the target repository.\n\n## Issues in a specific repo\n\n```\ngh api \u002Fsearch\u002Fissues --jq '.items[] | {number, title, state, labels: [.labels[].name], updated_at, html_url}' -f q='is:open is:issue repo:{owner}\u002F{repo} sort:updated-desc'\n```\n\n## Stale issues (no activity in 30 days)\n\n```\ngh api \u002Fsearch\u002Fissues --jq '.items[] | {number, title, updated_at, html_url}' -f q='assignee:@me is:open is:issue sort:updated-asc updated:\u003C{30_days_ago_date}'\n```\n\nReplace `{30_days_ago_date}` with a date like `2026-01-24`.\n\n## Issues by milestone\n\n```\ngh api \u002Fsearch\u002Fissues --jq '.items[] | {number, title, state, labels: [.labels[].name], html_url}' -f q='is:open milestone:\"{milestone}\" repo:{owner}\u002F{repo}'\n```\n\n## Custom query\n\nThe GitHub search syntax supports:\n- `assignee:@me`, `author:@me`, `mentions:@me`\n- `is:open`, `is:closed`, `is:issue`, `is:pr`\n- `label:bug`, `-label:duplicate`\n- `repo:owner\u002Frepo`, `org:microsoft`\n- `review-requested:@me`, `reviewed-by:@me`\n- `sort:updated-desc`, `sort:created-desc`\n- `updated:>2026-01-01` (date filters)\n\n```\ngh api \u002Fsearch\u002Fissues --jq '.items[] | {number, title, state, labels: [.labels[].name], updated_at, html_url}' -f q='{query}'\n```\n\n## Rules\n\n- Run each search as a separate terminal invocation\n- NEVER pipe to `jq` or other programs — use `--jq`\n- NEVER add `2>\u002Fdev\u002Fnull` or redirects\n",{"data":34,"body":37},{"name":4,"description":6,"tools":35},[36],"execute",{"type":38,"children":39},"root",[40,49,64,71,83,89,98,104,113,119,148,157,170,176,185,191,200,220,226,235,241,246,379,388,394],{"type":41,"tag":42,"props":43,"children":45},"element","h1",{"id":44},"search-github-issues-and-prs",[46],{"type":47,"value":48},"text","Search GitHub Issues and PRs",{"type":41,"tag":50,"props":51,"children":52},"p",{},[53,55,62],{"type":47,"value":54},"Use ",{"type":41,"tag":56,"props":57,"children":59},"code",{"className":58},[],[60],{"type":47,"value":61},"gh",{"type":47,"value":63}," CLI to search for issues and PRs beyond notifications. This covers your full \"issues inbox\" — assigned work, triage queue, open PRs, and custom queries.",{"type":41,"tag":65,"props":66,"children":68},"h2",{"id":67},"my-assigned-issues",[69],{"type":47,"value":70},"My assigned issues",{"type":41,"tag":72,"props":73,"children":77},"pre",{"className":74,"code":76,"language":47},[75],"language-text","gh api \u002Fsearch\u002Fissues --jq '.items[] | {number, title, repo: .repository_url, state, labels: [.labels[].name], updated_at, html_url}' -f q='assignee:@me is:open is:issue sort:updated-desc'\n",[78],{"type":41,"tag":56,"props":79,"children":81},{"__ignoreMap":80},"",[82],{"type":47,"value":76},{"type":41,"tag":65,"props":84,"children":86},{"id":85},"my-open-prs",[87],{"type":47,"value":88},"My open PRs",{"type":41,"tag":72,"props":90,"children":93},{"className":91,"code":92,"language":47},[75],"gh api \u002Fsearch\u002Fissues --jq '.items[] | {number, title, repo: .repository_url, state, draft: .draft, updated_at, html_url}' -f q='author:@me is:open is:pr sort:updated-desc'\n",[94],{"type":41,"tag":56,"props":95,"children":96},{"__ignoreMap":80},[97],{"type":47,"value":92},{"type":41,"tag":65,"props":99,"children":101},{"id":100},"prs-waiting-for-my-review",[102],{"type":47,"value":103},"PRs waiting for my review",{"type":41,"tag":72,"props":105,"children":108},{"className":106,"code":107,"language":47},[75],"gh api \u002Fsearch\u002Fissues --jq '.items[] | {number, title, repo: .repository_url, state, updated_at, html_url}' -f q='review-requested:@me is:open is:pr sort:updated-desc'\n",[109],{"type":41,"tag":56,"props":110,"children":111},{"__ignoreMap":80},[112],{"type":47,"value":107},{"type":41,"tag":65,"props":114,"children":116},{"id":115},"issues-needing-triage-no-type-label",[117],{"type":47,"value":118},"Issues needing triage (no type label)",{"type":41,"tag":50,"props":120,"children":121},{},[122,124,130,132,138,140,146],{"type":47,"value":123},"This depends on the repo's label conventions. Common pattern — issues with no ",{"type":41,"tag":56,"props":125,"children":127},{"className":126},[],[128],{"type":47,"value":129},"bug",{"type":47,"value":131},", ",{"type":41,"tag":56,"props":133,"children":135},{"className":134},[],[136],{"type":47,"value":137},"feature-request",{"type":47,"value":139},", or ",{"type":41,"tag":56,"props":141,"children":143},{"className":142},[],[144],{"type":47,"value":145},"enhancement",{"type":47,"value":147}," label:",{"type":41,"tag":72,"props":149,"children":152},{"className":150,"code":151,"language":47},[75],"gh api \u002Fsearch\u002Fissues --jq '.items[] | {number, title, labels: [.labels[].name], updated_at, html_url}' -f q='assignee:@me is:open is:issue -label:bug -label:feature-request -label:enhancement sort:updated-desc repo:{owner}\u002F{repo}'\n",[153],{"type":41,"tag":56,"props":154,"children":155},{"__ignoreMap":80},[156],{"type":47,"value":151},{"type":41,"tag":50,"props":158,"children":159},{},[160,162,168],{"type":47,"value":161},"Replace ",{"type":41,"tag":56,"props":163,"children":165},{"className":164},[],[166],{"type":47,"value":167},"{owner}\u002F{repo}",{"type":47,"value":169}," with the target repository.",{"type":41,"tag":65,"props":171,"children":173},{"id":172},"issues-in-a-specific-repo",[174],{"type":47,"value":175},"Issues in a specific repo",{"type":41,"tag":72,"props":177,"children":180},{"className":178,"code":179,"language":47},[75],"gh api \u002Fsearch\u002Fissues --jq '.items[] | {number, title, state, labels: [.labels[].name], updated_at, html_url}' -f q='is:open is:issue repo:{owner}\u002F{repo} sort:updated-desc'\n",[181],{"type":41,"tag":56,"props":182,"children":183},{"__ignoreMap":80},[184],{"type":47,"value":179},{"type":41,"tag":65,"props":186,"children":188},{"id":187},"stale-issues-no-activity-in-30-days",[189],{"type":47,"value":190},"Stale issues (no activity in 30 days)",{"type":41,"tag":72,"props":192,"children":195},{"className":193,"code":194,"language":47},[75],"gh api \u002Fsearch\u002Fissues --jq '.items[] | {number, title, updated_at, html_url}' -f q='assignee:@me is:open is:issue sort:updated-asc updated:\u003C{30_days_ago_date}'\n",[196],{"type":41,"tag":56,"props":197,"children":198},{"__ignoreMap":80},[199],{"type":47,"value":194},{"type":41,"tag":50,"props":201,"children":202},{},[203,204,210,212,218],{"type":47,"value":161},{"type":41,"tag":56,"props":205,"children":207},{"className":206},[],[208],{"type":47,"value":209},"{30_days_ago_date}",{"type":47,"value":211}," with a date like ",{"type":41,"tag":56,"props":213,"children":215},{"className":214},[],[216],{"type":47,"value":217},"2026-01-24",{"type":47,"value":219},".",{"type":41,"tag":65,"props":221,"children":223},{"id":222},"issues-by-milestone",[224],{"type":47,"value":225},"Issues by milestone",{"type":41,"tag":72,"props":227,"children":230},{"className":228,"code":229,"language":47},[75],"gh api \u002Fsearch\u002Fissues --jq '.items[] | {number, title, state, labels: [.labels[].name], html_url}' -f q='is:open milestone:\"{milestone}\" repo:{owner}\u002F{repo}'\n",[231],{"type":41,"tag":56,"props":232,"children":233},{"__ignoreMap":80},[234],{"type":47,"value":229},{"type":41,"tag":65,"props":236,"children":238},{"id":237},"custom-query",[239],{"type":47,"value":240},"Custom query",{"type":41,"tag":50,"props":242,"children":243},{},[244],{"type":47,"value":245},"The GitHub search syntax supports:",{"type":41,"tag":247,"props":248,"children":249},"ul",{},[250,274,304,320,336,352,368],{"type":41,"tag":251,"props":252,"children":253},"li",{},[254,260,261,267,268],{"type":41,"tag":56,"props":255,"children":257},{"className":256},[],[258],{"type":47,"value":259},"assignee:@me",{"type":47,"value":131},{"type":41,"tag":56,"props":262,"children":264},{"className":263},[],[265],{"type":47,"value":266},"author:@me",{"type":47,"value":131},{"type":41,"tag":56,"props":269,"children":271},{"className":270},[],[272],{"type":47,"value":273},"mentions:@me",{"type":41,"tag":251,"props":275,"children":276},{},[277,283,284,290,291,297,298],{"type":41,"tag":56,"props":278,"children":280},{"className":279},[],[281],{"type":47,"value":282},"is:open",{"type":47,"value":131},{"type":41,"tag":56,"props":285,"children":287},{"className":286},[],[288],{"type":47,"value":289},"is:closed",{"type":47,"value":131},{"type":41,"tag":56,"props":292,"children":294},{"className":293},[],[295],{"type":47,"value":296},"is:issue",{"type":47,"value":131},{"type":41,"tag":56,"props":299,"children":301},{"className":300},[],[302],{"type":47,"value":303},"is:pr",{"type":41,"tag":251,"props":305,"children":306},{},[307,313,314],{"type":41,"tag":56,"props":308,"children":310},{"className":309},[],[311],{"type":47,"value":312},"label:bug",{"type":47,"value":131},{"type":41,"tag":56,"props":315,"children":317},{"className":316},[],[318],{"type":47,"value":319},"-label:duplicate",{"type":41,"tag":251,"props":321,"children":322},{},[323,329,330],{"type":41,"tag":56,"props":324,"children":326},{"className":325},[],[327],{"type":47,"value":328},"repo:owner\u002Frepo",{"type":47,"value":131},{"type":41,"tag":56,"props":331,"children":333},{"className":332},[],[334],{"type":47,"value":335},"org:microsoft",{"type":41,"tag":251,"props":337,"children":338},{},[339,345,346],{"type":41,"tag":56,"props":340,"children":342},{"className":341},[],[343],{"type":47,"value":344},"review-requested:@me",{"type":47,"value":131},{"type":41,"tag":56,"props":347,"children":349},{"className":348},[],[350],{"type":47,"value":351},"reviewed-by:@me",{"type":41,"tag":251,"props":353,"children":354},{},[355,361,362],{"type":41,"tag":56,"props":356,"children":358},{"className":357},[],[359],{"type":47,"value":360},"sort:updated-desc",{"type":47,"value":131},{"type":41,"tag":56,"props":363,"children":365},{"className":364},[],[366],{"type":47,"value":367},"sort:created-desc",{"type":41,"tag":251,"props":369,"children":370},{},[371,377],{"type":41,"tag":56,"props":372,"children":374},{"className":373},[],[375],{"type":47,"value":376},"updated:>2026-01-01",{"type":47,"value":378}," (date filters)",{"type":41,"tag":72,"props":380,"children":383},{"className":381,"code":382,"language":47},[75],"gh api \u002Fsearch\u002Fissues --jq '.items[] | {number, title, state, labels: [.labels[].name], updated_at, html_url}' -f q='{query}'\n",[384],{"type":41,"tag":56,"props":385,"children":386},{"__ignoreMap":80},[387],{"type":47,"value":382},{"type":41,"tag":65,"props":389,"children":391},{"id":390},"rules",[392],{"type":47,"value":393},"Rules",{"type":41,"tag":247,"props":395,"children":396},{},[397,402,421],{"type":41,"tag":251,"props":398,"children":399},{},[400],{"type":47,"value":401},"Run each search as a separate terminal invocation",{"type":41,"tag":251,"props":403,"children":404},{},[405,407,413,415],{"type":47,"value":406},"NEVER pipe to ",{"type":41,"tag":56,"props":408,"children":410},{"className":409},[],[411],{"type":47,"value":412},"jq",{"type":47,"value":414}," or other programs — use ",{"type":41,"tag":56,"props":416,"children":418},{"className":417},[],[419],{"type":47,"value":420},"--jq",{"type":41,"tag":251,"props":422,"children":423},{},[424,426,432],{"type":47,"value":425},"NEVER add ",{"type":41,"tag":56,"props":427,"children":429},{"className":428},[],[430],{"type":47,"value":431},"2>\u002Fdev\u002Fnull",{"type":47,"value":433}," or redirects",{"items":435,"total":527},[436,455,470,484,493,504,513],{"slug":437,"name":437,"fn":438,"description":439,"org":440,"tags":441,"stars":22,"repoUrl":23,"updatedAt":454},"council-plan","perform multi-model council planning","Multi-model council planning for implementation and architecture decisions. Use when the user asks to 'plan with council', 'multi-model plan', 'get different perspectives on approach', 'council plan', or wants multiple models to independently propose plans for the same task. Also use when the user asks to 'debate approaches', 'compare strategies', or 'cross-plan'.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[442,445,448,451],{"name":443,"slug":444,"type":15},"Architecture","architecture",{"name":446,"slug":447,"type":15},"Engineering","engineering",{"name":449,"slug":450,"type":15},"Multi-Agent","multi-agent",{"name":452,"slug":453,"type":15},"System Design","system-design","2026-05-13T06:14:08.529779",{"slug":456,"name":456,"fn":457,"description":458,"org":459,"tags":460,"stars":22,"repoUrl":23,"updatedAt":469},"council-review","perform multi-model council code reviews","Multi-model council review for diffs, pull requests, and risky changes. It is CRITICAL to use this skill after ANY non-trivial development phase — changes are usually not 100% correct. Development CANNOT be called done until the code has been reviewed. Use whenever the user asks for a review, PR feedback, a bug hunt in recent edits, or wants multiple models to inspect the same change independently. Also use when the user asks to 'discuss findings', 'cross-review', or 'debate' review results between models.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[461,464,465,466],{"name":462,"slug":463,"type":15},"Code Review","code-review",{"name":446,"slug":447,"type":15},{"name":449,"slug":450,"type":15},{"name":467,"slug":468,"type":15},"Pull Requests","pull-requests","2026-05-13T06:14:07.202801",{"slug":471,"name":471,"fn":472,"description":473,"org":474,"tags":475,"stars":22,"repoUrl":23,"updatedAt":483},"follow-goal","manage agent goals and stopping conditions","Give the agent a durable objective with a verifiable stopping condition, then keep iterating across turns until that condition is met. Use when the user says 'set a goal', 'follow a goal', '\u002Fgoal …', 'keep working until …', or asks for a long-running task with a clear end state (migrations, large refactors, retry-until-green loops, experiments).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[476,479,480],{"name":477,"slug":478,"type":15},"Agents","agents",{"name":9,"slug":8,"type":15},{"name":481,"slug":482,"type":15},"Productivity","productivity","2026-07-07T06:54:04.263607",{"slug":485,"name":485,"fn":486,"description":487,"org":488,"tags":489,"stars":22,"repoUrl":23,"updatedAt":492},"inbox-add-reaction","add reactions to GitHub issues and PRs","Add a reaction to a GitHub issue or pull request",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[490,491],{"name":13,"slug":14,"type":15},{"name":467,"slug":468,"type":15},"2026-07-07T06:53:33.958298",{"slug":494,"name":494,"fn":495,"description":496,"org":497,"tags":498,"stars":22,"repoUrl":23,"updatedAt":503},"inbox-install-gh-cli","install GitHub CLI","Install the GitHub CLI (gh) if not already installed",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[499,502],{"name":500,"slug":501,"type":15},"CLI","cli",{"name":13,"slug":14,"type":15},"2026-05-13T06:14:05.911879",{"slug":505,"name":505,"fn":506,"description":507,"org":508,"tags":509,"stars":22,"repoUrl":23,"updatedAt":512},"inbox-mark-all-read","mark GitHub notifications as read","Mark all GitHub notifications as read",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[510,511],{"name":13,"slug":14,"type":15},{"name":481,"slug":482,"type":15},"2026-05-13T06:14:02.019522",{"slug":514,"name":514,"fn":515,"description":516,"org":517,"tags":518,"stars":22,"repoUrl":23,"updatedAt":526},"inbox-memory","manage agent memory and rules","Read and write agent storage — memory and rules with environment-aware fallback",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[519,520,523],{"name":477,"slug":478,"type":15},{"name":521,"slug":522,"type":15},"Configuration","configuration",{"name":524,"slug":525,"type":15},"Memory","memory","2026-05-13T06:14:00.740431",14,{"items":529,"total":718},[530,550,569,590,605,622,633,646,661,674,693,706],{"slug":531,"name":531,"fn":532,"description":533,"org":534,"tags":535,"stars":547,"repoUrl":548,"updatedAt":549},"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},[536,537,540,541,544],{"name":446,"slug":447,"type":15},{"name":538,"slug":539,"type":15},"Local Development","local-development",{"name":9,"slug":8,"type":15},{"name":542,"slug":543,"type":15},"Project Management","project-management",{"name":545,"slug":546,"type":15},"Rush","rush",6484,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Frushstack","2026-04-06T18:34:44.965032",{"slug":551,"name":551,"fn":552,"description":553,"org":554,"tags":555,"stars":566,"repoUrl":567,"updatedAt":568},"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},[556,559,560,563],{"name":557,"slug":558,"type":15},".NET","net",{"name":477,"slug":478,"type":15},{"name":561,"slug":562,"type":15},"Azure","azure",{"name":564,"slug":565,"type":15},"LLM","llm",2804,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fskills","2026-07-03T16:32:10.297433",{"slug":570,"name":570,"fn":571,"description":572,"org":573,"tags":574,"stars":566,"repoUrl":567,"updatedAt":589},"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},[575,578,579,582,585,586],{"name":576,"slug":577,"type":15},"Analytics","analytics",{"name":561,"slug":562,"type":15},{"name":580,"slug":581,"type":15},"Data Analysis","data-analysis",{"name":583,"slug":584,"type":15},"Java","java",{"name":9,"slug":8,"type":15},{"name":587,"slug":588,"type":15},"Monitoring","monitoring","2026-05-13T06:14:16.261754",{"slug":591,"name":591,"fn":592,"description":593,"org":594,"tags":595,"stars":566,"repoUrl":567,"updatedAt":604},"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},[596,599,600,601],{"name":597,"slug":598,"type":15},"AI Infrastructure","ai-infrastructure",{"name":561,"slug":562,"type":15},{"name":583,"slug":584,"type":15},{"name":602,"slug":603,"type":15},"Security","security","2026-07-07T06:53:31.293235",{"slug":606,"name":606,"fn":607,"description":608,"org":609,"tags":610,"stars":566,"repoUrl":567,"updatedAt":621},"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},[611,612,615,616,617,620],{"name":561,"slug":562,"type":15},{"name":613,"slug":614,"type":15},"Compliance","compliance",{"name":564,"slug":565,"type":15},{"name":9,"slug":8,"type":15},{"name":618,"slug":619,"type":15},"Python","python",{"name":602,"slug":603,"type":15},"2026-07-18T05:14:23.017504",{"slug":623,"name":623,"fn":624,"description":625,"org":626,"tags":627,"stars":566,"repoUrl":567,"updatedAt":632},"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},[628,629,630,631],{"name":576,"slug":577,"type":15},{"name":561,"slug":562,"type":15},{"name":564,"slug":565,"type":15},{"name":618,"slug":619,"type":15},"2026-07-31T05:54:29.068751",{"slug":634,"name":634,"fn":635,"description":636,"org":637,"tags":638,"stars":566,"repoUrl":567,"updatedAt":645},"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},[639,642,643,644],{"name":640,"slug":641,"type":15},"API Development","api-development",{"name":561,"slug":562,"type":15},{"name":9,"slug":8,"type":15},{"name":618,"slug":619,"type":15},"2026-07-18T05:14:16.988376",{"slug":647,"name":647,"fn":648,"description":649,"org":650,"tags":651,"stars":566,"repoUrl":567,"updatedAt":660},"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},[652,653,656,659],{"name":561,"slug":562,"type":15},{"name":654,"slug":655,"type":15},"Computer Vision","computer-vision",{"name":657,"slug":658,"type":15},"Images","images",{"name":618,"slug":619,"type":15},"2026-07-18T05:14:18.007737",{"slug":662,"name":662,"fn":663,"description":664,"org":665,"tags":666,"stars":566,"repoUrl":567,"updatedAt":673},"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},[667,668,669,672],{"name":561,"slug":562,"type":15},{"name":521,"slug":522,"type":15},{"name":670,"slug":671,"type":15},"Feature Flags","feature-flags",{"name":583,"slug":584,"type":15},"2026-07-03T16:32:01.278468",{"slug":675,"name":675,"fn":676,"description":677,"org":678,"tags":679,"stars":566,"repoUrl":567,"updatedAt":692},"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},[680,683,686,689],{"name":681,"slug":682,"type":15},"Cosmos DB","cosmos-db",{"name":684,"slug":685,"type":15},"Database","database",{"name":687,"slug":688,"type":15},"NoSQL","nosql",{"name":690,"slug":691,"type":15},"Rust","rust","2026-07-31T05:54:27.021432",{"slug":694,"name":694,"fn":676,"description":695,"org":696,"tags":697,"stars":566,"repoUrl":567,"updatedAt":705},"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},[698,699,700,701,702],{"name":681,"slug":682,"type":15},{"name":684,"slug":685,"type":15},{"name":9,"slug":8,"type":15},{"name":687,"slug":688,"type":15},{"name":703,"slug":704,"type":15},"TypeScript","typescript","2026-07-03T16:31:19.368382",{"slug":707,"name":707,"fn":708,"description":709,"org":710,"tags":711,"stars":566,"repoUrl":567,"updatedAt":717},"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},[712,713,714,715,716],{"name":561,"slug":562,"type":15},{"name":681,"slug":682,"type":15},{"name":684,"slug":685,"type":15},{"name":583,"slug":584,"type":15},{"name":687,"slug":688,"type":15},"2026-05-13T06:14:17.582229",267]