[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-microsoft-sdd-walkthrough":3,"mdc--hg7gs9-key":39,"related-org-microsoft-sdd-walkthrough":600,"related-repo-microsoft-sdd-walkthrough":792},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":28,"repoUrl":29,"updatedAt":30,"license":31,"forks":32,"topics":33,"repo":34,"sourceUrl":37,"mdContent":38},"sdd-walkthrough","orchestrate subagent-driven development sessions","Use when about to orchestrate a subagent-driven-development execute-plan session — provides 5 realistic task scenarios with Amplifier delegate() patterns, model_role selection, status handling (DONE, DONE_WITH_CONCERNS, NEEDS_CONTEXT), and fix loops for spec and quality issues",{"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},"Amplifier","amplifier","tag",{"name":17,"slug":18,"type":15},"Agents","agents",{"name":20,"slug":21,"type":15},"Engineering","engineering",{"name":23,"slug":24,"type":15},"Multi-Agent","multi-agent",{"name":26,"slug":27,"type":15},"Workflow Automation","workflow-automation",3,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Famplifier-bundle-superpowers","2026-04-07T19:00:24.572734",null,8,[],{"repoUrl":29,"stars":28,"forks":32,"topics":35,"description":36},[],"Superpowers bundle for the Amplifier project","https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Famplifier-bundle-superpowers\u002Ftree\u002FHEAD\u002Fskills\u002Fsdd-walkthrough","---\nname: sdd-walkthrough\ndescription: Use when about to orchestrate a subagent-driven-development execute-plan session — provides 5 realistic task scenarios with Amplifier delegate() patterns, model_role selection, status handling (DONE, DONE_WITH_CONCERNS, NEEDS_CONTEXT), and fix loops for spec and quality issues\n---\n\n# SDD Walkthrough\n\n**Purpose:** Load this when about to orchestrate an execute-plan session. Provides concrete worked examples of all five common task outcomes so you know exactly what delegate() calls to make and how to respond to each reviewer verdict.\n\n## Why This Skill Exists\n\nThe subagent-driven-development skill describes the process. This skill shows it in action — real delegate() call syntax, realistic reviewer responses, and the decisions an orchestrator makes at each step. Reference it before you start so the patterns are fresh when edge cases appear.\n\n## Scenarios Covered\n\n| # | Task | Outcome Pattern | Key Technique |\n|---|------|-----------------|---------------|\n| 1 | Validate email format | Happy path: DONE → spec PASS → quality PASS | context_depth='none', model_role='coding' |\n| 2 | Domain reachability check | Spec gap caught: impl raises instead of returns False | Re-delegate with specific gap description |\n| 3 | In-memory rate limiter | DONE_WITH_CONCERNS: multi-worker incompatibility | Note concern, proceed to review, surface to user |\n| 4 | Validation endpoint wiring | Quality issues: magic number + missing error handling | Fix loop with attempt counter in instruction |\n| 5 | Error response handler | NEEDS_CONTEXT: can't find error format | Grep investigation, re-delegate with discovery |\n\n## Companion File\n\nSee `five-task-example.md` for the complete worked example — all five tasks with full delegate() calls, implementer\u002Freviewer responses, fix loops, and a completion summary.\n\n## Quick Reference: delegate() Call Shapes\n\n```python\n# Implementer — always fresh context, coding model\ndelegate(\n    agent=\"superpowers:implementer\",\n    instruction=\"...\",   # full task spec + scene-setting context\n    context_depth=\"none\",\n    model_role=\"coding\",\n)\n\n# Spec reviewer — needs recent agent results to see what was built\ndelegate(\n    agent=\"superpowers:spec-reviewer\",\n    instruction=\"...\",   # task spec + commit refs\n    context_depth=\"recent\",\n    context_scope=\"agents\",\n)\n\n# Code quality reviewer — same context shape as spec reviewer\ndelegate(\n    agent=\"superpowers:code-quality-reviewer\",\n    instruction=\"...\",   # commit refs + what was changed\n    context_depth=\"recent\",\n    context_scope=\"agents\",\n)\n```\n\n## Status Handling Cheat Sheet\n\n| Status | Meaning | Orchestrator Action |\n|--------|---------|---------------------|\n| `DONE` | Task complete, tests pass | Proceed to spec review |\n| `DONE_WITH_CONCERNS` | Complete but flagged an issue | Read concern, note it, proceed to review |\n| `NEEDS_CONTEXT` | Missing info to proceed | Investigate (grep\u002Fread), re-delegate with context |\n| `BLOCKED` | Cannot complete at all | Assess blocker, provide context or escalate |\n",{"data":40,"body":41},{"name":4,"description":6},{"type":42,"children":43},"root",[44,52,64,71,76,82,235,241,255,261,473,479,594],{"type":45,"tag":46,"props":47,"children":48},"element","h1",{"id":4},[49],{"type":50,"value":51},"text","SDD Walkthrough",{"type":45,"tag":53,"props":54,"children":55},"p",{},[56,62],{"type":45,"tag":57,"props":58,"children":59},"strong",{},[60],{"type":50,"value":61},"Purpose:",{"type":50,"value":63}," Load this when about to orchestrate an execute-plan session. Provides concrete worked examples of all five common task outcomes so you know exactly what delegate() calls to make and how to respond to each reviewer verdict.",{"type":45,"tag":65,"props":66,"children":68},"h2",{"id":67},"why-this-skill-exists",[69],{"type":50,"value":70},"Why This Skill Exists",{"type":45,"tag":53,"props":72,"children":73},{},[74],{"type":50,"value":75},"The subagent-driven-development skill describes the process. This skill shows it in action — real delegate() call syntax, realistic reviewer responses, and the decisions an orchestrator makes at each step. Reference it before you start so the patterns are fresh when edge cases appear.",{"type":45,"tag":65,"props":77,"children":79},{"id":78},"scenarios-covered",[80],{"type":50,"value":81},"Scenarios Covered",{"type":45,"tag":83,"props":84,"children":85},"table",{},[86,115],{"type":45,"tag":87,"props":88,"children":89},"thead",{},[90],{"type":45,"tag":91,"props":92,"children":93},"tr",{},[94,100,105,110],{"type":45,"tag":95,"props":96,"children":97},"th",{},[98],{"type":50,"value":99},"#",{"type":45,"tag":95,"props":101,"children":102},{},[103],{"type":50,"value":104},"Task",{"type":45,"tag":95,"props":106,"children":107},{},[108],{"type":50,"value":109},"Outcome Pattern",{"type":45,"tag":95,"props":111,"children":112},{},[113],{"type":50,"value":114},"Key Technique",{"type":45,"tag":116,"props":117,"children":118},"tbody",{},[119,143,166,189,212],{"type":45,"tag":91,"props":120,"children":121},{},[122,128,133,138],{"type":45,"tag":123,"props":124,"children":125},"td",{},[126],{"type":50,"value":127},"1",{"type":45,"tag":123,"props":129,"children":130},{},[131],{"type":50,"value":132},"Validate email format",{"type":45,"tag":123,"props":134,"children":135},{},[136],{"type":50,"value":137},"Happy path: DONE → spec PASS → quality PASS",{"type":45,"tag":123,"props":139,"children":140},{},[141],{"type":50,"value":142},"context_depth='none', model_role='coding'",{"type":45,"tag":91,"props":144,"children":145},{},[146,151,156,161],{"type":45,"tag":123,"props":147,"children":148},{},[149],{"type":50,"value":150},"2",{"type":45,"tag":123,"props":152,"children":153},{},[154],{"type":50,"value":155},"Domain reachability check",{"type":45,"tag":123,"props":157,"children":158},{},[159],{"type":50,"value":160},"Spec gap caught: impl raises instead of returns False",{"type":45,"tag":123,"props":162,"children":163},{},[164],{"type":50,"value":165},"Re-delegate with specific gap description",{"type":45,"tag":91,"props":167,"children":168},{},[169,174,179,184],{"type":45,"tag":123,"props":170,"children":171},{},[172],{"type":50,"value":173},"3",{"type":45,"tag":123,"props":175,"children":176},{},[177],{"type":50,"value":178},"In-memory rate limiter",{"type":45,"tag":123,"props":180,"children":181},{},[182],{"type":50,"value":183},"DONE_WITH_CONCERNS: multi-worker incompatibility",{"type":45,"tag":123,"props":185,"children":186},{},[187],{"type":50,"value":188},"Note concern, proceed to review, surface to user",{"type":45,"tag":91,"props":190,"children":191},{},[192,197,202,207],{"type":45,"tag":123,"props":193,"children":194},{},[195],{"type":50,"value":196},"4",{"type":45,"tag":123,"props":198,"children":199},{},[200],{"type":50,"value":201},"Validation endpoint wiring",{"type":45,"tag":123,"props":203,"children":204},{},[205],{"type":50,"value":206},"Quality issues: magic number + missing error handling",{"type":45,"tag":123,"props":208,"children":209},{},[210],{"type":50,"value":211},"Fix loop with attempt counter in instruction",{"type":45,"tag":91,"props":213,"children":214},{},[215,220,225,230],{"type":45,"tag":123,"props":216,"children":217},{},[218],{"type":50,"value":219},"5",{"type":45,"tag":123,"props":221,"children":222},{},[223],{"type":50,"value":224},"Error response handler",{"type":45,"tag":123,"props":226,"children":227},{},[228],{"type":50,"value":229},"NEEDS_CONTEXT: can't find error format",{"type":45,"tag":123,"props":231,"children":232},{},[233],{"type":50,"value":234},"Grep investigation, re-delegate with discovery",{"type":45,"tag":65,"props":236,"children":238},{"id":237},"companion-file",[239],{"type":50,"value":240},"Companion File",{"type":45,"tag":53,"props":242,"children":243},{},[244,246,253],{"type":50,"value":245},"See ",{"type":45,"tag":247,"props":248,"children":250},"code",{"className":249},[],[251],{"type":50,"value":252},"five-task-example.md",{"type":50,"value":254}," for the complete worked example — all five tasks with full delegate() calls, implementer\u002Freviewer responses, fix loops, and a completion summary.",{"type":45,"tag":65,"props":256,"children":258},{"id":257},"quick-reference-delegate-call-shapes",[259],{"type":50,"value":260},"Quick Reference: delegate() Call Shapes",{"type":45,"tag":262,"props":263,"children":268},"pre",{"className":264,"code":265,"language":266,"meta":267,"style":267},"language-python shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Implementer — always fresh context, coding model\ndelegate(\n    agent=\"superpowers:implementer\",\n    instruction=\"...\",   # full task spec + scene-setting context\n    context_depth=\"none\",\n    model_role=\"coding\",\n)\n\n# Spec reviewer — needs recent agent results to see what was built\ndelegate(\n    agent=\"superpowers:spec-reviewer\",\n    instruction=\"...\",   # task spec + commit refs\n    context_depth=\"recent\",\n    context_scope=\"agents\",\n)\n\n# Code quality reviewer — same context shape as spec reviewer\ndelegate(\n    agent=\"superpowers:code-quality-reviewer\",\n    instruction=\"...\",   # commit refs + what was changed\n    context_depth=\"recent\",\n    context_scope=\"agents\",\n)\n","python","",[269],{"type":45,"tag":247,"props":270,"children":271},{"__ignoreMap":267},[272,283,292,300,309,318,327,336,345,354,362,371,380,389,398,406,414,423,431,440,449,457,465],{"type":45,"tag":273,"props":274,"children":277},"span",{"class":275,"line":276},"line",1,[278],{"type":45,"tag":273,"props":279,"children":280},{},[281],{"type":50,"value":282},"# Implementer — always fresh context, coding model\n",{"type":45,"tag":273,"props":284,"children":286},{"class":275,"line":285},2,[287],{"type":45,"tag":273,"props":288,"children":289},{},[290],{"type":50,"value":291},"delegate(\n",{"type":45,"tag":273,"props":293,"children":294},{"class":275,"line":28},[295],{"type":45,"tag":273,"props":296,"children":297},{},[298],{"type":50,"value":299},"    agent=\"superpowers:implementer\",\n",{"type":45,"tag":273,"props":301,"children":303},{"class":275,"line":302},4,[304],{"type":45,"tag":273,"props":305,"children":306},{},[307],{"type":50,"value":308},"    instruction=\"...\",   # full task spec + scene-setting context\n",{"type":45,"tag":273,"props":310,"children":312},{"class":275,"line":311},5,[313],{"type":45,"tag":273,"props":314,"children":315},{},[316],{"type":50,"value":317},"    context_depth=\"none\",\n",{"type":45,"tag":273,"props":319,"children":321},{"class":275,"line":320},6,[322],{"type":45,"tag":273,"props":323,"children":324},{},[325],{"type":50,"value":326},"    model_role=\"coding\",\n",{"type":45,"tag":273,"props":328,"children":330},{"class":275,"line":329},7,[331],{"type":45,"tag":273,"props":332,"children":333},{},[334],{"type":50,"value":335},")\n",{"type":45,"tag":273,"props":337,"children":338},{"class":275,"line":32},[339],{"type":45,"tag":273,"props":340,"children":342},{"emptyLinePlaceholder":341},true,[343],{"type":50,"value":344},"\n",{"type":45,"tag":273,"props":346,"children":348},{"class":275,"line":347},9,[349],{"type":45,"tag":273,"props":350,"children":351},{},[352],{"type":50,"value":353},"# Spec reviewer — needs recent agent results to see what was built\n",{"type":45,"tag":273,"props":355,"children":357},{"class":275,"line":356},10,[358],{"type":45,"tag":273,"props":359,"children":360},{},[361],{"type":50,"value":291},{"type":45,"tag":273,"props":363,"children":365},{"class":275,"line":364},11,[366],{"type":45,"tag":273,"props":367,"children":368},{},[369],{"type":50,"value":370},"    agent=\"superpowers:spec-reviewer\",\n",{"type":45,"tag":273,"props":372,"children":374},{"class":275,"line":373},12,[375],{"type":45,"tag":273,"props":376,"children":377},{},[378],{"type":50,"value":379},"    instruction=\"...\",   # task spec + commit refs\n",{"type":45,"tag":273,"props":381,"children":383},{"class":275,"line":382},13,[384],{"type":45,"tag":273,"props":385,"children":386},{},[387],{"type":50,"value":388},"    context_depth=\"recent\",\n",{"type":45,"tag":273,"props":390,"children":392},{"class":275,"line":391},14,[393],{"type":45,"tag":273,"props":394,"children":395},{},[396],{"type":50,"value":397},"    context_scope=\"agents\",\n",{"type":45,"tag":273,"props":399,"children":401},{"class":275,"line":400},15,[402],{"type":45,"tag":273,"props":403,"children":404},{},[405],{"type":50,"value":335},{"type":45,"tag":273,"props":407,"children":409},{"class":275,"line":408},16,[410],{"type":45,"tag":273,"props":411,"children":412},{"emptyLinePlaceholder":341},[413],{"type":50,"value":344},{"type":45,"tag":273,"props":415,"children":417},{"class":275,"line":416},17,[418],{"type":45,"tag":273,"props":419,"children":420},{},[421],{"type":50,"value":422},"# Code quality reviewer — same context shape as spec reviewer\n",{"type":45,"tag":273,"props":424,"children":426},{"class":275,"line":425},18,[427],{"type":45,"tag":273,"props":428,"children":429},{},[430],{"type":50,"value":291},{"type":45,"tag":273,"props":432,"children":434},{"class":275,"line":433},19,[435],{"type":45,"tag":273,"props":436,"children":437},{},[438],{"type":50,"value":439},"    agent=\"superpowers:code-quality-reviewer\",\n",{"type":45,"tag":273,"props":441,"children":443},{"class":275,"line":442},20,[444],{"type":45,"tag":273,"props":445,"children":446},{},[447],{"type":50,"value":448},"    instruction=\"...\",   # commit refs + what was changed\n",{"type":45,"tag":273,"props":450,"children":452},{"class":275,"line":451},21,[453],{"type":45,"tag":273,"props":454,"children":455},{},[456],{"type":50,"value":388},{"type":45,"tag":273,"props":458,"children":460},{"class":275,"line":459},22,[461],{"type":45,"tag":273,"props":462,"children":463},{},[464],{"type":50,"value":397},{"type":45,"tag":273,"props":466,"children":468},{"class":275,"line":467},23,[469],{"type":45,"tag":273,"props":470,"children":471},{},[472],{"type":50,"value":335},{"type":45,"tag":65,"props":474,"children":476},{"id":475},"status-handling-cheat-sheet",[477],{"type":50,"value":478},"Status Handling Cheat Sheet",{"type":45,"tag":83,"props":480,"children":481},{},[482,503],{"type":45,"tag":87,"props":483,"children":484},{},[485],{"type":45,"tag":91,"props":486,"children":487},{},[488,493,498],{"type":45,"tag":95,"props":489,"children":490},{},[491],{"type":50,"value":492},"Status",{"type":45,"tag":95,"props":494,"children":495},{},[496],{"type":50,"value":497},"Meaning",{"type":45,"tag":95,"props":499,"children":500},{},[501],{"type":50,"value":502},"Orchestrator Action",{"type":45,"tag":116,"props":504,"children":505},{},[506,528,550,572],{"type":45,"tag":91,"props":507,"children":508},{},[509,518,523],{"type":45,"tag":123,"props":510,"children":511},{},[512],{"type":45,"tag":247,"props":513,"children":515},{"className":514},[],[516],{"type":50,"value":517},"DONE",{"type":45,"tag":123,"props":519,"children":520},{},[521],{"type":50,"value":522},"Task complete, tests pass",{"type":45,"tag":123,"props":524,"children":525},{},[526],{"type":50,"value":527},"Proceed to spec review",{"type":45,"tag":91,"props":529,"children":530},{},[531,540,545],{"type":45,"tag":123,"props":532,"children":533},{},[534],{"type":45,"tag":247,"props":535,"children":537},{"className":536},[],[538],{"type":50,"value":539},"DONE_WITH_CONCERNS",{"type":45,"tag":123,"props":541,"children":542},{},[543],{"type":50,"value":544},"Complete but flagged an issue",{"type":45,"tag":123,"props":546,"children":547},{},[548],{"type":50,"value":549},"Read concern, note it, proceed to review",{"type":45,"tag":91,"props":551,"children":552},{},[553,562,567],{"type":45,"tag":123,"props":554,"children":555},{},[556],{"type":45,"tag":247,"props":557,"children":559},{"className":558},[],[560],{"type":50,"value":561},"NEEDS_CONTEXT",{"type":45,"tag":123,"props":563,"children":564},{},[565],{"type":50,"value":566},"Missing info to proceed",{"type":45,"tag":123,"props":568,"children":569},{},[570],{"type":50,"value":571},"Investigate (grep\u002Fread), re-delegate with context",{"type":45,"tag":91,"props":573,"children":574},{},[575,584,589],{"type":45,"tag":123,"props":576,"children":577},{},[578],{"type":45,"tag":247,"props":579,"children":581},{"className":580},[],[582],{"type":50,"value":583},"BLOCKED",{"type":45,"tag":123,"props":585,"children":586},{},[587],{"type":50,"value":588},"Cannot complete at all",{"type":45,"tag":123,"props":590,"children":591},{},[592],{"type":50,"value":593},"Assess blocker, provide context or escalate",{"type":45,"tag":595,"props":596,"children":597},"style",{},[598],{"type":50,"value":599},"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":601,"total":791},[602,622,641,662,677,693,704,717,732,747,766,779],{"slug":603,"name":603,"fn":604,"description":605,"org":606,"tags":607,"stars":619,"repoUrl":620,"updatedAt":621},"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},[608,609,612,613,616],{"name":20,"slug":21,"type":15},{"name":610,"slug":611,"type":15},"Local Development","local-development",{"name":9,"slug":8,"type":15},{"name":614,"slug":615,"type":15},"Project Management","project-management",{"name":617,"slug":618,"type":15},"Rush","rush",6484,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Frushstack","2026-04-06T18:34:44.965032",{"slug":623,"name":623,"fn":624,"description":625,"org":626,"tags":627,"stars":638,"repoUrl":639,"updatedAt":640},"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},[628,631,632,635],{"name":629,"slug":630,"type":15},".NET","net",{"name":17,"slug":18,"type":15},{"name":633,"slug":634,"type":15},"Azure","azure",{"name":636,"slug":637,"type":15},"LLM","llm",2804,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fskills","2026-07-03T16:32:10.297433",{"slug":642,"name":642,"fn":643,"description":644,"org":645,"tags":646,"stars":638,"repoUrl":639,"updatedAt":661},"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},[647,650,651,654,657,658],{"name":648,"slug":649,"type":15},"Analytics","analytics",{"name":633,"slug":634,"type":15},{"name":652,"slug":653,"type":15},"Data Analysis","data-analysis",{"name":655,"slug":656,"type":15},"Java","java",{"name":9,"slug":8,"type":15},{"name":659,"slug":660,"type":15},"Monitoring","monitoring","2026-05-13T06:14:16.261754",{"slug":663,"name":663,"fn":664,"description":665,"org":666,"tags":667,"stars":638,"repoUrl":639,"updatedAt":676},"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},[668,671,672,673],{"name":669,"slug":670,"type":15},"AI Infrastructure","ai-infrastructure",{"name":633,"slug":634,"type":15},{"name":655,"slug":656,"type":15},{"name":674,"slug":675,"type":15},"Security","security","2026-07-07T06:53:31.293235",{"slug":678,"name":678,"fn":679,"description":680,"org":681,"tags":682,"stars":638,"repoUrl":639,"updatedAt":692},"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},[683,684,687,688,689,691],{"name":633,"slug":634,"type":15},{"name":685,"slug":686,"type":15},"Compliance","compliance",{"name":636,"slug":637,"type":15},{"name":9,"slug":8,"type":15},{"name":690,"slug":266,"type":15},"Python",{"name":674,"slug":675,"type":15},"2026-07-18T05:14:23.017504",{"slug":694,"name":694,"fn":695,"description":696,"org":697,"tags":698,"stars":638,"repoUrl":639,"updatedAt":703},"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},[699,700,701,702],{"name":648,"slug":649,"type":15},{"name":633,"slug":634,"type":15},{"name":636,"slug":637,"type":15},{"name":690,"slug":266,"type":15},"2026-07-31T05:54:29.068751",{"slug":705,"name":705,"fn":706,"description":707,"org":708,"tags":709,"stars":638,"repoUrl":639,"updatedAt":716},"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},[710,713,714,715],{"name":711,"slug":712,"type":15},"API Development","api-development",{"name":633,"slug":634,"type":15},{"name":9,"slug":8,"type":15},{"name":690,"slug":266,"type":15},"2026-07-18T05:14:16.988376",{"slug":718,"name":718,"fn":719,"description":720,"org":721,"tags":722,"stars":638,"repoUrl":639,"updatedAt":731},"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},[723,724,727,730],{"name":633,"slug":634,"type":15},{"name":725,"slug":726,"type":15},"Computer Vision","computer-vision",{"name":728,"slug":729,"type":15},"Images","images",{"name":690,"slug":266,"type":15},"2026-07-18T05:14:18.007737",{"slug":733,"name":733,"fn":734,"description":735,"org":736,"tags":737,"stars":638,"repoUrl":639,"updatedAt":746},"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},[738,739,742,745],{"name":633,"slug":634,"type":15},{"name":740,"slug":741,"type":15},"Configuration","configuration",{"name":743,"slug":744,"type":15},"Feature Flags","feature-flags",{"name":655,"slug":656,"type":15},"2026-07-03T16:32:01.278468",{"slug":748,"name":748,"fn":749,"description":750,"org":751,"tags":752,"stars":638,"repoUrl":639,"updatedAt":765},"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},[753,756,759,762],{"name":754,"slug":755,"type":15},"Cosmos DB","cosmos-db",{"name":757,"slug":758,"type":15},"Database","database",{"name":760,"slug":761,"type":15},"NoSQL","nosql",{"name":763,"slug":764,"type":15},"Rust","rust","2026-07-31T05:54:27.021432",{"slug":767,"name":767,"fn":749,"description":768,"org":769,"tags":770,"stars":638,"repoUrl":639,"updatedAt":778},"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},[771,772,773,774,775],{"name":754,"slug":755,"type":15},{"name":757,"slug":758,"type":15},{"name":9,"slug":8,"type":15},{"name":760,"slug":761,"type":15},{"name":776,"slug":777,"type":15},"TypeScript","typescript","2026-07-03T16:31:19.368382",{"slug":780,"name":780,"fn":781,"description":782,"org":783,"tags":784,"stars":638,"repoUrl":639,"updatedAt":790},"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},[785,786,787,788,789],{"name":633,"slug":634,"type":15},{"name":754,"slug":755,"type":15},{"name":757,"slug":758,"type":15},{"name":655,"slug":656,"type":15},{"name":760,"slug":761,"type":15},"2026-05-13T06:14:17.582229",267,{"items":793,"total":28},[794,810,818],{"slug":795,"name":795,"fn":796,"description":797,"org":798,"tags":799,"stars":28,"repoUrl":29,"updatedAt":809},"integration-testing-discipline","follow E2E testing discipline","4 principles for E2E testing discipline — observe first, fix in batches, expect long durations, check container state directly. NO FIXES DURING OBSERVATION RUNS.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[800,803,806],{"name":801,"slug":802,"type":15},"E2E Testing","e2e-testing",{"name":804,"slug":805,"type":15},"QA","qa",{"name":807,"slug":808,"type":15},"Testing","testing","2026-04-06T18:38:12.870937",{"slug":4,"name":4,"fn":5,"description":6,"org":811,"tags":812,"stars":28,"repoUrl":29,"updatedAt":30},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[813,814,815,816,817],{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"name":23,"slug":24,"type":15},{"name":26,"slug":27,"type":15},{"slug":819,"name":819,"fn":820,"description":821,"org":822,"tags":823,"stars":28,"repoUrl":29,"updatedAt":831},"superpowers-reference","look up Superpowers modes and patterns","Complete reference tables for Superpowers modes, agents, recipes, and anti-patterns",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[824,827,828],{"name":825,"slug":826,"type":15},"Agent Context","agent-context",{"name":17,"slug":18,"type":15},{"name":829,"slug":830,"type":15},"Reference","reference","2026-04-06T18:38:11.499321"]