[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-dotnet-nuget-trusted-publishing":3,"mdc-navhzs-key":37,"related-org-dotnet-nuget-trusted-publishing":1692,"related-repo-dotnet-nuget-trusted-publishing":1859},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":32,"sourceUrl":35,"mdContent":36},"nuget-trusted-publishing","configure NuGet trusted publishing with OIDC","Set up NuGet trusted publishing (OIDC) on a GitHub Actions repo — replaces long-lived API keys with short-lived tokens. USE FOR: trusted publishing, NuGet OIDC, keyless NuGet publish, migrate from NuGet API key, NuGet\u002Flogin, secure NuGet publishing. DO NOT USE FOR: publishing to private feeds or Azure Artifacts (OIDC is nuget.org only). INVOKES: shell (powershell or bash), edit, create, ask_user for guided repo setup.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"dotnet",".NET (Microsoft)","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fdotnet.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Security","security","tag",{"name":17,"slug":18,"type":15},"GitHub Actions","github-actions",{"name":20,"slug":21,"type":15},".NET","net",{"name":23,"slug":24,"type":15},"CI\u002FCD","ci-cd",4576,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fskills","2026-07-12T08:24:14.85349","MIT",332,[31],"agent-skills",{"repoUrl":26,"stars":25,"forks":29,"topics":33,"description":34},[31],"Repository for skills to assist AI coding agents with .NET and C#","https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fskills\u002Ftree\u002FHEAD\u002Fplugins\u002Fdotnet-advanced\u002Fskills\u002Fnuget-trusted-publishing","---\nname: nuget-trusted-publishing\ndescription: >\n  Set up NuGet trusted publishing (OIDC) on a GitHub Actions repo — replaces long-lived API keys\n  with short-lived tokens. USE FOR: trusted publishing, NuGet OIDC, keyless NuGet publish,\n  migrate from NuGet API key, NuGet\u002Flogin, secure NuGet publishing.\n  DO NOT USE FOR: publishing to private feeds or Azure Artifacts (OIDC is nuget.org only).\n  INVOKES: shell (powershell or bash), edit, create, ask_user for guided repo setup.\nlicense: MIT\n---\n\n# NuGet Trusted Publishing Setup\n\nSet up [NuGet trusted publishing](https:\u002F\u002Flearn.microsoft.com\u002Fen-us\u002Fnuget\u002Fnuget-org\u002Ftrusted-publishing) on a GitHub Actions repo. Replaces long-lived API keys with OIDC-based short-lived tokens — no secrets to rotate or leak.\n\n## Prerequisites\n\n- **GitHub Actions** — this skill covers GitHub Actions setup only\n- **nuget.org account** — the user needs access to create trusted publishing policies\n\n## When to Use This Skill\n\nUse this skill when:\n- Setting up trusted publishing for a NuGet package\n- Migrating from `secrets.NUGET_API_KEY` to OIDC-based publishing\n- Asked about keyless or secure NuGet publishing\n- Creating a new NuGet publish workflow from scratch\n- Asked to \"remove NuGet API key\" or \"use NuGet\u002Flogin\"\n- Setting up publishing for a dotnet tool, MCP server, or template package\n- Asked about `NuGet\u002Flogin@v1` or `id-token: write`\n\n## Safety Rules\n\n> ⚠️ **Bail-out rule**: If any phase fails after one fix attempt on an infrastructure\u002Fauth issue, stop and ask the user. Don't loop on environment problems.\n\n> ⚠️ **Never delete or overwrite without confirmation**: Removing API key secrets, deleting tags\u002Freleases, removing workflow steps, or changing package IDs. NuGet package IDs are permanent — mistakes can't be undone.\n\n## Process\n\n> **Fast-path for greenfield repos**: When the user has a simple setup (one packable project, no existing publish workflow), don't gate on multi-turn assessment. Combine phases: create the workflow immediately, include nuget.org policy guidance, local pack recommendation, and filename-matching warning all in one response. The full phased process below is for complex or migration scenarios.\n\n### Phase 1: Assess\n\nInspect the repo and report findings before making any changes.\n\n1. **Find and classify packable projects** — check `.csproj` files **and `Directory.Build.props`** (package metadata is often set repo-wide). Classify in this order (earlier matches win):\n   - `\u003CPackageType>Template\u003C\u002FPackageType>` → **Template**\n   - `\u003CPackageType>McpServer\u003C\u002FPackageType>` → **MCP server** (also a dotnet tool)\n   - `\u003CPackAsTool>true\u003C\u002FPackAsTool>` → **Dotnet tool**\n   - Class library (`IsPackable=true` or no `OutputType`) → **Library**\n   - `\u003COutputType>Exe\u003C\u002FOutputType>` with `\u003CIsPackable>true\u003C\u002FIsPackable>` → **Application package** (not a tool, but still publishable)\n   - `\u003COutputType>Exe\u003C\u002FOutputType>` without `PackAsTool` or `IsPackable` → Not packable by default (ask user if they intend to publish it)\n\n2. **Validate structure** for each project's type:\n\n   | Type | Required |\n   |------|----------|\n   | All | `PackageId`, `Version` (in .csproj or Directory.Build.props) |\n   | Dotnet tool | `PackAsTool` (required); `ToolCommandName` (optional but recommended — defaults to assembly name) |\n   | MCP server | `PackageType=McpServer`, `.mcp\u002Fserver.json` included in package |\n   | Template | `PackageType=Template`, `.template.config\u002Ftemplate.json` under content dir |\n\n3. **Find existing publish workflows** in `.github\u002Fworkflows\u002F` — look for `dotnet nuget push`, `nuget push`, or `dotnet pack`.\n\n4. **Check version consistency** — for MCP servers, verify `.csproj` `\u003CVersion>` matches both `server.json` version fields (root `version` and `packages[].version`). Flag any mismatch.\n\n5. **Report findings** to the user: classification, missing properties, version mismatches, existing workflows. For multi-project repos, note whether one workflow or separate workflows per package are needed. Offer to fix gaps — use `ask_user` before modifying project files.\n\n> ❌ See [references\u002Fpackage-types.md](references\u002Fpackage-types.md) for per-type details and required properties.\n\n### Phase 2: Local Verification\n\nPack and verify locally before touching nuget.org — publishing errors waste a permanent version number.\n\n> ⚠️ **Always mention this step**, even if you defer running it. Tell the user: \"Before your first publish, run `dotnet pack -c Release -o .\u002Fartifacts` to verify the .nupkg is created correctly.\"\n\n1. `dotnet pack -c Release -o .\u002Fartifacts` — verify `.nupkg` is created\n2. For tools\u002FMCP servers: install from `.\u002Fartifacts`, run `--help`, uninstall\n3. For libraries: inspect the `.nupkg` contents (it's a zip)\n\n### Phase 3: nuget.org Policy\n\nThis phase requires the user to act on nuget.org — guide them with exact values.\n\n1. Determine the **repo owner**, **repo name**, and the **workflow filename** that will publish.\n\n   > ❌ The policy requires the **exact workflow filename** (e.g., `publish.yml` or `publish.yaml`) — just the filename, no path prefix. Matching is case-insensitive. Don't use the workflow `name:` field.\n\n2. Guide the user to create the trusted publishing policy:\n   > Go to [**nuget.org\u002Faccount\u002Ftrustedpublishing**](https:\u002F\u002Fwww.nuget.org\u002Faccount\u002Ftrustedpublishing) → **Add policy**\n   >\n   > - **Repository Owner**: `{owner}`\n   > - **Repository**: `{repo}`\n   > - **Workflow File**: `{filename}.yml`\n   > - **Environment**: `release` *(only if the workflow uses `environment:`; leave blank otherwise)*\n\n   Policy ownership: the user chooses individual account or organization. Org-owned policies apply to all packages owned by that org.\n\n   For **private repos**: policy is \"temporarily active\" for 7 days — becomes permanent after the first successful publish.\n\n3. Guide the user to create a **GitHub Environment** (recommended but optional — provides secret scoping + approval gates):\n   > Repo **Settings** → **Environments** → **New environment** → `release`\n   >\n   > Add environment secret: **Name** = `NUGET_USER`, **Value** = nuget.org username (NOT email)\n\n   Optional: add **Required reviewers** for an approval gate.\n\n> ⚠️ Wait for the user to confirm they've created the policy **before asking them to remove old API keys\u002Fsecrets or before attempting to run\u002Fpublish with the workflow**. Drafting or showing the workflow file itself is OK before confirmation.\n\n### Phase 4: Workflow Setup\n\nCreate or modify the publish workflow. **The workflow must always be created or shown in your response** — you may draft\u002Fshow it even if the nuget.org policy is not yet confirmed, but do not guide the user to actually run\u002Fpublish or remove old secrets until after confirmation.\n\n**Greenfield**: Create `publish.yml` from the template in [references\u002Fpublish-workflow.md](references\u002Fpublish-workflow.md). Adapt .NET version, project path, and environment name. Ensure your output explicitly mentions `id-token: write` and `NuGet\u002Flogin@v1`.\n\n**Migration** (existing workflow with API key): Modify in place —\n\n1. **Add OIDC permission and environment** to the publishing job:\n   ```yaml\n   jobs:\n     publish:\n       environment: release\n       permissions:\n         id-token: write     # Required — without this, NuGet\u002Flogin fails with 403\n         contents: read      # Explicit — setting permissions overrides defaults\n   ```\n\n2. **Add the NuGet login step** before push:\n   ```yaml\n   - name: NuGet login (OIDC)\n     id: login\n     uses: NuGet\u002Flogin@v1\n     with:\n       user: ${{ secrets.NUGET_USER }}  # nuget.org profile name, NOT email\n   ```\n\n3. **Replace the API key** in the push step:\n   ```yaml\n   --api-key ${{ steps.login.outputs.NUGET_API_KEY }} --skip-duplicate\n   ```\n\n4. **Verify**: Ask the user to trigger a publish and confirm the package appears on nuget.org.\n\n> ❌ **Don't delete the old API key secret** until trusted publishing is verified. Removing it is a one-way door — wait for confirmation.\n\n## Troubleshooting\n\n| Problem | Cause | Fix |\n|---------|-------|-----|\n| `NuGet\u002Flogin` 403 | Missing `id-token: write` | Add to job permissions |\n| \"no matching policy\" | Workflow filename mismatch | Verify exact filename on nuget.org |\n| Push unauthorized | Package not owned by policy account | Check policy owner on nuget.org |\n| Token expired | Login step >1hr before push | Move `NuGet\u002Flogin` closer to push |\n| \"temporarily active\" policy | Private repo, first publish pending | Publish within 7 days |\n| `already_exists` on push | Re-running same version | Add `--skip-duplicate` |\n| GitHub Release 422 | Duplicate release for tag | Delete conflicting release (confirm first) |\n| Re-run uses wrong YAML | `gh run rerun` replays original commit's YAML | Delete obstacle, re-run — never re-tag |\n\n> ⚠️ If any blocker persists after one fix attempt, **stop and ask the user**.\n\n## References\n\n- **Package type details**: [references\u002Fpackage-types.md](references\u002Fpackage-types.md) — detection logic, required properties, minimal .csproj examples\n- **Publish workflow template**: [references\u002Fpublish-workflow.md](references\u002Fpublish-workflow.md) — complete tag-triggered workflow ready to adapt\n- **Microsoft docs**: [NuGet Trusted Publishing](https:\u002F\u002Flearn.microsoft.com\u002Fen-us\u002Fnuget\u002Fnuget-org\u002Ftrusted-publishing)\n",{"data":38,"body":39},{"name":4,"description":6,"license":28},{"type":40,"children":41},"root",[42,51,68,75,100,106,111,172,178,194,208,214,227,234,239,649,664,670,675,697,751,757,762,1035,1050,1056,1068,1104,1114,1390,1405,1411,1618,1632,1638,1686],{"type":43,"tag":44,"props":45,"children":47},"element","h1",{"id":46},"nuget-trusted-publishing-setup",[48],{"type":49,"value":50},"text","NuGet Trusted Publishing Setup",{"type":43,"tag":52,"props":53,"children":54},"p",{},[55,57,66],{"type":49,"value":56},"Set up ",{"type":43,"tag":58,"props":59,"children":63},"a",{"href":60,"rel":61},"https:\u002F\u002Flearn.microsoft.com\u002Fen-us\u002Fnuget\u002Fnuget-org\u002Ftrusted-publishing",[62],"nofollow",[64],{"type":49,"value":65},"NuGet trusted publishing",{"type":49,"value":67}," on a GitHub Actions repo. Replaces long-lived API keys with OIDC-based short-lived tokens — no secrets to rotate or leak.",{"type":43,"tag":69,"props":70,"children":72},"h2",{"id":71},"prerequisites",[73],{"type":49,"value":74},"Prerequisites",{"type":43,"tag":76,"props":77,"children":78},"ul",{},[79,90],{"type":43,"tag":80,"props":81,"children":82},"li",{},[83,88],{"type":43,"tag":84,"props":85,"children":86},"strong",{},[87],{"type":49,"value":17},{"type":49,"value":89}," — this skill covers GitHub Actions setup only",{"type":43,"tag":80,"props":91,"children":92},{},[93,98],{"type":43,"tag":84,"props":94,"children":95},{},[96],{"type":49,"value":97},"nuget.org account",{"type":49,"value":99}," — the user needs access to create trusted publishing policies",{"type":43,"tag":69,"props":101,"children":103},{"id":102},"when-to-use-this-skill",[104],{"type":49,"value":105},"When to Use This Skill",{"type":43,"tag":52,"props":107,"children":108},{},[109],{"type":49,"value":110},"Use this skill when:",{"type":43,"tag":76,"props":112,"children":113},{},[114,119,133,138,143,148,153],{"type":43,"tag":80,"props":115,"children":116},{},[117],{"type":49,"value":118},"Setting up trusted publishing for a NuGet package",{"type":43,"tag":80,"props":120,"children":121},{},[122,124,131],{"type":49,"value":123},"Migrating from ",{"type":43,"tag":125,"props":126,"children":128},"code",{"className":127},[],[129],{"type":49,"value":130},"secrets.NUGET_API_KEY",{"type":49,"value":132}," to OIDC-based publishing",{"type":43,"tag":80,"props":134,"children":135},{},[136],{"type":49,"value":137},"Asked about keyless or secure NuGet publishing",{"type":43,"tag":80,"props":139,"children":140},{},[141],{"type":49,"value":142},"Creating a new NuGet publish workflow from scratch",{"type":43,"tag":80,"props":144,"children":145},{},[146],{"type":49,"value":147},"Asked to \"remove NuGet API key\" or \"use NuGet\u002Flogin\"",{"type":43,"tag":80,"props":149,"children":150},{},[151],{"type":49,"value":152},"Setting up publishing for a dotnet tool, MCP server, or template package",{"type":43,"tag":80,"props":154,"children":155},{},[156,158,164,166],{"type":49,"value":157},"Asked about ",{"type":43,"tag":125,"props":159,"children":161},{"className":160},[],[162],{"type":49,"value":163},"NuGet\u002Flogin@v1",{"type":49,"value":165}," or ",{"type":43,"tag":125,"props":167,"children":169},{"className":168},[],[170],{"type":49,"value":171},"id-token: write",{"type":43,"tag":69,"props":173,"children":175},{"id":174},"safety-rules",[176],{"type":49,"value":177},"Safety Rules",{"type":43,"tag":179,"props":180,"children":181},"blockquote",{},[182],{"type":43,"tag":52,"props":183,"children":184},{},[185,187,192],{"type":49,"value":186},"⚠️ ",{"type":43,"tag":84,"props":188,"children":189},{},[190],{"type":49,"value":191},"Bail-out rule",{"type":49,"value":193},": If any phase fails after one fix attempt on an infrastructure\u002Fauth issue, stop and ask the user. Don't loop on environment problems.",{"type":43,"tag":179,"props":195,"children":196},{},[197],{"type":43,"tag":52,"props":198,"children":199},{},[200,201,206],{"type":49,"value":186},{"type":43,"tag":84,"props":202,"children":203},{},[204],{"type":49,"value":205},"Never delete or overwrite without confirmation",{"type":49,"value":207},": Removing API key secrets, deleting tags\u002Freleases, removing workflow steps, or changing package IDs. NuGet package IDs are permanent — mistakes can't be undone.",{"type":43,"tag":69,"props":209,"children":211},{"id":210},"process",[212],{"type":49,"value":213},"Process",{"type":43,"tag":179,"props":215,"children":216},{},[217],{"type":43,"tag":52,"props":218,"children":219},{},[220,225],{"type":43,"tag":84,"props":221,"children":222},{},[223],{"type":49,"value":224},"Fast-path for greenfield repos",{"type":49,"value":226},": When the user has a simple setup (one packable project, no existing publish workflow), don't gate on multi-turn assessment. Combine phases: create the workflow immediately, include nuget.org policy guidance, local pack recommendation, and filename-matching warning all in one response. The full phased process below is for complex or migration scenarios.",{"type":43,"tag":228,"props":229,"children":231},"h3",{"id":230},"phase-1-assess",[232],{"type":49,"value":233},"Phase 1: Assess",{"type":43,"tag":52,"props":235,"children":236},{},[237],{"type":49,"value":238},"Inspect the repo and report findings before making any changes.",{"type":43,"tag":240,"props":241,"children":242},"ol",{},[243,401,541,582,631],{"type":43,"tag":80,"props":244,"children":245},{},[246,251,253,259,261,272,274],{"type":43,"tag":84,"props":247,"children":248},{},[249],{"type":49,"value":250},"Find and classify packable projects",{"type":49,"value":252}," — check ",{"type":43,"tag":125,"props":254,"children":256},{"className":255},[],[257],{"type":49,"value":258},".csproj",{"type":49,"value":260}," files ",{"type":43,"tag":84,"props":262,"children":263},{},[264,266],{"type":49,"value":265},"and ",{"type":43,"tag":125,"props":267,"children":269},{"className":268},[],[270],{"type":49,"value":271},"Directory.Build.props",{"type":49,"value":273}," (package metadata is often set repo-wide). Classify in this order (earlier matches win):",{"type":43,"tag":76,"props":275,"children":276},{},[277,293,310,325,351,376],{"type":43,"tag":80,"props":278,"children":279},{},[280,286,288],{"type":43,"tag":125,"props":281,"children":283},{"className":282},[],[284],{"type":49,"value":285},"\u003CPackageType>Template\u003C\u002FPackageType>",{"type":49,"value":287}," → ",{"type":43,"tag":84,"props":289,"children":290},{},[291],{"type":49,"value":292},"Template",{"type":43,"tag":80,"props":294,"children":295},{},[296,302,303,308],{"type":43,"tag":125,"props":297,"children":299},{"className":298},[],[300],{"type":49,"value":301},"\u003CPackageType>McpServer\u003C\u002FPackageType>",{"type":49,"value":287},{"type":43,"tag":84,"props":304,"children":305},{},[306],{"type":49,"value":307},"MCP server",{"type":49,"value":309}," (also a dotnet tool)",{"type":43,"tag":80,"props":311,"children":312},{},[313,319,320],{"type":43,"tag":125,"props":314,"children":316},{"className":315},[],[317],{"type":49,"value":318},"\u003CPackAsTool>true\u003C\u002FPackAsTool>",{"type":49,"value":287},{"type":43,"tag":84,"props":321,"children":322},{},[323],{"type":49,"value":324},"Dotnet tool",{"type":43,"tag":80,"props":326,"children":327},{},[328,330,336,338,344,346],{"type":49,"value":329},"Class library (",{"type":43,"tag":125,"props":331,"children":333},{"className":332},[],[334],{"type":49,"value":335},"IsPackable=true",{"type":49,"value":337}," or no ",{"type":43,"tag":125,"props":339,"children":341},{"className":340},[],[342],{"type":49,"value":343},"OutputType",{"type":49,"value":345},") → ",{"type":43,"tag":84,"props":347,"children":348},{},[349],{"type":49,"value":350},"Library",{"type":43,"tag":80,"props":352,"children":353},{},[354,360,362,368,369,374],{"type":43,"tag":125,"props":355,"children":357},{"className":356},[],[358],{"type":49,"value":359},"\u003COutputType>Exe\u003C\u002FOutputType>",{"type":49,"value":361}," with ",{"type":43,"tag":125,"props":363,"children":365},{"className":364},[],[366],{"type":49,"value":367},"\u003CIsPackable>true\u003C\u002FIsPackable>",{"type":49,"value":287},{"type":43,"tag":84,"props":370,"children":371},{},[372],{"type":49,"value":373},"Application package",{"type":49,"value":375}," (not a tool, but still publishable)",{"type":43,"tag":80,"props":377,"children":378},{},[379,384,386,392,393,399],{"type":43,"tag":125,"props":380,"children":382},{"className":381},[],[383],{"type":49,"value":359},{"type":49,"value":385}," without ",{"type":43,"tag":125,"props":387,"children":389},{"className":388},[],[390],{"type":49,"value":391},"PackAsTool",{"type":49,"value":165},{"type":43,"tag":125,"props":394,"children":396},{"className":395},[],[397],{"type":49,"value":398},"IsPackable",{"type":49,"value":400}," → Not packable by default (ask user if they intend to publish it)",{"type":43,"tag":80,"props":402,"children":403},{},[404,409,411],{"type":43,"tag":84,"props":405,"children":406},{},[407],{"type":49,"value":408},"Validate structure",{"type":49,"value":410}," for each project's type:",{"type":43,"tag":412,"props":413,"children":414},"table",{},[415,434],{"type":43,"tag":416,"props":417,"children":418},"thead",{},[419],{"type":43,"tag":420,"props":421,"children":422},"tr",{},[423,429],{"type":43,"tag":424,"props":425,"children":426},"th",{},[427],{"type":49,"value":428},"Type",{"type":43,"tag":424,"props":430,"children":431},{},[432],{"type":49,"value":433},"Required",{"type":43,"tag":435,"props":436,"children":437},"tbody",{},[438,466,491,516],{"type":43,"tag":420,"props":439,"children":440},{},[441,447],{"type":43,"tag":442,"props":443,"children":444},"td",{},[445],{"type":49,"value":446},"All",{"type":43,"tag":442,"props":448,"children":449},{},[450,456,458,464],{"type":43,"tag":125,"props":451,"children":453},{"className":452},[],[454],{"type":49,"value":455},"PackageId",{"type":49,"value":457},", ",{"type":43,"tag":125,"props":459,"children":461},{"className":460},[],[462],{"type":49,"value":463},"Version",{"type":49,"value":465}," (in .csproj or Directory.Build.props)",{"type":43,"tag":420,"props":467,"children":468},{},[469,473],{"type":43,"tag":442,"props":470,"children":471},{},[472],{"type":49,"value":324},{"type":43,"tag":442,"props":474,"children":475},{},[476,481,483,489],{"type":43,"tag":125,"props":477,"children":479},{"className":478},[],[480],{"type":49,"value":391},{"type":49,"value":482}," (required); ",{"type":43,"tag":125,"props":484,"children":486},{"className":485},[],[487],{"type":49,"value":488},"ToolCommandName",{"type":49,"value":490}," (optional but recommended — defaults to assembly name)",{"type":43,"tag":420,"props":492,"children":493},{},[494,498],{"type":43,"tag":442,"props":495,"children":496},{},[497],{"type":49,"value":307},{"type":43,"tag":442,"props":499,"children":500},{},[501,507,508,514],{"type":43,"tag":125,"props":502,"children":504},{"className":503},[],[505],{"type":49,"value":506},"PackageType=McpServer",{"type":49,"value":457},{"type":43,"tag":125,"props":509,"children":511},{"className":510},[],[512],{"type":49,"value":513},".mcp\u002Fserver.json",{"type":49,"value":515}," included in package",{"type":43,"tag":420,"props":517,"children":518},{},[519,523],{"type":43,"tag":442,"props":520,"children":521},{},[522],{"type":49,"value":292},{"type":43,"tag":442,"props":524,"children":525},{},[526,532,533,539],{"type":43,"tag":125,"props":527,"children":529},{"className":528},[],[530],{"type":49,"value":531},"PackageType=Template",{"type":49,"value":457},{"type":43,"tag":125,"props":534,"children":536},{"className":535},[],[537],{"type":49,"value":538},".template.config\u002Ftemplate.json",{"type":49,"value":540}," under content dir",{"type":43,"tag":80,"props":542,"children":543},{},[544,549,551,557,559,565,566,572,574,580],{"type":43,"tag":84,"props":545,"children":546},{},[547],{"type":49,"value":548},"Find existing publish workflows",{"type":49,"value":550}," in ",{"type":43,"tag":125,"props":552,"children":554},{"className":553},[],[555],{"type":49,"value":556},".github\u002Fworkflows\u002F",{"type":49,"value":558}," — look for ",{"type":43,"tag":125,"props":560,"children":562},{"className":561},[],[563],{"type":49,"value":564},"dotnet nuget push",{"type":49,"value":457},{"type":43,"tag":125,"props":567,"children":569},{"className":568},[],[570],{"type":49,"value":571},"nuget push",{"type":49,"value":573},", or ",{"type":43,"tag":125,"props":575,"children":577},{"className":576},[],[578],{"type":49,"value":579},"dotnet pack",{"type":49,"value":581},".",{"type":43,"tag":80,"props":583,"children":584},{},[585,590,592,597,599,605,607,613,615,621,623,629],{"type":43,"tag":84,"props":586,"children":587},{},[588],{"type":49,"value":589},"Check version consistency",{"type":49,"value":591}," — for MCP servers, verify ",{"type":43,"tag":125,"props":593,"children":595},{"className":594},[],[596],{"type":49,"value":258},{"type":49,"value":598}," ",{"type":43,"tag":125,"props":600,"children":602},{"className":601},[],[603],{"type":49,"value":604},"\u003CVersion>",{"type":49,"value":606}," matches both ",{"type":43,"tag":125,"props":608,"children":610},{"className":609},[],[611],{"type":49,"value":612},"server.json",{"type":49,"value":614}," version fields (root ",{"type":43,"tag":125,"props":616,"children":618},{"className":617},[],[619],{"type":49,"value":620},"version",{"type":49,"value":622}," and ",{"type":43,"tag":125,"props":624,"children":626},{"className":625},[],[627],{"type":49,"value":628},"packages[].version",{"type":49,"value":630},"). Flag any mismatch.",{"type":43,"tag":80,"props":632,"children":633},{},[634,639,641,647],{"type":43,"tag":84,"props":635,"children":636},{},[637],{"type":49,"value":638},"Report findings",{"type":49,"value":640}," to the user: classification, missing properties, version mismatches, existing workflows. For multi-project repos, note whether one workflow or separate workflows per package are needed. Offer to fix gaps — use ",{"type":43,"tag":125,"props":642,"children":644},{"className":643},[],[645],{"type":49,"value":646},"ask_user",{"type":49,"value":648}," before modifying project files.",{"type":43,"tag":179,"props":650,"children":651},{},[652],{"type":43,"tag":52,"props":653,"children":654},{},[655,657,662],{"type":49,"value":656},"❌ See ",{"type":43,"tag":58,"props":658,"children":660},{"href":659},"references\u002Fpackage-types.md",[661],{"type":49,"value":659},{"type":49,"value":663}," for per-type details and required properties.",{"type":43,"tag":228,"props":665,"children":667},{"id":666},"phase-2-local-verification",[668],{"type":49,"value":669},"Phase 2: Local Verification",{"type":43,"tag":52,"props":671,"children":672},{},[673],{"type":49,"value":674},"Pack and verify locally before touching nuget.org — publishing errors waste a permanent version number.",{"type":43,"tag":179,"props":676,"children":677},{},[678],{"type":43,"tag":52,"props":679,"children":680},{},[681,682,687,689,695],{"type":49,"value":186},{"type":43,"tag":84,"props":683,"children":684},{},[685],{"type":49,"value":686},"Always mention this step",{"type":49,"value":688},", even if you defer running it. Tell the user: \"Before your first publish, run ",{"type":43,"tag":125,"props":690,"children":692},{"className":691},[],[693],{"type":49,"value":694},"dotnet pack -c Release -o .\u002Fartifacts",{"type":49,"value":696}," to verify the .nupkg is created correctly.\"",{"type":43,"tag":240,"props":698,"children":699},{},[700,718,739],{"type":43,"tag":80,"props":701,"children":702},{},[703,708,710,716],{"type":43,"tag":125,"props":704,"children":706},{"className":705},[],[707],{"type":49,"value":694},{"type":49,"value":709}," — verify ",{"type":43,"tag":125,"props":711,"children":713},{"className":712},[],[714],{"type":49,"value":715},".nupkg",{"type":49,"value":717}," is created",{"type":43,"tag":80,"props":719,"children":720},{},[721,723,729,731,737],{"type":49,"value":722},"For tools\u002FMCP servers: install from ",{"type":43,"tag":125,"props":724,"children":726},{"className":725},[],[727],{"type":49,"value":728},".\u002Fartifacts",{"type":49,"value":730},", run ",{"type":43,"tag":125,"props":732,"children":734},{"className":733},[],[735],{"type":49,"value":736},"--help",{"type":49,"value":738},", uninstall",{"type":43,"tag":80,"props":740,"children":741},{},[742,744,749],{"type":49,"value":743},"For libraries: inspect the ",{"type":43,"tag":125,"props":745,"children":747},{"className":746},[],[748],{"type":49,"value":715},{"type":49,"value":750}," contents (it's a zip)",{"type":43,"tag":228,"props":752,"children":754},{"id":753},"phase-3-nugetorg-policy",[755],{"type":49,"value":756},"Phase 3: nuget.org Policy",{"type":43,"tag":52,"props":758,"children":759},{},[760],{"type":49,"value":761},"This phase requires the user to act on nuget.org — guide them with exact values.",{"type":43,"tag":240,"props":763,"children":764},{},[765,828,954],{"type":43,"tag":80,"props":766,"children":767},{},[768,770,775,776,781,783,788,790],{"type":49,"value":769},"Determine the ",{"type":43,"tag":84,"props":771,"children":772},{},[773],{"type":49,"value":774},"repo owner",{"type":49,"value":457},{"type":43,"tag":84,"props":777,"children":778},{},[779],{"type":49,"value":780},"repo name",{"type":49,"value":782},", and the ",{"type":43,"tag":84,"props":784,"children":785},{},[786],{"type":49,"value":787},"workflow filename",{"type":49,"value":789}," that will publish.",{"type":43,"tag":179,"props":791,"children":792},{},[793],{"type":43,"tag":52,"props":794,"children":795},{},[796,798,803,805,811,812,818,820,826],{"type":49,"value":797},"❌ The policy requires the ",{"type":43,"tag":84,"props":799,"children":800},{},[801],{"type":49,"value":802},"exact workflow filename",{"type":49,"value":804}," (e.g., ",{"type":43,"tag":125,"props":806,"children":808},{"className":807},[],[809],{"type":49,"value":810},"publish.yml",{"type":49,"value":165},{"type":43,"tag":125,"props":813,"children":815},{"className":814},[],[816],{"type":49,"value":817},"publish.yaml",{"type":49,"value":819},") — just the filename, no path prefix. Matching is case-insensitive. Don't use the workflow ",{"type":43,"tag":125,"props":821,"children":823},{"className":822},[],[824],{"type":49,"value":825},"name:",{"type":49,"value":827}," field.",{"type":43,"tag":80,"props":829,"children":830},{},[831,833,936,940,942,945,947,952],{"type":49,"value":832},"Guide the user to create the trusted publishing policy:",{"type":43,"tag":179,"props":834,"children":835},{},[836,857],{"type":43,"tag":52,"props":837,"children":838},{},[839,841,851,852],{"type":49,"value":840},"Go to ",{"type":43,"tag":58,"props":842,"children":845},{"href":843,"rel":844},"https:\u002F\u002Fwww.nuget.org\u002Faccount\u002Ftrustedpublishing",[62],[846],{"type":43,"tag":84,"props":847,"children":848},{},[849],{"type":49,"value":850},"nuget.org\u002Faccount\u002Ftrustedpublishing",{"type":49,"value":287},{"type":43,"tag":84,"props":853,"children":854},{},[855],{"type":49,"value":856},"Add policy",{"type":43,"tag":76,"props":858,"children":859},{},[860,876,891,906],{"type":43,"tag":80,"props":861,"children":862},{},[863,868,870],{"type":43,"tag":84,"props":864,"children":865},{},[866],{"type":49,"value":867},"Repository Owner",{"type":49,"value":869},": ",{"type":43,"tag":125,"props":871,"children":873},{"className":872},[],[874],{"type":49,"value":875},"{owner}",{"type":43,"tag":80,"props":877,"children":878},{},[879,884,885],{"type":43,"tag":84,"props":880,"children":881},{},[882],{"type":49,"value":883},"Repository",{"type":49,"value":869},{"type":43,"tag":125,"props":886,"children":888},{"className":887},[],[889],{"type":49,"value":890},"{repo}",{"type":43,"tag":80,"props":892,"children":893},{},[894,899,900],{"type":43,"tag":84,"props":895,"children":896},{},[897],{"type":49,"value":898},"Workflow File",{"type":49,"value":869},{"type":43,"tag":125,"props":901,"children":903},{"className":902},[],[904],{"type":49,"value":905},"{filename}.yml",{"type":43,"tag":80,"props":907,"children":908},{},[909,914,915,921,922],{"type":43,"tag":84,"props":910,"children":911},{},[912],{"type":49,"value":913},"Environment",{"type":49,"value":869},{"type":43,"tag":125,"props":916,"children":918},{"className":917},[],[919],{"type":49,"value":920},"release",{"type":49,"value":598},{"type":43,"tag":923,"props":924,"children":925},"em",{},[926,928,934],{"type":49,"value":927},"(only if the workflow uses ",{"type":43,"tag":125,"props":929,"children":931},{"className":930},[],[932],{"type":49,"value":933},"environment:",{"type":49,"value":935},"; leave blank otherwise)",{"type":43,"tag":937,"props":938,"children":939},"br",{},[],{"type":49,"value":941},"Policy ownership: the user chooses individual account or organization. Org-owned policies apply to all packages owned by that org.",{"type":43,"tag":937,"props":943,"children":944},{},[],{"type":49,"value":946},"For ",{"type":43,"tag":84,"props":948,"children":949},{},[950],{"type":49,"value":951},"private repos",{"type":49,"value":953},": policy is \"temporarily active\" for 7 days — becomes permanent after the first successful publish.",{"type":43,"tag":80,"props":955,"children":956},{},[957,959,964,966,1023,1026,1028,1033],{"type":49,"value":958},"Guide the user to create a ",{"type":43,"tag":84,"props":960,"children":961},{},[962],{"type":49,"value":963},"GitHub Environment",{"type":49,"value":965}," (recommended but optional — provides secret scoping + approval gates):",{"type":43,"tag":179,"props":967,"children":968},{},[969,997],{"type":43,"tag":52,"props":970,"children":971},{},[972,974,979,980,985,986,991,992],{"type":49,"value":973},"Repo ",{"type":43,"tag":84,"props":975,"children":976},{},[977],{"type":49,"value":978},"Settings",{"type":49,"value":287},{"type":43,"tag":84,"props":981,"children":982},{},[983],{"type":49,"value":984},"Environments",{"type":49,"value":287},{"type":43,"tag":84,"props":987,"children":988},{},[989],{"type":49,"value":990},"New environment",{"type":49,"value":287},{"type":43,"tag":125,"props":993,"children":995},{"className":994},[],[996],{"type":49,"value":920},{"type":43,"tag":52,"props":998,"children":999},{},[1000,1002,1007,1009,1015,1016,1021],{"type":49,"value":1001},"Add environment secret: ",{"type":43,"tag":84,"props":1003,"children":1004},{},[1005],{"type":49,"value":1006},"Name",{"type":49,"value":1008}," = ",{"type":43,"tag":125,"props":1010,"children":1012},{"className":1011},[],[1013],{"type":49,"value":1014},"NUGET_USER",{"type":49,"value":457},{"type":43,"tag":84,"props":1017,"children":1018},{},[1019],{"type":49,"value":1020},"Value",{"type":49,"value":1022}," = nuget.org username (NOT email)",{"type":43,"tag":937,"props":1024,"children":1025},{},[],{"type":49,"value":1027},"Optional: add ",{"type":43,"tag":84,"props":1029,"children":1030},{},[1031],{"type":49,"value":1032},"Required reviewers",{"type":49,"value":1034}," for an approval gate.",{"type":43,"tag":179,"props":1036,"children":1037},{},[1038],{"type":43,"tag":52,"props":1039,"children":1040},{},[1041,1043,1048],{"type":49,"value":1042},"⚠️ Wait for the user to confirm they've created the policy ",{"type":43,"tag":84,"props":1044,"children":1045},{},[1046],{"type":49,"value":1047},"before asking them to remove old API keys\u002Fsecrets or before attempting to run\u002Fpublish with the workflow",{"type":49,"value":1049},". Drafting or showing the workflow file itself is OK before confirmation.",{"type":43,"tag":228,"props":1051,"children":1053},{"id":1052},"phase-4-workflow-setup",[1054],{"type":49,"value":1055},"Phase 4: Workflow Setup",{"type":43,"tag":52,"props":1057,"children":1058},{},[1059,1061,1066],{"type":49,"value":1060},"Create or modify the publish workflow. ",{"type":43,"tag":84,"props":1062,"children":1063},{},[1064],{"type":49,"value":1065},"The workflow must always be created or shown in your response",{"type":49,"value":1067}," — you may draft\u002Fshow it even if the nuget.org policy is not yet confirmed, but do not guide the user to actually run\u002Fpublish or remove old secrets until after confirmation.",{"type":43,"tag":52,"props":1069,"children":1070},{},[1071,1076,1078,1083,1085,1090,1092,1097,1098,1103],{"type":43,"tag":84,"props":1072,"children":1073},{},[1074],{"type":49,"value":1075},"Greenfield",{"type":49,"value":1077},": Create ",{"type":43,"tag":125,"props":1079,"children":1081},{"className":1080},[],[1082],{"type":49,"value":810},{"type":49,"value":1084}," from the template in ",{"type":43,"tag":58,"props":1086,"children":1088},{"href":1087},"references\u002Fpublish-workflow.md",[1089],{"type":49,"value":1087},{"type":49,"value":1091},". Adapt .NET version, project path, and environment name. Ensure your output explicitly mentions ",{"type":43,"tag":125,"props":1093,"children":1095},{"className":1094},[],[1096],{"type":49,"value":171},{"type":49,"value":622},{"type":43,"tag":125,"props":1099,"children":1101},{"className":1100},[],[1102],{"type":49,"value":163},{"type":49,"value":581},{"type":43,"tag":52,"props":1105,"children":1106},{},[1107,1112],{"type":43,"tag":84,"props":1108,"children":1109},{},[1110],{"type":49,"value":1111},"Migration",{"type":49,"value":1113}," (existing workflow with API key): Modify in place —",{"type":43,"tag":240,"props":1115,"children":1116},{},[1117,1249,1356,1380],{"type":43,"tag":80,"props":1118,"children":1119},{},[1120,1125,1127],{"type":43,"tag":84,"props":1121,"children":1122},{},[1123],{"type":49,"value":1124},"Add OIDC permission and environment",{"type":49,"value":1126}," to the publishing job:",{"type":43,"tag":1128,"props":1129,"children":1134},"pre",{"className":1130,"code":1131,"language":1132,"meta":1133,"style":1133},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","jobs:\n  publish:\n    environment: release\n    permissions:\n      id-token: write     # Required — without this, NuGet\u002Flogin fails with 403\n      contents: read      # Explicit — setting permissions overrides defaults\n","yaml","",[1135],{"type":43,"tag":125,"props":1136,"children":1137},{"__ignoreMap":1133},[1138,1156,1169,1189,1202,1226],{"type":43,"tag":1139,"props":1140,"children":1143},"span",{"class":1141,"line":1142},"line",1,[1144,1150],{"type":43,"tag":1139,"props":1145,"children":1147},{"style":1146},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[1148],{"type":49,"value":1149},"jobs",{"type":43,"tag":1139,"props":1151,"children":1153},{"style":1152},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[1154],{"type":49,"value":1155},":\n",{"type":43,"tag":1139,"props":1157,"children":1159},{"class":1141,"line":1158},2,[1160,1165],{"type":43,"tag":1139,"props":1161,"children":1162},{"style":1146},[1163],{"type":49,"value":1164},"  publish",{"type":43,"tag":1139,"props":1166,"children":1167},{"style":1152},[1168],{"type":49,"value":1155},{"type":43,"tag":1139,"props":1170,"children":1172},{"class":1141,"line":1171},3,[1173,1178,1183],{"type":43,"tag":1139,"props":1174,"children":1175},{"style":1146},[1176],{"type":49,"value":1177},"    environment",{"type":43,"tag":1139,"props":1179,"children":1180},{"style":1152},[1181],{"type":49,"value":1182},":",{"type":43,"tag":1139,"props":1184,"children":1186},{"style":1185},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[1187],{"type":49,"value":1188}," release\n",{"type":43,"tag":1139,"props":1190,"children":1192},{"class":1141,"line":1191},4,[1193,1198],{"type":43,"tag":1139,"props":1194,"children":1195},{"style":1146},[1196],{"type":49,"value":1197},"    permissions",{"type":43,"tag":1139,"props":1199,"children":1200},{"style":1152},[1201],{"type":49,"value":1155},{"type":43,"tag":1139,"props":1203,"children":1205},{"class":1141,"line":1204},5,[1206,1211,1215,1220],{"type":43,"tag":1139,"props":1207,"children":1208},{"style":1146},[1209],{"type":49,"value":1210},"      id-token",{"type":43,"tag":1139,"props":1212,"children":1213},{"style":1152},[1214],{"type":49,"value":1182},{"type":43,"tag":1139,"props":1216,"children":1217},{"style":1185},[1218],{"type":49,"value":1219}," write",{"type":43,"tag":1139,"props":1221,"children":1223},{"style":1222},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[1224],{"type":49,"value":1225},"     # Required — without this, NuGet\u002Flogin fails with 403\n",{"type":43,"tag":1139,"props":1227,"children":1229},{"class":1141,"line":1228},6,[1230,1235,1239,1244],{"type":43,"tag":1139,"props":1231,"children":1232},{"style":1146},[1233],{"type":49,"value":1234},"      contents",{"type":43,"tag":1139,"props":1236,"children":1237},{"style":1152},[1238],{"type":49,"value":1182},{"type":43,"tag":1139,"props":1240,"children":1241},{"style":1185},[1242],{"type":49,"value":1243}," read",{"type":43,"tag":1139,"props":1245,"children":1246},{"style":1222},[1247],{"type":49,"value":1248},"      # Explicit — setting permissions overrides defaults\n",{"type":43,"tag":80,"props":1250,"children":1251},{},[1252,1257,1259],{"type":43,"tag":84,"props":1253,"children":1254},{},[1255],{"type":49,"value":1256},"Add the NuGet login step",{"type":49,"value":1258}," before push:",{"type":43,"tag":1128,"props":1260,"children":1262},{"className":1130,"code":1261,"language":1132,"meta":1133,"style":1133},"- name: NuGet login (OIDC)\n  id: login\n  uses: NuGet\u002Flogin@v1\n  with:\n    user: ${{ secrets.NUGET_USER }}  # nuget.org profile name, NOT email\n",[1263],{"type":43,"tag":125,"props":1264,"children":1265},{"__ignoreMap":1133},[1266,1288,1305,1322,1334],{"type":43,"tag":1139,"props":1267,"children":1268},{"class":1141,"line":1142},[1269,1274,1279,1283],{"type":43,"tag":1139,"props":1270,"children":1271},{"style":1152},[1272],{"type":49,"value":1273},"-",{"type":43,"tag":1139,"props":1275,"children":1276},{"style":1146},[1277],{"type":49,"value":1278}," name",{"type":43,"tag":1139,"props":1280,"children":1281},{"style":1152},[1282],{"type":49,"value":1182},{"type":43,"tag":1139,"props":1284,"children":1285},{"style":1185},[1286],{"type":49,"value":1287}," NuGet login (OIDC)\n",{"type":43,"tag":1139,"props":1289,"children":1290},{"class":1141,"line":1158},[1291,1296,1300],{"type":43,"tag":1139,"props":1292,"children":1293},{"style":1146},[1294],{"type":49,"value":1295},"  id",{"type":43,"tag":1139,"props":1297,"children":1298},{"style":1152},[1299],{"type":49,"value":1182},{"type":43,"tag":1139,"props":1301,"children":1302},{"style":1185},[1303],{"type":49,"value":1304}," login\n",{"type":43,"tag":1139,"props":1306,"children":1307},{"class":1141,"line":1171},[1308,1313,1317],{"type":43,"tag":1139,"props":1309,"children":1310},{"style":1146},[1311],{"type":49,"value":1312},"  uses",{"type":43,"tag":1139,"props":1314,"children":1315},{"style":1152},[1316],{"type":49,"value":1182},{"type":43,"tag":1139,"props":1318,"children":1319},{"style":1185},[1320],{"type":49,"value":1321}," NuGet\u002Flogin@v1\n",{"type":43,"tag":1139,"props":1323,"children":1324},{"class":1141,"line":1191},[1325,1330],{"type":43,"tag":1139,"props":1326,"children":1327},{"style":1146},[1328],{"type":49,"value":1329},"  with",{"type":43,"tag":1139,"props":1331,"children":1332},{"style":1152},[1333],{"type":49,"value":1155},{"type":43,"tag":1139,"props":1335,"children":1336},{"class":1141,"line":1204},[1337,1342,1346,1351],{"type":43,"tag":1139,"props":1338,"children":1339},{"style":1146},[1340],{"type":49,"value":1341},"    user",{"type":43,"tag":1139,"props":1343,"children":1344},{"style":1152},[1345],{"type":49,"value":1182},{"type":43,"tag":1139,"props":1347,"children":1348},{"style":1185},[1349],{"type":49,"value":1350}," ${{ secrets.NUGET_USER }}",{"type":43,"tag":1139,"props":1352,"children":1353},{"style":1222},[1354],{"type":49,"value":1355},"  # nuget.org profile name, NOT email\n",{"type":43,"tag":80,"props":1357,"children":1358},{},[1359,1364,1366],{"type":43,"tag":84,"props":1360,"children":1361},{},[1362],{"type":49,"value":1363},"Replace the API key",{"type":49,"value":1365}," in the push step:",{"type":43,"tag":1128,"props":1367,"children":1369},{"className":1130,"code":1368,"language":1132,"meta":1133,"style":1133},"--api-key ${{ steps.login.outputs.NUGET_API_KEY }} --skip-duplicate\n",[1370],{"type":43,"tag":125,"props":1371,"children":1372},{"__ignoreMap":1133},[1373],{"type":43,"tag":1139,"props":1374,"children":1375},{"class":1141,"line":1142},[1376],{"type":43,"tag":1139,"props":1377,"children":1378},{"style":1185},[1379],{"type":49,"value":1368},{"type":43,"tag":80,"props":1381,"children":1382},{},[1383,1388],{"type":43,"tag":84,"props":1384,"children":1385},{},[1386],{"type":49,"value":1387},"Verify",{"type":49,"value":1389},": Ask the user to trigger a publish and confirm the package appears on nuget.org.",{"type":43,"tag":179,"props":1391,"children":1392},{},[1393],{"type":43,"tag":52,"props":1394,"children":1395},{},[1396,1398,1403],{"type":49,"value":1397},"❌ ",{"type":43,"tag":84,"props":1399,"children":1400},{},[1401],{"type":49,"value":1402},"Don't delete the old API key secret",{"type":49,"value":1404}," until trusted publishing is verified. Removing it is a one-way door — wait for confirmation.",{"type":43,"tag":69,"props":1406,"children":1408},{"id":1407},"troubleshooting",[1409],{"type":49,"value":1410},"Troubleshooting",{"type":43,"tag":412,"props":1412,"children":1413},{},[1414,1435],{"type":43,"tag":416,"props":1415,"children":1416},{},[1417],{"type":43,"tag":420,"props":1418,"children":1419},{},[1420,1425,1430],{"type":43,"tag":424,"props":1421,"children":1422},{},[1423],{"type":49,"value":1424},"Problem",{"type":43,"tag":424,"props":1426,"children":1427},{},[1428],{"type":49,"value":1429},"Cause",{"type":43,"tag":424,"props":1431,"children":1432},{},[1433],{"type":49,"value":1434},"Fix",{"type":43,"tag":435,"props":1436,"children":1437},{},[1438,1467,1485,1503,1528,1546,1576,1594],{"type":43,"tag":420,"props":1439,"children":1440},{},[1441,1452,1462],{"type":43,"tag":442,"props":1442,"children":1443},{},[1444,1450],{"type":43,"tag":125,"props":1445,"children":1447},{"className":1446},[],[1448],{"type":49,"value":1449},"NuGet\u002Flogin",{"type":49,"value":1451}," 403",{"type":43,"tag":442,"props":1453,"children":1454},{},[1455,1457],{"type":49,"value":1456},"Missing ",{"type":43,"tag":125,"props":1458,"children":1460},{"className":1459},[],[1461],{"type":49,"value":171},{"type":43,"tag":442,"props":1463,"children":1464},{},[1465],{"type":49,"value":1466},"Add to job permissions",{"type":43,"tag":420,"props":1468,"children":1469},{},[1470,1475,1480],{"type":43,"tag":442,"props":1471,"children":1472},{},[1473],{"type":49,"value":1474},"\"no matching policy\"",{"type":43,"tag":442,"props":1476,"children":1477},{},[1478],{"type":49,"value":1479},"Workflow filename mismatch",{"type":43,"tag":442,"props":1481,"children":1482},{},[1483],{"type":49,"value":1484},"Verify exact filename on nuget.org",{"type":43,"tag":420,"props":1486,"children":1487},{},[1488,1493,1498],{"type":43,"tag":442,"props":1489,"children":1490},{},[1491],{"type":49,"value":1492},"Push unauthorized",{"type":43,"tag":442,"props":1494,"children":1495},{},[1496],{"type":49,"value":1497},"Package not owned by policy account",{"type":43,"tag":442,"props":1499,"children":1500},{},[1501],{"type":49,"value":1502},"Check policy owner on nuget.org",{"type":43,"tag":420,"props":1504,"children":1505},{},[1506,1511,1516],{"type":43,"tag":442,"props":1507,"children":1508},{},[1509],{"type":49,"value":1510},"Token expired",{"type":43,"tag":442,"props":1512,"children":1513},{},[1514],{"type":49,"value":1515},"Login step >1hr before push",{"type":43,"tag":442,"props":1517,"children":1518},{},[1519,1521,1526],{"type":49,"value":1520},"Move ",{"type":43,"tag":125,"props":1522,"children":1524},{"className":1523},[],[1525],{"type":49,"value":1449},{"type":49,"value":1527}," closer to push",{"type":43,"tag":420,"props":1529,"children":1530},{},[1531,1536,1541],{"type":43,"tag":442,"props":1532,"children":1533},{},[1534],{"type":49,"value":1535},"\"temporarily active\" policy",{"type":43,"tag":442,"props":1537,"children":1538},{},[1539],{"type":49,"value":1540},"Private repo, first publish pending",{"type":43,"tag":442,"props":1542,"children":1543},{},[1544],{"type":49,"value":1545},"Publish within 7 days",{"type":43,"tag":420,"props":1547,"children":1548},{},[1549,1560,1565],{"type":43,"tag":442,"props":1550,"children":1551},{},[1552,1558],{"type":43,"tag":125,"props":1553,"children":1555},{"className":1554},[],[1556],{"type":49,"value":1557},"already_exists",{"type":49,"value":1559}," on push",{"type":43,"tag":442,"props":1561,"children":1562},{},[1563],{"type":49,"value":1564},"Re-running same version",{"type":43,"tag":442,"props":1566,"children":1567},{},[1568,1570],{"type":49,"value":1569},"Add ",{"type":43,"tag":125,"props":1571,"children":1573},{"className":1572},[],[1574],{"type":49,"value":1575},"--skip-duplicate",{"type":43,"tag":420,"props":1577,"children":1578},{},[1579,1584,1589],{"type":43,"tag":442,"props":1580,"children":1581},{},[1582],{"type":49,"value":1583},"GitHub Release 422",{"type":43,"tag":442,"props":1585,"children":1586},{},[1587],{"type":49,"value":1588},"Duplicate release for tag",{"type":43,"tag":442,"props":1590,"children":1591},{},[1592],{"type":49,"value":1593},"Delete conflicting release (confirm first)",{"type":43,"tag":420,"props":1595,"children":1596},{},[1597,1602,1613],{"type":43,"tag":442,"props":1598,"children":1599},{},[1600],{"type":49,"value":1601},"Re-run uses wrong YAML",{"type":43,"tag":442,"props":1603,"children":1604},{},[1605,1611],{"type":43,"tag":125,"props":1606,"children":1608},{"className":1607},[],[1609],{"type":49,"value":1610},"gh run rerun",{"type":49,"value":1612}," replays original commit's YAML",{"type":43,"tag":442,"props":1614,"children":1615},{},[1616],{"type":49,"value":1617},"Delete obstacle, re-run — never re-tag",{"type":43,"tag":179,"props":1619,"children":1620},{},[1621],{"type":43,"tag":52,"props":1622,"children":1623},{},[1624,1626,1631],{"type":49,"value":1625},"⚠️ If any blocker persists after one fix attempt, ",{"type":43,"tag":84,"props":1627,"children":1628},{},[1629],{"type":49,"value":1630},"stop and ask the user",{"type":49,"value":581},{"type":43,"tag":69,"props":1633,"children":1635},{"id":1634},"references",[1636],{"type":49,"value":1637},"References",{"type":43,"tag":76,"props":1639,"children":1640},{},[1641,1656,1671],{"type":43,"tag":80,"props":1642,"children":1643},{},[1644,1649,1650,1654],{"type":43,"tag":84,"props":1645,"children":1646},{},[1647],{"type":49,"value":1648},"Package type details",{"type":49,"value":869},{"type":43,"tag":58,"props":1651,"children":1652},{"href":659},[1653],{"type":49,"value":659},{"type":49,"value":1655}," — detection logic, required properties, minimal .csproj examples",{"type":43,"tag":80,"props":1657,"children":1658},{},[1659,1664,1665,1669],{"type":43,"tag":84,"props":1660,"children":1661},{},[1662],{"type":49,"value":1663},"Publish workflow template",{"type":49,"value":869},{"type":43,"tag":58,"props":1666,"children":1667},{"href":1087},[1668],{"type":49,"value":1087},{"type":49,"value":1670}," — complete tag-triggered workflow ready to adapt",{"type":43,"tag":80,"props":1672,"children":1673},{},[1674,1679,1680],{"type":43,"tag":84,"props":1675,"children":1676},{},[1677],{"type":49,"value":1678},"Microsoft docs",{"type":49,"value":869},{"type":43,"tag":58,"props":1681,"children":1683},{"href":60,"rel":1682},[62],[1684],{"type":49,"value":1685},"NuGet Trusted Publishing",{"type":43,"tag":1687,"props":1688,"children":1689},"style",{},[1690],{"type":49,"value":1691},"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":1693,"total":1858},[1694,1710,1725,1740,1758,1772,1792,1802,1814,1824,1837,1848],{"slug":1695,"name":1695,"fn":1696,"description":1697,"org":1698,"tags":1699,"stars":1707,"repoUrl":1708,"updatedAt":1709},"multithreaded-task-migration","migrate MSBuild tasks to multithreaded mode","Guide for migrating MSBuild tasks to multithreaded mode support, including compatibility red-team review. Use this when converting tasks to thread-safe versions, implementing IMultiThreadableTask, adding TaskEnvironment support, or auditing migrations for behavioral compatibility.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1700,1701,1704],{"name":20,"slug":21,"type":15},{"name":1702,"slug":1703,"type":15},"Engineering","engineering",{"name":1705,"slug":1706,"type":15},"Performance","performance",5535,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fmsbuild","2026-07-22T05:37:33.965588",{"slug":1711,"name":1711,"fn":1712,"description":1713,"org":1714,"tags":1715,"stars":25,"repoUrl":26,"updatedAt":1724},"analyzing-dotnet-performance","analyze .NET code for performance anti-patterns","Scans .NET code for ~50 performance anti-patterns across async, memory, strings, collections, LINQ, regex, serialization, and I\u002FO with tiered severity classification. Use when analyzing .NET code for optimization opportunities, reviewing hot paths, or auditing allocation-heavy patterns.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1716,1717,1720,1723],{"name":20,"slug":21,"type":15},{"name":1718,"slug":1719,"type":15},"Code Analysis","code-analysis",{"name":1721,"slug":1722,"type":15},"Debugging","debugging",{"name":1705,"slug":1706,"type":15},"2026-07-12T08:23:25.400375",{"slug":1726,"name":1726,"fn":1727,"description":1728,"org":1729,"tags":1730,"stars":25,"repoUrl":26,"updatedAt":1739},"android-tombstone-symbolication","symbolicate .NET runtime frames in Android tombstones","Symbolicate the .NET runtime frames in an Android tombstone file. Extracts BuildIds and PC offsets from the native backtrace, downloads debug symbols from the Microsoft symbol server, and runs llvm-symbolizer to produce function names with source file and line numbers. USE FOR triaging a .NET MAUI or Mono Android app crash from a tombstone, resolving native backtrace frames in libmonosgen-2.0.so or libcoreclr.so to .NET runtime source code, or investigating SIGABRT, SIGSEGV, or other native signals originating from the .NET runtime on Android. DO NOT USE FOR pure Java\u002FKotlin crashes, managed .NET exceptions that are already captured in logcat, or iOS crash logs. INVOKES Symbolicate-Tombstone.ps1 script, llvm-symbolizer, Microsoft symbol server.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1731,1732,1735,1736],{"name":20,"slug":21,"type":15},{"name":1733,"slug":1734,"type":15},"Android","android",{"name":1721,"slug":1722,"type":15},{"name":1737,"slug":1738,"type":15},"Microsoft","microsoft","2026-07-12T08:23:21.595572",{"slug":1741,"name":1741,"fn":1742,"description":1743,"org":1744,"tags":1745,"stars":25,"repoUrl":26,"updatedAt":1757},"apple-crash-symbolication","symbolicate .NET runtime frames in crash logs","Symbolicate .NET runtime frames in Apple platform .ips crash logs (iOS, tvOS, Mac Catalyst, macOS). Extracts UUIDs and addresses from the native backtrace, locates dSYM debug symbols, and runs atos to produce function names with source file and line numbers. Automatically downloads .dwarf symbols from the Microsoft symbol server using Mach-O UUIDs. USE FOR triaging a .NET MAUI or Mono app crash from an .ips file on any Apple platform, resolving native backtrace frames in libcoreclr or libmonosgen-2.0 to .NET runtime source code, retrieving .ips crash logs from a connected iOS device or iPhone, or investigating EXC_CRASH, EXC_BAD_ACCESS, SIGABRT, or SIGSEGV originating from the .NET runtime. DO NOT USE FOR pure Swift\u002FObjective-C crashes with no .NET components, or Android tombstone files. INVOKES Symbolicate-Crash.ps1 script, atos, dwarfdump, idevicecrashreport.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1746,1747,1748,1751,1754],{"name":20,"slug":21,"type":15},{"name":1721,"slug":1722,"type":15},{"name":1749,"slug":1750,"type":15},"iOS","ios",{"name":1752,"slug":1753,"type":15},"macOS","macos",{"name":1755,"slug":1756,"type":15},"Observability","observability","2026-07-12T08:23:20.369986",{"slug":1759,"name":1759,"fn":1760,"description":1761,"org":1762,"tags":1763,"stars":25,"repoUrl":26,"updatedAt":1771},"assertion-quality","evaluate assertion quality in test suites","Analyzes the variety and depth of assertions across test suites in any language. Use when the user asks to evaluate assertion quality, find shallow tests, identify assertion-free tests (no assertions or only trivial ones like Assert.IsNotNull \u002F toBeTruthy()), flag self-referential or tautological assertions, measure assertion diversity, or audit whether tests verify different facets of behavior. Polyglot: .NET, Python, TS\u002FJS, Java, Go, Ruby, Rust, Swift, Kotlin, PowerShell, C++. DO NOT USE FOR: writing new tests (use code-testing-agent \u002F writing-mstest-tests), mutation reasoning about whether tests would catch a bug (use test-gap-analysis), or a general severity-ranked anti-pattern audit (use test-anti-patterns), fixing or rewriting assertions, or writing, fixing, or modernizing MSTest tests, assertions, or attributes (use writing-mstest-tests).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1764,1765,1768],{"name":1718,"slug":1719,"type":15},{"name":1766,"slug":1767,"type":15},"QA","qa",{"name":1769,"slug":1770,"type":15},"Testing","testing","2026-07-12T08:23:51.277743",{"slug":1773,"name":1773,"fn":1774,"description":1775,"org":1776,"tags":1777,"stars":25,"repoUrl":26,"updatedAt":1791},"author-component","create and review Blazor components","Create or review Blazor components (.razor files) with correct architecture. USE FOR: writing new Blazor components that do NOT involve JavaScript interop, implementing parameters and EventCallback, RenderFragment slots, component lifecycle (OnInitializedAsync, OnParametersSet), async patterns, IAsyncDisposable, CancellationToken, CSS isolation, code-behind. DO NOT USE FOR: creating new projects (use create-blazor-project), JavaScript interop or calling browser APIs from Blazor (use use-js-interop), forms and validation (use collect-user-input), prerendering issues (use support-prerendering), HTTP data fetching patterns (use fetch-and-send-data), coordinating state between unrelated components (use coordinate-components).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1778,1779,1782,1785,1788],{"name":20,"slug":21,"type":15},{"name":1780,"slug":1781,"type":15},"Blazor","blazor",{"name":1783,"slug":1784,"type":15},"C#","csharp",{"name":1786,"slug":1787,"type":15},"UI Components","ui-components",{"name":1789,"slug":1790,"type":15},"Web Development","web-development","2026-07-15T06:03:29.216359",{"slug":1793,"name":1793,"fn":1794,"description":1795,"org":1796,"tags":1797,"stars":25,"repoUrl":26,"updatedAt":1801},"binlog-failure-analysis","analyze MSBuild binary logs","Analyze MSBuild binary logs to diagnose build failures. USE FOR: build errors that are unclear from console output, diagnosing cascading failures across multi-project builds, tracing MSBuild target execution order, and generally any MSBuild build issues. Requires an existing .binlog file. DO NOT USE FOR: generating binlogs (use binlog-generation), non-MSBuild build systems.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1798,1799,1800],{"name":1718,"slug":1719,"type":15},{"name":1721,"slug":1722,"type":15},{"name":1737,"slug":1738,"type":15},"2026-07-12T08:21:34.637923",{"slug":1803,"name":1803,"fn":1804,"description":1805,"org":1806,"tags":1807,"stars":25,"repoUrl":26,"updatedAt":1813},"binlog-generation","generate MSBuild binary logs for diagnostics","Generate MSBuild binary logs (binlogs) for build diagnostics and analysis. USE FOR: adding \u002Fbl:{} to any dotnet build, test, pack, publish, or restore command to capture a full build execution trace, prerequisite for binlog-failure-analysis and build-perf-diagnostics skills, enabling post-build investigation of errors or performance. Requires MSBuild 17.8+ \u002F .NET 8 SDK+ for {} placeholder; PowerShell needs -bl:{{}}. DO NOT USE FOR: non-MSBuild build systems (npm, Maven, CMake), analyzing an existing binlog (use binlog-failure-analysis instead).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1808,1811,1812],{"name":1809,"slug":1810,"type":15},"Build","build",{"name":1721,"slug":1722,"type":15},{"name":1702,"slug":1703,"type":15},"2026-07-19T05:38:19.340791",{"slug":1815,"name":1815,"fn":1816,"description":1817,"org":1818,"tags":1819,"stars":25,"repoUrl":26,"updatedAt":1823},"build-parallelism","optimize MSBuild build parallelism","Diagnose and fix under-parallelized MSBuild builds. USE WHEN a multi-project solution build is slower than expected, doesn't speed up when you add cores, pegs a single core while others idle, or you want to know why `-m` isn't helping. Note: `\u002Fmaxcpucount` default is 1 (sequential) — always pass `-m` for parallel builds. Covers finding the critical path (longest serial ProjectReference chain), graph build (`\u002Fgraph`), BuildInParallel, and solution filters (`.slnf`). DO NOT USE FOR: single-project builds, incremental issues (use incremental-build), compilation slowness inside one project (use build-perf-diagnostics), non-MSBuild build systems.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1820,1821,1822],{"name":20,"slug":21,"type":15},{"name":1702,"slug":1703,"type":15},{"name":1705,"slug":1706,"type":15},"2026-07-19T05:38:18.364937",{"slug":1825,"name":1825,"fn":1826,"description":1827,"org":1828,"tags":1829,"stars":25,"repoUrl":26,"updatedAt":1836},"build-perf-baseline","establish and optimize build performance baselines","Establish build performance baselines and apply systematic optimization techniques. USE FOR: diagnosing slow builds, establishing before\u002Fafter measurements (cold, warm, no-op scenarios), applying optimization strategies like MSBuild Server, static graph builds, artifacts output, and dependency graph trimming. Start here before diving into build-perf-diagnostics, incremental-build, or build-parallelism. DO NOT USE FOR: non-MSBuild build systems, detailed bottleneck analysis (use build-perf-diagnostics after baselining).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1830,1831,1834,1835],{"name":1702,"slug":1703,"type":15},{"name":1832,"slug":1833,"type":15},"Monitoring","monitoring",{"name":1705,"slug":1706,"type":15},{"name":1769,"slug":1770,"type":15},"2026-07-12T08:21:35.865649",{"slug":1838,"name":1838,"fn":1839,"description":1840,"org":1841,"tags":1842,"stars":25,"repoUrl":26,"updatedAt":1847},"build-perf-diagnostics","diagnose MSBuild build performance bottlenecks","Diagnose MSBuild build performance bottlenecks using binary log analysis. USE FOR: identifying why builds are slow by analyzing binlog performance summaries, detecting ResolveAssemblyReference (RAR) taking >5s, Roslyn analyzers consuming >30% of Csc time, single targets dominating >50% of build time, node utilization below 80%, excessive Copy tasks, NuGet restore running every build. Covers timeline analysis, Target\u002FTask Performance Summary interpretation, and 7 common bottleneck categories. Use after build-perf-baseline has established measurements. DO NOT USE FOR: establishing initial baselines (use build-perf-baseline first), fixing incremental build issues (use incremental-build), parallelism tuning (use build-parallelism), non-MSBuild build systems.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1843,1844,1845,1846],{"name":20,"slug":21,"type":15},{"name":1721,"slug":1722,"type":15},{"name":1702,"slug":1703,"type":15},{"name":1705,"slug":1706,"type":15},"2026-07-12T08:21:40.961722",{"slug":1849,"name":1849,"fn":1850,"description":1851,"org":1852,"tags":1853,"stars":25,"repoUrl":26,"updatedAt":1857},"check-bin-obj-clash","detect MSBuild output path conflicts","Detects MSBuild projects with conflicting OutputPath or IntermediateOutputPath. USE FOR: builds failing with 'Cannot create a file when that file already exists', 'The process cannot access the file because it is being used by another process', intermittent build failures that succeed on retry, or missing\u002Foverwritten outputs in multi-project or multi-targeting builds where bin\u002Fobj (or project.assets.json) collide. Common causes: shared OutputPath, missing AppendTargetFrameworkToOutputPath, extra global properties (e.g. PublishReadyToRun), or SetTargetFramework on a ProjectReference to a single-targeting project. DO NOT USE FOR: file access errors unrelated to MSBuild (OS-level locking), single-project single-TFM builds, non-MSBuild build systems.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1854,1855,1856],{"name":1721,"slug":1722,"type":15},{"name":1702,"slug":1703,"type":15},{"name":1766,"slug":1767,"type":15},"2026-07-19T05:38:14.336279",144,{"items":1860,"total":1909},[1861,1868,1875,1883,1889,1897,1903],{"slug":1711,"name":1711,"fn":1712,"description":1713,"org":1862,"tags":1863,"stars":25,"repoUrl":26,"updatedAt":1724},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1864,1865,1866,1867],{"name":20,"slug":21,"type":15},{"name":1718,"slug":1719,"type":15},{"name":1721,"slug":1722,"type":15},{"name":1705,"slug":1706,"type":15},{"slug":1726,"name":1726,"fn":1727,"description":1728,"org":1869,"tags":1870,"stars":25,"repoUrl":26,"updatedAt":1739},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1871,1872,1873,1874],{"name":20,"slug":21,"type":15},{"name":1733,"slug":1734,"type":15},{"name":1721,"slug":1722,"type":15},{"name":1737,"slug":1738,"type":15},{"slug":1741,"name":1741,"fn":1742,"description":1743,"org":1876,"tags":1877,"stars":25,"repoUrl":26,"updatedAt":1757},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1878,1879,1880,1881,1882],{"name":20,"slug":21,"type":15},{"name":1721,"slug":1722,"type":15},{"name":1749,"slug":1750,"type":15},{"name":1752,"slug":1753,"type":15},{"name":1755,"slug":1756,"type":15},{"slug":1759,"name":1759,"fn":1760,"description":1761,"org":1884,"tags":1885,"stars":25,"repoUrl":26,"updatedAt":1771},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1886,1887,1888],{"name":1718,"slug":1719,"type":15},{"name":1766,"slug":1767,"type":15},{"name":1769,"slug":1770,"type":15},{"slug":1773,"name":1773,"fn":1774,"description":1775,"org":1890,"tags":1891,"stars":25,"repoUrl":26,"updatedAt":1791},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1892,1893,1894,1895,1896],{"name":20,"slug":21,"type":15},{"name":1780,"slug":1781,"type":15},{"name":1783,"slug":1784,"type":15},{"name":1786,"slug":1787,"type":15},{"name":1789,"slug":1790,"type":15},{"slug":1793,"name":1793,"fn":1794,"description":1795,"org":1898,"tags":1899,"stars":25,"repoUrl":26,"updatedAt":1801},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1900,1901,1902],{"name":1718,"slug":1719,"type":15},{"name":1721,"slug":1722,"type":15},{"name":1737,"slug":1738,"type":15},{"slug":1803,"name":1803,"fn":1804,"description":1805,"org":1904,"tags":1905,"stars":25,"repoUrl":26,"updatedAt":1813},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1906,1907,1908],{"name":1809,"slug":1810,"type":15},{"name":1721,"slug":1722,"type":15},{"name":1702,"slug":1703,"type":15},96]