[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-sentry-pr-link-issue":3,"mdc-z6p585-key":35,"related-org-sentry-pr-link-issue":787,"related-repo-sentry-pr-link-issue":965},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":30,"sourceUrl":33,"mdContent":34},"pr-link-issue","link GitHub issues and Linear tickets to PRs","Append a GitHub issue link and its Linear ticket to the current PR's description. Use when asked to \"link issue to pr\", \"fill in issue and linear in pr\", \"add issue refs to pr\", or when given a GitHub issue URL and asked to attach it to the current PR. Resolves the Linear ticket automatically from the issue's linear-linkback comment.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"sentry","Sentry","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fsentry.png","getsentry",[13,17,20],{"name":14,"slug":15,"type":16},"Linear","linear","tag",{"name":18,"slug":19,"type":16},"GitHub","github",{"name":21,"slug":22,"type":16},"Pull Requests","pull-requests",861,"https:\u002F\u002Fgithub.com\u002Fgetsentry\u002Fskills","2026-05-22T06:52:56.259552",null,45,[29],"tag-production",{"repoUrl":24,"stars":23,"forks":27,"topics":31,"description":32},[29],"Agent Skills used by the Sentry team for development.","https:\u002F\u002Fgithub.com\u002Fgetsentry\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002Fpr-link-issue","---\nname: pr-link-issue\ndescription: Append a GitHub issue link and its Linear ticket to the current PR's description. Use when asked to \"link issue to pr\", \"fill in issue and linear in pr\", \"add issue refs to pr\", or when given a GitHub issue URL and asked to attach it to the current PR. Resolves the Linear ticket automatically from the issue's linear-linkback comment.\n---\n\n# Link a GitHub Issue + Linear Ticket on a PR\n\nAppends a Sentry-style `#### Issues` block to a PR description, referencing both the GitHub issue and the Linear ticket pulled from the issue's `linear-linkback` comment.\n\n## Inputs\n\n- `\u003Cissue-url>` — GitHub issue URL like `https:\u002F\u002Fgithub.com\u002F\u003Cowner>\u002F\u003Crepo>\u002Fissues\u002F\u003Cn>`. Issue number alone is fine if the PR is in the same repo.\n- (optional) `\u003Cpr-number>` — defaults to the open PR for the current branch.\n\n## Steps\n\n1. **Resolve the PR number** — skip if user supplied one:\n\n   ```bash\n   gh pr view --json number,body -q '.number'\n   ```\n\n   If no PR exists on the branch, stop and tell the user.\n\n2. Extract issue number + repo from the input URL, or accept a bare `#1234` for current repo.\n\n3. Fetch the Linear ticket from the issue's linear-linkback comment:\n\n   ```bash\n   gh issue view \u003Cn> --repo \u003Cowner>\u002F\u003Crepo> --json comments \\\n     -q '.comments[] | select(.author.login==\"linear-code\") | .body' \\\n     | grep -Eioe '[a-z]+-[0-9]+' | head -1\n   ```\n\n   If no match, fall back to asking the user for the Linear key, or omit it.\n\n4. Read the existing PR body so you can append rather than overwrite:\n\n   ```bash\n   gh pr view \u003Cpr-number> --json body -q '.body'\n   ```\n\n5. Construct the new body. If the body is empty, use just the `#### Issues` block. Otherwise, append it after a blank line. Don't duplicate — if `#### Issues` is already present, replace that section instead of adding a second one.\n\n   Format:\n\n   ```markdown\n   #### Issues\n\n   * Resolves: #\u003Cn>\n   * Resolves: \u003Clinear-key>\n   ```\n\n6. Update the PR with a heredoc to preserve newlines:\n\n   ```bash\n   gh pr edit \u003Cpr-number> --body \"$(cat \u003C\u003C'EOF'\n   \u003Cnew body>\n   EOF\n   )\"\n   ```\n\n7. Confirm by echoing the resulting PR URL:\n\n   ```bash\n   gh pr view \u003Cpr-number> --json url -q '.url'\n   ```\n\n## Notes\n\n- Linear linkback comments are posted by the GitHub user `linear-code`. The body contains a markdown link whose text is the Linear key, e.g. `PY-2357`.\n- Project keys vary per repo (`PY-…` for sentry-python, `JS-…` for sentry-javascript, etc.) — the regex `[a-z]+-[0-9]+` covers them.\n- Don't strip existing PR content. Always read first, append\u002Freplace second.\n- If the issue doesn't have a Linear linkback yet (newly filed), proceed with just the GitHub issue reference and tell the user the Linear key is missing.\n",{"data":36,"body":37},{"name":4,"description":6},{"type":38,"children":39},"root",[40,49,72,79,116,122,713,719,781],{"type":41,"tag":42,"props":43,"children":45},"element","h1",{"id":44},"link-a-github-issue-linear-ticket-on-a-pr",[46],{"type":47,"value":48},"text","Link a GitHub Issue + Linear Ticket on a PR",{"type":41,"tag":50,"props":51,"children":52},"p",{},[53,55,62,64,70],{"type":47,"value":54},"Appends a Sentry-style ",{"type":41,"tag":56,"props":57,"children":59},"code",{"className":58},[],[60],{"type":47,"value":61},"#### Issues",{"type":47,"value":63}," block to a PR description, referencing both the GitHub issue and the Linear ticket pulled from the issue's ",{"type":41,"tag":56,"props":65,"children":67},{"className":66},[],[68],{"type":47,"value":69},"linear-linkback",{"type":47,"value":71}," comment.",{"type":41,"tag":73,"props":74,"children":76},"h2",{"id":75},"inputs",[77],{"type":47,"value":78},"Inputs",{"type":41,"tag":80,"props":81,"children":82},"ul",{},[83,103],{"type":41,"tag":84,"props":85,"children":86},"li",{},[87,93,95,101],{"type":41,"tag":56,"props":88,"children":90},{"className":89},[],[91],{"type":47,"value":92},"\u003Cissue-url>",{"type":47,"value":94}," — GitHub issue URL like ",{"type":41,"tag":56,"props":96,"children":98},{"className":97},[],[99],{"type":47,"value":100},"https:\u002F\u002Fgithub.com\u002F\u003Cowner>\u002F\u003Crepo>\u002Fissues\u002F\u003Cn>",{"type":47,"value":102},". Issue number alone is fine if the PR is in the same repo.",{"type":41,"tag":84,"props":104,"children":105},{},[106,108,114],{"type":47,"value":107},"(optional) ",{"type":41,"tag":56,"props":109,"children":111},{"className":110},[],[112],{"type":47,"value":113},"\u003Cpr-number>",{"type":47,"value":115}," — defaults to the open PR for the current branch.",{"type":41,"tag":73,"props":117,"children":119},{"id":118},"steps",[120],{"type":47,"value":121},"Steps",{"type":41,"tag":123,"props":124,"children":125},"ol",{},[126,208,221,405,475,556,644],{"type":41,"tag":84,"props":127,"children":128},{},[129,135,137,202,206],{"type":41,"tag":130,"props":131,"children":132},"strong",{},[133],{"type":47,"value":134},"Resolve the PR number",{"type":47,"value":136}," — skip if user supplied one:",{"type":41,"tag":138,"props":139,"children":144},"pre",{"className":140,"code":141,"language":142,"meta":143,"style":143},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","gh pr view --json number,body -q '.number'\n","bash","",[145],{"type":41,"tag":56,"props":146,"children":147},{"__ignoreMap":143},[148],{"type":41,"tag":149,"props":150,"children":153},"span",{"class":151,"line":152},"line",1,[154,160,166,171,176,181,186,192,197],{"type":41,"tag":149,"props":155,"children":157},{"style":156},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[158],{"type":47,"value":159},"gh",{"type":41,"tag":149,"props":161,"children":163},{"style":162},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[164],{"type":47,"value":165}," pr",{"type":41,"tag":149,"props":167,"children":168},{"style":162},[169],{"type":47,"value":170}," view",{"type":41,"tag":149,"props":172,"children":173},{"style":162},[174],{"type":47,"value":175}," --json",{"type":41,"tag":149,"props":177,"children":178},{"style":162},[179],{"type":47,"value":180}," number,body",{"type":41,"tag":149,"props":182,"children":183},{"style":162},[184],{"type":47,"value":185}," -q",{"type":41,"tag":149,"props":187,"children":189},{"style":188},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[190],{"type":47,"value":191}," '",{"type":41,"tag":149,"props":193,"children":194},{"style":162},[195],{"type":47,"value":196},".number",{"type":41,"tag":149,"props":198,"children":199},{"style":188},[200],{"type":47,"value":201},"'\n",{"type":41,"tag":203,"props":204,"children":205},"br",{},[],{"type":47,"value":207},"If no PR exists on the branch, stop and tell the user.",{"type":41,"tag":84,"props":209,"children":210},{},[211,213,219],{"type":47,"value":212},"Extract issue number + repo from the input URL, or accept a bare ",{"type":41,"tag":56,"props":214,"children":216},{"className":215},[],[217],{"type":47,"value":218},"#1234",{"type":47,"value":220}," for current repo.",{"type":41,"tag":84,"props":222,"children":223},{},[224,226,400,403],{"type":47,"value":225},"Fetch the Linear ticket from the issue's linear-linkback comment:",{"type":41,"tag":138,"props":227,"children":229},{"className":140,"code":228,"language":142,"meta":143,"style":143},"gh issue view \u003Cn> --repo \u003Cowner>\u002F\u003Crepo> --json comments \\\n  -q '.comments[] | select(.author.login==\"linear-code\") | .body' \\\n  | grep -Eioe '[a-z]+-[0-9]+' | head -1\n",[230],{"type":41,"tag":56,"props":231,"children":232},{"__ignoreMap":143},[233,326,353],{"type":41,"tag":149,"props":234,"children":235},{"class":151,"line":152},[236,240,245,249,254,260,265,270,274,279,284,288,293,298,303,308,312,316,321],{"type":41,"tag":149,"props":237,"children":238},{"style":156},[239],{"type":47,"value":159},{"type":41,"tag":149,"props":241,"children":242},{"style":162},[243],{"type":47,"value":244}," issue",{"type":41,"tag":149,"props":246,"children":247},{"style":162},[248],{"type":47,"value":170},{"type":41,"tag":149,"props":250,"children":251},{"style":188},[252],{"type":47,"value":253}," \u003C",{"type":41,"tag":149,"props":255,"children":257},{"style":256},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[258],{"type":47,"value":259},"n",{"type":41,"tag":149,"props":261,"children":262},{"style":188},[263],{"type":47,"value":264},">",{"type":41,"tag":149,"props":266,"children":267},{"style":162},[268],{"type":47,"value":269}," --repo",{"type":41,"tag":149,"props":271,"children":272},{"style":188},[273],{"type":47,"value":253},{"type":41,"tag":149,"props":275,"children":276},{"style":162},[277],{"type":47,"value":278},"owne",{"type":41,"tag":149,"props":280,"children":281},{"style":256},[282],{"type":47,"value":283},"r",{"type":41,"tag":149,"props":285,"children":286},{"style":188},[287],{"type":47,"value":264},{"type":41,"tag":149,"props":289,"children":290},{"style":162},[291],{"type":47,"value":292},"\u002F",{"type":41,"tag":149,"props":294,"children":295},{"style":188},[296],{"type":47,"value":297},"\u003C",{"type":41,"tag":149,"props":299,"children":300},{"style":162},[301],{"type":47,"value":302},"rep",{"type":41,"tag":149,"props":304,"children":305},{"style":256},[306],{"type":47,"value":307},"o",{"type":41,"tag":149,"props":309,"children":310},{"style":188},[311],{"type":47,"value":264},{"type":41,"tag":149,"props":313,"children":314},{"style":162},[315],{"type":47,"value":175},{"type":41,"tag":149,"props":317,"children":318},{"style":162},[319],{"type":47,"value":320}," comments",{"type":41,"tag":149,"props":322,"children":323},{"style":256},[324],{"type":47,"value":325}," \\\n",{"type":41,"tag":149,"props":327,"children":329},{"class":151,"line":328},2,[330,335,339,344,349],{"type":41,"tag":149,"props":331,"children":332},{"style":162},[333],{"type":47,"value":334},"  -q",{"type":41,"tag":149,"props":336,"children":337},{"style":188},[338],{"type":47,"value":191},{"type":41,"tag":149,"props":340,"children":341},{"style":162},[342],{"type":47,"value":343},".comments[] | select(.author.login==\"linear-code\") | .body",{"type":41,"tag":149,"props":345,"children":346},{"style":188},[347],{"type":47,"value":348},"'",{"type":41,"tag":149,"props":350,"children":351},{"style":256},[352],{"type":47,"value":325},{"type":41,"tag":149,"props":354,"children":356},{"class":151,"line":355},3,[357,362,367,372,376,381,385,390,395],{"type":41,"tag":149,"props":358,"children":359},{"style":188},[360],{"type":47,"value":361},"  |",{"type":41,"tag":149,"props":363,"children":364},{"style":156},[365],{"type":47,"value":366}," grep",{"type":41,"tag":149,"props":368,"children":369},{"style":162},[370],{"type":47,"value":371}," -Eioe",{"type":41,"tag":149,"props":373,"children":374},{"style":188},[375],{"type":47,"value":191},{"type":41,"tag":149,"props":377,"children":378},{"style":162},[379],{"type":47,"value":380},"[a-z]+-[0-9]+",{"type":41,"tag":149,"props":382,"children":383},{"style":188},[384],{"type":47,"value":348},{"type":41,"tag":149,"props":386,"children":387},{"style":188},[388],{"type":47,"value":389}," |",{"type":41,"tag":149,"props":391,"children":392},{"style":156},[393],{"type":47,"value":394}," head",{"type":41,"tag":149,"props":396,"children":397},{"style":162},[398],{"type":47,"value":399}," -1\n",{"type":41,"tag":203,"props":401,"children":402},{},[],{"type":47,"value":404},"If no match, fall back to asking the user for the Linear key, or omit it.",{"type":41,"tag":84,"props":406,"children":407},{},[408,410],{"type":47,"value":409},"Read the existing PR body so you can append rather than overwrite:",{"type":41,"tag":138,"props":411,"children":413},{"className":140,"code":412,"language":142,"meta":143,"style":143},"gh pr view \u003Cpr-number> --json body -q '.body'\n",[414],{"type":41,"tag":56,"props":415,"children":416},{"__ignoreMap":143},[417],{"type":41,"tag":149,"props":418,"children":419},{"class":151,"line":152},[420,424,428,432,436,441,445,449,453,458,462,466,471],{"type":41,"tag":149,"props":421,"children":422},{"style":156},[423],{"type":47,"value":159},{"type":41,"tag":149,"props":425,"children":426},{"style":162},[427],{"type":47,"value":165},{"type":41,"tag":149,"props":429,"children":430},{"style":162},[431],{"type":47,"value":170},{"type":41,"tag":149,"props":433,"children":434},{"style":188},[435],{"type":47,"value":253},{"type":41,"tag":149,"props":437,"children":438},{"style":162},[439],{"type":47,"value":440},"pr-numbe",{"type":41,"tag":149,"props":442,"children":443},{"style":256},[444],{"type":47,"value":283},{"type":41,"tag":149,"props":446,"children":447},{"style":188},[448],{"type":47,"value":264},{"type":41,"tag":149,"props":450,"children":451},{"style":162},[452],{"type":47,"value":175},{"type":41,"tag":149,"props":454,"children":455},{"style":162},[456],{"type":47,"value":457}," body",{"type":41,"tag":149,"props":459,"children":460},{"style":162},[461],{"type":47,"value":185},{"type":41,"tag":149,"props":463,"children":464},{"style":188},[465],{"type":47,"value":191},{"type":41,"tag":149,"props":467,"children":468},{"style":162},[469],{"type":47,"value":470},".body",{"type":41,"tag":149,"props":472,"children":473},{"style":188},[474],{"type":47,"value":201},{"type":41,"tag":84,"props":476,"children":477},{},[478,480,485,487,492,494,497,499],{"type":47,"value":479},"Construct the new body. If the body is empty, use just the ",{"type":41,"tag":56,"props":481,"children":483},{"className":482},[],[484],{"type":47,"value":61},{"type":47,"value":486}," block. Otherwise, append it after a blank line. Don't duplicate — if ",{"type":41,"tag":56,"props":488,"children":490},{"className":489},[],[491],{"type":47,"value":61},{"type":47,"value":493}," is already present, replace that section instead of adding a second one.",{"type":41,"tag":203,"props":495,"children":496},{},[],{"type":47,"value":498},"Format:",{"type":41,"tag":138,"props":500,"children":504},{"className":501,"code":502,"language":503,"meta":143,"style":143},"language-markdown shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","#### Issues\n\n* Resolves: #\u003Cn>\n* Resolves: \u003Clinear-key>\n","markdown",[505],{"type":41,"tag":56,"props":506,"children":507},{"__ignoreMap":143},[508,521,530,543],{"type":41,"tag":149,"props":509,"children":510},{"class":151,"line":152},[511,516],{"type":41,"tag":149,"props":512,"children":513},{"style":188},[514],{"type":47,"value":515},"#### ",{"type":41,"tag":149,"props":517,"children":518},{"style":156},[519],{"type":47,"value":520},"Issues\n",{"type":41,"tag":149,"props":522,"children":523},{"class":151,"line":328},[524],{"type":41,"tag":149,"props":525,"children":527},{"emptyLinePlaceholder":526},true,[528],{"type":47,"value":529},"\n",{"type":41,"tag":149,"props":531,"children":532},{"class":151,"line":355},[533,538],{"type":41,"tag":149,"props":534,"children":535},{"style":188},[536],{"type":47,"value":537},"*",{"type":41,"tag":149,"props":539,"children":540},{"style":256},[541],{"type":47,"value":542}," Resolves: #\u003Cn>\n",{"type":41,"tag":149,"props":544,"children":546},{"class":151,"line":545},4,[547,551],{"type":41,"tag":149,"props":548,"children":549},{"style":188},[550],{"type":47,"value":537},{"type":41,"tag":149,"props":552,"children":553},{"style":256},[554],{"type":47,"value":555}," Resolves: \u003Clinear-key>\n",{"type":41,"tag":84,"props":557,"children":558},{},[559,561],{"type":47,"value":560},"Update the PR with a heredoc to preserve newlines:",{"type":41,"tag":138,"props":562,"children":564},{"className":140,"code":563,"language":142,"meta":143,"style":143},"gh pr edit \u003Cpr-number> --body \"$(cat \u003C\u003C'EOF'\n\u003Cnew body>\nEOF\n)\"\n",[565],{"type":41,"tag":56,"props":566,"children":567},{"__ignoreMap":143},[568,620,628,636],{"type":41,"tag":149,"props":569,"children":570},{"class":151,"line":152},[571,575,579,584,588,592,596,600,605,610,615],{"type":41,"tag":149,"props":572,"children":573},{"style":156},[574],{"type":47,"value":159},{"type":41,"tag":149,"props":576,"children":577},{"style":162},[578],{"type":47,"value":165},{"type":41,"tag":149,"props":580,"children":581},{"style":162},[582],{"type":47,"value":583}," edit",{"type":41,"tag":149,"props":585,"children":586},{"style":188},[587],{"type":47,"value":253},{"type":41,"tag":149,"props":589,"children":590},{"style":162},[591],{"type":47,"value":440},{"type":41,"tag":149,"props":593,"children":594},{"style":256},[595],{"type":47,"value":283},{"type":41,"tag":149,"props":597,"children":598},{"style":188},[599],{"type":47,"value":264},{"type":41,"tag":149,"props":601,"children":602},{"style":162},[603],{"type":47,"value":604}," --body",{"type":41,"tag":149,"props":606,"children":607},{"style":188},[608],{"type":47,"value":609}," \"$(",{"type":41,"tag":149,"props":611,"children":612},{"style":156},[613],{"type":47,"value":614},"cat",{"type":41,"tag":149,"props":616,"children":617},{"style":188},[618],{"type":47,"value":619}," \u003C\u003C'EOF'\n",{"type":41,"tag":149,"props":621,"children":622},{"class":151,"line":328},[623],{"type":41,"tag":149,"props":624,"children":625},{"style":162},[626],{"type":47,"value":627},"\u003Cnew body>\n",{"type":41,"tag":149,"props":629,"children":630},{"class":151,"line":355},[631],{"type":41,"tag":149,"props":632,"children":633},{"style":188},[634],{"type":47,"value":635},"EOF\n",{"type":41,"tag":149,"props":637,"children":638},{"class":151,"line":545},[639],{"type":41,"tag":149,"props":640,"children":641},{"style":188},[642],{"type":47,"value":643},")\"\n",{"type":41,"tag":84,"props":645,"children":646},{},[647,649],{"type":47,"value":648},"Confirm by echoing the resulting PR URL:",{"type":41,"tag":138,"props":650,"children":652},{"className":140,"code":651,"language":142,"meta":143,"style":143},"gh pr view \u003Cpr-number> --json url -q '.url'\n",[653],{"type":41,"tag":56,"props":654,"children":655},{"__ignoreMap":143},[656],{"type":41,"tag":149,"props":657,"children":658},{"class":151,"line":152},[659,663,667,671,675,679,683,687,691,696,700,704,709],{"type":41,"tag":149,"props":660,"children":661},{"style":156},[662],{"type":47,"value":159},{"type":41,"tag":149,"props":664,"children":665},{"style":162},[666],{"type":47,"value":165},{"type":41,"tag":149,"props":668,"children":669},{"style":162},[670],{"type":47,"value":170},{"type":41,"tag":149,"props":672,"children":673},{"style":188},[674],{"type":47,"value":253},{"type":41,"tag":149,"props":676,"children":677},{"style":162},[678],{"type":47,"value":440},{"type":41,"tag":149,"props":680,"children":681},{"style":256},[682],{"type":47,"value":283},{"type":41,"tag":149,"props":684,"children":685},{"style":188},[686],{"type":47,"value":264},{"type":41,"tag":149,"props":688,"children":689},{"style":162},[690],{"type":47,"value":175},{"type":41,"tag":149,"props":692,"children":693},{"style":162},[694],{"type":47,"value":695}," url",{"type":41,"tag":149,"props":697,"children":698},{"style":162},[699],{"type":47,"value":185},{"type":41,"tag":149,"props":701,"children":702},{"style":188},[703],{"type":47,"value":191},{"type":41,"tag":149,"props":705,"children":706},{"style":162},[707],{"type":47,"value":708},".url",{"type":41,"tag":149,"props":710,"children":711},{"style":188},[712],{"type":47,"value":201},{"type":41,"tag":73,"props":714,"children":716},{"id":715},"notes",[717],{"type":47,"value":718},"Notes",{"type":41,"tag":80,"props":720,"children":721},{},[722,743,771,776],{"type":41,"tag":84,"props":723,"children":724},{},[725,727,733,735,741],{"type":47,"value":726},"Linear linkback comments are posted by the GitHub user ",{"type":41,"tag":56,"props":728,"children":730},{"className":729},[],[731],{"type":47,"value":732},"linear-code",{"type":47,"value":734},". The body contains a markdown link whose text is the Linear key, e.g. ",{"type":41,"tag":56,"props":736,"children":738},{"className":737},[],[739],{"type":47,"value":740},"PY-2357",{"type":47,"value":742},".",{"type":41,"tag":84,"props":744,"children":745},{},[746,748,754,756,762,764,769],{"type":47,"value":747},"Project keys vary per repo (",{"type":41,"tag":56,"props":749,"children":751},{"className":750},[],[752],{"type":47,"value":753},"PY-…",{"type":47,"value":755}," for sentry-python, ",{"type":41,"tag":56,"props":757,"children":759},{"className":758},[],[760],{"type":47,"value":761},"JS-…",{"type":47,"value":763}," for sentry-javascript, etc.) — the regex ",{"type":41,"tag":56,"props":765,"children":767},{"className":766},[],[768],{"type":47,"value":380},{"type":47,"value":770}," covers them.",{"type":41,"tag":84,"props":772,"children":773},{},[774],{"type":47,"value":775},"Don't strip existing PR content. Always read first, append\u002Freplace second.",{"type":41,"tag":84,"props":777,"children":778},{},[779],{"type":47,"value":780},"If the issue doesn't have a Linear linkback yet (newly filed), proceed with just the GitHub issue reference and tell the user the Linear key is missing.",{"type":41,"tag":782,"props":783,"children":784},"style",{},[785],{"type":47,"value":786},"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":788,"total":964},[789,814,828,841,855,872,888,902,912,923,933,951],{"slug":790,"name":790,"fn":791,"description":792,"org":793,"tags":794,"stars":811,"repoUrl":812,"updatedAt":813},"xcodebuildmcp","build and test Apple apps with XcodeBuildMCP","Official skill for XcodeBuildMCP. Use when doing iOS\u002FmacOS\u002FwatchOS\u002FtvOS\u002FvisionOS work (build, test, run, debug, log, UI automation).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[795,798,801,804,805,808],{"name":796,"slug":797,"type":16},"Debugging","debugging",{"name":799,"slug":800,"type":16},"iOS","ios",{"name":802,"slug":803,"type":16},"macOS","macos",{"name":9,"slug":8,"type":16},{"name":806,"slug":807,"type":16},"Testing","testing",{"name":809,"slug":810,"type":16},"Xcode","xcode",6176,"https:\u002F\u002Fgithub.com\u002Fgetsentry\u002FXcodeBuildMCP","2026-04-06T18:13:34.8719",{"slug":815,"name":815,"fn":816,"description":817,"org":818,"tags":819,"stars":811,"repoUrl":812,"updatedAt":827},"xcodebuildmcp-cli","build and test Apple apps via CLI","Official skill for the XcodeBuildMCP CLI. Use when doing iOS\u002FmacOS\u002FwatchOS\u002FtvOS\u002FvisionOS work (build, test, run, debug, log, UI automation).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[820,823,824,825,826],{"name":821,"slug":822,"type":16},"CLI","cli",{"name":799,"slug":800,"type":16},{"name":802,"slug":803,"type":16},{"name":806,"slug":807,"type":16},{"name":809,"slug":810,"type":16},"2026-04-06T18:13:36.13414",{"slug":829,"name":829,"fn":830,"description":831,"org":832,"tags":833,"stars":23,"repoUrl":24,"updatedAt":840},"agents-md","maintain project instruction files","Creates and maintains concise AGENTS.md and CLAUDE.md project instruction files. Use when asked to create AGENTS.md, update AGENTS.md, maintain agent docs, set up CLAUDE.md, document repository agent conventions, or keep coding-agent instructions minimal and reference-backed.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[834,837],{"name":835,"slug":836,"type":16},"Documentation","documentation",{"name":838,"slug":839,"type":16},"Engineering","engineering","2026-05-15T06:16:29.695991",{"slug":842,"name":842,"fn":843,"description":844,"org":845,"tags":846,"stars":23,"repoUrl":24,"updatedAt":854},"blog-writing-guide","write and review engineering blog posts","Write, review, and improve blog posts for the Sentry engineering blog following Sentry's specific writing standards, voice, and quality bar. Use this skill whenever someone asks to write a blog post, draft a technical article, review blog content, improve a draft, write a product announcement, create an engineering deep-dive, or produce any written content destined for the Sentry blog or developer audience. Also trigger when the user mentions \"blog post,\" \"blog draft,\" \"write-up,\" \"announcement post,\" \"engineering post,\" \"deep dive,\" \"postmortem,\" or asks for help with technical writing for Sentry. Even if the user just says \"help me write about [feature\u002Ftopic]\" — if it sounds like it could become a Sentry blog post, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[847,850,851],{"name":848,"slug":849,"type":16},"Communications","communications",{"name":9,"slug":8,"type":16},{"name":852,"slug":853,"type":16},"Technical Writing","technical-writing","2026-05-15T06:16:33.38217",{"slug":856,"name":856,"fn":857,"description":858,"org":859,"tags":860,"stars":23,"repoUrl":24,"updatedAt":871},"brand-guidelines","write copy following Sentry brand guidelines","Write copy following Sentry brand guidelines. Use when writing UI text, error messages, empty states, onboarding flows, 404 pages, documentation, marketing copy, or any user-facing content. Covers both Plain Speech (default) and Sentry Voice tones.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[861,864,867,868],{"name":862,"slug":863,"type":16},"Branding","branding",{"name":865,"slug":866,"type":16},"Content Creation","content-creation",{"name":9,"slug":8,"type":16},{"name":869,"slug":870,"type":16},"UX Copy","ux-copy","2026-05-15T06:16:22.395707",{"slug":873,"name":873,"fn":874,"description":875,"org":876,"tags":877,"stars":23,"repoUrl":24,"updatedAt":887},"claude-settings-audit","generate Claude Code settings permissions","Analyze a repository to generate recommended Claude Code settings.json permissions. Use when setting up a new project, auditing existing settings, or determining which read-only bash commands to allow. Detects tech stack, build tools, and monorepo structure.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[878,881,884],{"name":879,"slug":880,"type":16},"Claude Code","claude-code",{"name":882,"slug":883,"type":16},"Configuration","configuration",{"name":885,"slug":886,"type":16},"Security","security","2026-05-15T06:16:44.335977",{"slug":889,"name":889,"fn":890,"description":891,"org":892,"tags":893,"stars":23,"repoUrl":24,"updatedAt":901},"code-review","perform code reviews for Sentry projects","Perform code reviews following Sentry engineering practices. Use when reviewing pull requests, examining code changes, or providing feedback on code quality. Covers security, performance, testing, and design review.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[894,896,897,900],{"name":895,"slug":889,"type":16},"Code Review",{"name":838,"slug":839,"type":16},{"name":898,"slug":899,"type":16},"Performance","performance",{"name":885,"slug":886,"type":16},"2026-05-15T06:16:35.824864",{"slug":903,"name":903,"fn":904,"description":905,"org":906,"tags":907,"stars":23,"repoUrl":24,"updatedAt":911},"code-simplifier","simplify and refine source code","Simplifies and refines code for clarity, consistency, and maintainability while preserving all functionality. Use when asked to \"simplify code\", \"clean up code\", \"refactor for clarity\", \"improve readability\", or review recently modified code for elegance. Focuses on project-specific best practices.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[908],{"name":909,"slug":910,"type":16},"Code Analysis","code-analysis","2026-05-15T06:16:32.127981",{"slug":913,"name":913,"fn":914,"description":915,"org":916,"tags":917,"stars":23,"repoUrl":24,"updatedAt":922},"commit","create commits with Sentry conventions","Use for every request to commit changes or draft a commit message. Creates Sentry-style conventional commits with issue references.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[918,921],{"name":919,"slug":920,"type":16},"Git","git",{"name":9,"slug":8,"type":16},"2026-07-18T05:15:10.723937",{"slug":924,"name":924,"fn":925,"description":926,"org":927,"tags":928,"stars":23,"repoUrl":24,"updatedAt":932},"create-branch","create git branches for Sentry workflows","Create a git branch following Sentry naming conventions. Use when asked to \"create a branch\", \"new branch\", \"start a branch\", \"make a branch\", \"switch to a new branch\", or when starting new work on the default branch.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[929,930,931],{"name":838,"slug":839,"type":16},{"name":919,"slug":920,"type":16},{"name":9,"slug":8,"type":16},"2026-05-15T06:16:39.458431",{"slug":934,"name":934,"fn":935,"description":936,"org":937,"tags":938,"stars":23,"repoUrl":24,"updatedAt":950},"django-access-review","review Django access control and IDOR","Django access control and IDOR security review. Use when reviewing Django views, DRF viewsets, ORM queries, or any Python\u002FDjango code handling user authorization. Trigger keywords: \"IDOR\", \"access control\", \"authorization\", \"Django permissions\", \"object permissions\", \"tenant isolation\", \"broken access\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[939,942,943,946,949],{"name":940,"slug":941,"type":16},"Access Control","access-control",{"name":909,"slug":910,"type":16},{"name":944,"slug":945,"type":16},"Django","django",{"name":947,"slug":948,"type":16},"Python","python",{"name":885,"slug":886,"type":16},"2026-05-15T06:16:43.098698",{"slug":952,"name":952,"fn":953,"description":954,"org":955,"tags":956,"stars":23,"repoUrl":24,"updatedAt":963},"django-perf-review","review and optimize Django performance","Django performance code review. Use when asked to \"review Django performance\", \"find N+1 queries\", \"optimize Django\", \"check queryset performance\", \"database performance\", \"Django ORM issues\", or audit Django code for performance problems.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[957,958,961,962],{"name":895,"slug":889,"type":16},{"name":959,"slug":960,"type":16},"Database","database",{"name":944,"slug":945,"type":16},{"name":898,"slug":899,"type":16},"2026-05-15T06:16:24.832813",88,{"items":966,"total":1007},[967,972,978,985,991,998,1002],{"slug":829,"name":829,"fn":830,"description":831,"org":968,"tags":969,"stars":23,"repoUrl":24,"updatedAt":840},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[970,971],{"name":835,"slug":836,"type":16},{"name":838,"slug":839,"type":16},{"slug":842,"name":842,"fn":843,"description":844,"org":973,"tags":974,"stars":23,"repoUrl":24,"updatedAt":854},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[975,976,977],{"name":848,"slug":849,"type":16},{"name":9,"slug":8,"type":16},{"name":852,"slug":853,"type":16},{"slug":856,"name":856,"fn":857,"description":858,"org":979,"tags":980,"stars":23,"repoUrl":24,"updatedAt":871},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[981,982,983,984],{"name":862,"slug":863,"type":16},{"name":865,"slug":866,"type":16},{"name":9,"slug":8,"type":16},{"name":869,"slug":870,"type":16},{"slug":873,"name":873,"fn":874,"description":875,"org":986,"tags":987,"stars":23,"repoUrl":24,"updatedAt":887},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[988,989,990],{"name":879,"slug":880,"type":16},{"name":882,"slug":883,"type":16},{"name":885,"slug":886,"type":16},{"slug":889,"name":889,"fn":890,"description":891,"org":992,"tags":993,"stars":23,"repoUrl":24,"updatedAt":901},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[994,995,996,997],{"name":895,"slug":889,"type":16},{"name":838,"slug":839,"type":16},{"name":898,"slug":899,"type":16},{"name":885,"slug":886,"type":16},{"slug":903,"name":903,"fn":904,"description":905,"org":999,"tags":1000,"stars":23,"repoUrl":24,"updatedAt":911},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1001],{"name":909,"slug":910,"type":16},{"slug":913,"name":913,"fn":914,"description":915,"org":1003,"tags":1004,"stars":23,"repoUrl":24,"updatedAt":922},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1005,1006],{"name":919,"slug":920,"type":16},{"name":9,"slug":8,"type":16},28]