[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-sentry":3,"mdc--igsgmi-key":35,"related-repo-openai-sentry":1172,"related-org-openai-sentry":1296},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":24,"repoUrl":25,"updatedAt":26,"license":27,"forks":28,"topics":29,"repo":30,"sourceUrl":33,"mdContent":34},"sentry","inspect and summarize Sentry issues","Use when the user asks to inspect Sentry issues or events, summarize recent production errors, or pull basic Sentry health data via the Sentry API; perform read-only queries with the bundled script and require `SENTRY_AUTH_TOKEN`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,21],{"name":13,"slug":14,"type":15},"Observability","observability","tag",{"name":17,"slug":18,"type":15},"Triage","triage",{"name":20,"slug":4,"type":15},"Sentry",{"name":22,"slug":23,"type":15},"Debugging","debugging",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-04-06T18:41:37.761935",null,465,[],{"repoUrl":25,"stars":24,"forks":28,"topics":31,"description":32},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fsentry\u002Fskills\u002Fsentry","---\nname: \"sentry\"\ndescription: \"Use when the user asks to inspect Sentry issues or events, summarize recent production errors, or pull basic Sentry health data via the Sentry API; perform read-only queries with the bundled script and require `SENTRY_AUTH_TOKEN`.\"\n---\n\n\n# Sentry (Read-only Observability)\n\n## Quick start\n\n- If not already authenticated, ask the user to provide a valid `SENTRY_AUTH_TOKEN` (read-only scopes such as `project:read`, `event:read`) or to log in and create one before running commands.\n- Set `SENTRY_AUTH_TOKEN` as an env var.\n- Optional defaults: `SENTRY_ORG`, `SENTRY_PROJECT`, `SENTRY_BASE_URL`.\n- Defaults: org\u002Fproject `{your-org}`\u002F`{your-project}`, time range `24h`, environment `prod`, limit 20 (max 50).\n- Always call the Sentry API (no heuristics, no caching).\n\nIf the token is missing, give the user these steps:\n1. Create a Sentry auth token: https:\u002F\u002Fsentry.io\u002Fsettings\u002Faccount\u002Fapi\u002Fauth-tokens\u002F\n2. Create a token with read-only scopes such as `project:read`, `event:read`, and `org:read`.\n3. Set `SENTRY_AUTH_TOKEN` as an environment variable in their system.\n4. Offer to guide them through setting the environment variable for their OS\u002Fshell if needed.\n- Never ask the user to paste the full token in chat. Ask them to set it locally and confirm when ready.\n\n## Core tasks (use bundled script)\n\nUse `scripts\u002Fsentry_api.py` for deterministic API calls. It handles pagination and retries once on transient errors.\n\n## Bundled script path\n\n```bash\nexport SENTRY_API=\"plugins\u002Fsentry\u002Fskills\u002Fsentry\u002Fscripts\u002Fsentry_api.py\"\n```\n\nIf you are running from an installed plugin copy instead of this repo checkout, use the same\n`skills\u002Fsentry\u002Fscripts\u002Fsentry_api.py` path inside the installed plugin directory.\n\n### 1) List issues (ordered by most recent)\n\n```bash\npython3 \"$SENTRY_API\" \\\n  --org {your-org} \\\n  --project {your-project} \\\n  list-issues \\\n  --environment prod \\\n  --time-range 24h \\\n  --limit 20 \\\n  --query \"is:unresolved\"\n```\n\n### 2) Resolve an issue short ID to issue ID\n\n```bash\npython3 \"$SENTRY_API\" \\\n  --org {your-org} \\\n  --project {your-project} \\\n  list-issues \\\n  --query \"ABC-123\" \\\n  --limit 1\n```\n\nUse the returned `id` for issue detail or events.\n\n### 3) Issue detail\n\n```bash\npython3 \"$SENTRY_API\" \\\n  --org {your-org} \\\n  issue-detail \\\n  1234567890\n```\n\n### 4) Issue events\n\n```bash\npython3 \"$SENTRY_API\" \\\n  --org {your-org} \\\n  issue-events \\\n  1234567890 \\\n  --environment prod \\\n  --time-range 24h \\\n  --limit 20\n```\n\n### 5) Event detail (no stack traces by default)\n\n```bash\npython3 \"$SENTRY_API\" \\\n  --org {your-org} \\\n  --project {your-project} \\\n  event-detail \\\n  abcdef1234567890\n```\n\n## API requirements\n\nAlways use these endpoints (GET only):\n\n- List issues: `\u002Fapi\u002F0\u002Fprojects\u002F{org_slug}\u002F{project_slug}\u002Fissues\u002F`\n- Issue detail: `\u002Fapi\u002F0\u002Forganizations\u002F{org_slug}\u002Fissues\u002F{issue_id}\u002F`\n- Events for issue: `\u002Fapi\u002F0\u002Forganizations\u002F{org_slug}\u002Fissues\u002F{issue_id}\u002Fevents\u002F`\n- Event detail: `\u002Fapi\u002F0\u002Fprojects\u002F{org_slug}\u002F{project_slug}\u002Fevents\u002F{event_id}\u002F`\n\n## Inputs and defaults\n\n- `org_slug`: default to `{your-org}` (required for issue detail, issue events, and event detail).\n- `project_slug`: default to `{your-project}` (required for list issues and event detail).\n- `time_range`: default `24h` (pass as `statsPeriod` for list issues and issue events).\n- `environment`: default `prod` (used by list issues and issue events).\n- `limit`: default 20, max 50 (paginate until limit reached).\n- `search_query`: optional `query` parameter.\n- `issue_short_id`: resolve via list-issues query first.\n\n## Output formatting rules\n\n- Issue list: show title, short_id, status, first_seen, last_seen, count, environments, top_tags; order by most recent.\n- Event detail: include culprit, timestamp, environment, release, url.\n- If no results, state explicitly.\n- Redact PII in output (emails, IPs). Do not print raw stack traces.\n- Never echo auth tokens.\n\n## Golden test inputs\n\n- Org: `{your-org}`\n- Project: `{your-project}`\n- Issue short ID: `{ABC-123}`\n\nExample prompt: “List the top 10 open issues for prod in the last 24h.”\nExpected: ordered list with titles, short IDs, counts, last seen.\n",{"data":36,"body":37},{"name":4,"description":6},{"type":38,"children":39},"root",[40,49,56,172,178,236,244,250,263,269,320,333,340,501,507,614,627,633,698,704,815,821,901,907,912,959,965,1087,1093,1121,1127,1161,1166],{"type":41,"tag":42,"props":43,"children":45},"element","h1",{"id":44},"sentry-read-only-observability",[46],{"type":47,"value":48},"text","Sentry (Read-only Observability)",{"type":41,"tag":50,"props":51,"children":53},"h2",{"id":52},"quick-start",[54],{"type":47,"value":55},"Quick start",{"type":41,"tag":57,"props":58,"children":59},"ul",{},[60,91,103,130,167],{"type":41,"tag":61,"props":62,"children":63},"li",{},[64,66,73,75,81,83,89],{"type":47,"value":65},"If not already authenticated, ask the user to provide a valid ",{"type":41,"tag":67,"props":68,"children":70},"code",{"className":69},[],[71],{"type":47,"value":72},"SENTRY_AUTH_TOKEN",{"type":47,"value":74}," (read-only scopes such as ",{"type":41,"tag":67,"props":76,"children":78},{"className":77},[],[79],{"type":47,"value":80},"project:read",{"type":47,"value":82},", ",{"type":41,"tag":67,"props":84,"children":86},{"className":85},[],[87],{"type":47,"value":88},"event:read",{"type":47,"value":90},") or to log in and create one before running commands.",{"type":41,"tag":61,"props":92,"children":93},{},[94,96,101],{"type":47,"value":95},"Set ",{"type":41,"tag":67,"props":97,"children":99},{"className":98},[],[100],{"type":47,"value":72},{"type":47,"value":102}," as an env var.",{"type":41,"tag":61,"props":104,"children":105},{},[106,108,114,115,121,122,128],{"type":47,"value":107},"Optional defaults: ",{"type":41,"tag":67,"props":109,"children":111},{"className":110},[],[112],{"type":47,"value":113},"SENTRY_ORG",{"type":47,"value":82},{"type":41,"tag":67,"props":116,"children":118},{"className":117},[],[119],{"type":47,"value":120},"SENTRY_PROJECT",{"type":47,"value":82},{"type":41,"tag":67,"props":123,"children":125},{"className":124},[],[126],{"type":47,"value":127},"SENTRY_BASE_URL",{"type":47,"value":129},".",{"type":41,"tag":61,"props":131,"children":132},{},[133,135,141,143,149,151,157,159,165],{"type":47,"value":134},"Defaults: org\u002Fproject ",{"type":41,"tag":67,"props":136,"children":138},{"className":137},[],[139],{"type":47,"value":140},"{your-org}",{"type":47,"value":142},"\u002F",{"type":41,"tag":67,"props":144,"children":146},{"className":145},[],[147],{"type":47,"value":148},"{your-project}",{"type":47,"value":150},", time range ",{"type":41,"tag":67,"props":152,"children":154},{"className":153},[],[155],{"type":47,"value":156},"24h",{"type":47,"value":158},", environment ",{"type":41,"tag":67,"props":160,"children":162},{"className":161},[],[163],{"type":47,"value":164},"prod",{"type":47,"value":166},", limit 20 (max 50).",{"type":41,"tag":61,"props":168,"children":169},{},[170],{"type":47,"value":171},"Always call the Sentry API (no heuristics, no caching).",{"type":41,"tag":173,"props":174,"children":175},"p",{},[176],{"type":47,"value":177},"If the token is missing, give the user these steps:",{"type":41,"tag":179,"props":180,"children":181},"ol",{},[182,195,220,231],{"type":41,"tag":61,"props":183,"children":184},{},[185,187],{"type":47,"value":186},"Create a Sentry auth token: ",{"type":41,"tag":188,"props":189,"children":193},"a",{"href":190,"rel":191},"https:\u002F\u002Fsentry.io\u002Fsettings\u002Faccount\u002Fapi\u002Fauth-tokens\u002F",[192],"nofollow",[194],{"type":47,"value":190},{"type":41,"tag":61,"props":196,"children":197},{},[198,200,205,206,211,213,219],{"type":47,"value":199},"Create a token with read-only scopes such as ",{"type":41,"tag":67,"props":201,"children":203},{"className":202},[],[204],{"type":47,"value":80},{"type":47,"value":82},{"type":41,"tag":67,"props":207,"children":209},{"className":208},[],[210],{"type":47,"value":88},{"type":47,"value":212},", and ",{"type":41,"tag":67,"props":214,"children":216},{"className":215},[],[217],{"type":47,"value":218},"org:read",{"type":47,"value":129},{"type":41,"tag":61,"props":221,"children":222},{},[223,224,229],{"type":47,"value":95},{"type":41,"tag":67,"props":225,"children":227},{"className":226},[],[228],{"type":47,"value":72},{"type":47,"value":230}," as an environment variable in their system.",{"type":41,"tag":61,"props":232,"children":233},{},[234],{"type":47,"value":235},"Offer to guide them through setting the environment variable for their OS\u002Fshell if needed.",{"type":41,"tag":57,"props":237,"children":238},{},[239],{"type":41,"tag":61,"props":240,"children":241},{},[242],{"type":47,"value":243},"Never ask the user to paste the full token in chat. Ask them to set it locally and confirm when ready.",{"type":41,"tag":50,"props":245,"children":247},{"id":246},"core-tasks-use-bundled-script",[248],{"type":47,"value":249},"Core tasks (use bundled script)",{"type":41,"tag":173,"props":251,"children":252},{},[253,255,261],{"type":47,"value":254},"Use ",{"type":41,"tag":67,"props":256,"children":258},{"className":257},[],[259],{"type":47,"value":260},"scripts\u002Fsentry_api.py",{"type":47,"value":262}," for deterministic API calls. It handles pagination and retries once on transient errors.",{"type":41,"tag":50,"props":264,"children":266},{"id":265},"bundled-script-path",[267],{"type":47,"value":268},"Bundled script path",{"type":41,"tag":270,"props":271,"children":276},"pre",{"className":272,"code":273,"language":274,"meta":275,"style":275},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","export SENTRY_API=\"plugins\u002Fsentry\u002Fskills\u002Fsentry\u002Fscripts\u002Fsentry_api.py\"\n","bash","",[277],{"type":41,"tag":67,"props":278,"children":279},{"__ignoreMap":275},[280],{"type":41,"tag":281,"props":282,"children":285},"span",{"class":283,"line":284},"line",1,[286,292,298,304,309,315],{"type":41,"tag":281,"props":287,"children":289},{"style":288},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[290],{"type":47,"value":291},"export",{"type":41,"tag":281,"props":293,"children":295},{"style":294},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[296],{"type":47,"value":297}," SENTRY_API",{"type":41,"tag":281,"props":299,"children":301},{"style":300},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[302],{"type":47,"value":303},"=",{"type":41,"tag":281,"props":305,"children":306},{"style":300},[307],{"type":47,"value":308},"\"",{"type":41,"tag":281,"props":310,"children":312},{"style":311},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[313],{"type":47,"value":314},"plugins\u002Fsentry\u002Fskills\u002Fsentry\u002Fscripts\u002Fsentry_api.py",{"type":41,"tag":281,"props":316,"children":317},{"style":300},[318],{"type":47,"value":319},"\"\n",{"type":41,"tag":173,"props":321,"children":322},{},[323,325,331],{"type":47,"value":324},"If you are running from an installed plugin copy instead of this repo checkout, use the same\n",{"type":41,"tag":67,"props":326,"children":328},{"className":327},[],[329],{"type":47,"value":330},"skills\u002Fsentry\u002Fscripts\u002Fsentry_api.py",{"type":47,"value":332}," path inside the installed plugin directory.",{"type":41,"tag":334,"props":335,"children":337},"h3",{"id":336},"_1-list-issues-ordered-by-most-recent",[338],{"type":47,"value":339},"1) List issues (ordered by most recent)",{"type":41,"tag":270,"props":341,"children":343},{"className":272,"code":342,"language":274,"meta":275,"style":275},"python3 \"$SENTRY_API\" \\\n  --org {your-org} \\\n  --project {your-project} \\\n  list-issues \\\n  --environment prod \\\n  --time-range 24h \\\n  --limit 20 \\\n  --query \"is:unresolved\"\n",[344],{"type":41,"tag":67,"props":345,"children":346},{"__ignoreMap":275},[347,375,393,411,424,442,460,479],{"type":41,"tag":281,"props":348,"children":349},{"class":283,"line":284},[350,356,361,366,370],{"type":41,"tag":281,"props":351,"children":353},{"style":352},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[354],{"type":47,"value":355},"python3",{"type":41,"tag":281,"props":357,"children":358},{"style":300},[359],{"type":47,"value":360}," \"",{"type":41,"tag":281,"props":362,"children":363},{"style":294},[364],{"type":47,"value":365},"$SENTRY_API",{"type":41,"tag":281,"props":367,"children":368},{"style":300},[369],{"type":47,"value":308},{"type":41,"tag":281,"props":371,"children":372},{"style":294},[373],{"type":47,"value":374}," \\\n",{"type":41,"tag":281,"props":376,"children":378},{"class":283,"line":377},2,[379,384,389],{"type":41,"tag":281,"props":380,"children":381},{"style":311},[382],{"type":47,"value":383},"  --org",{"type":41,"tag":281,"props":385,"children":386},{"style":311},[387],{"type":47,"value":388}," {your-org}",{"type":41,"tag":281,"props":390,"children":391},{"style":294},[392],{"type":47,"value":374},{"type":41,"tag":281,"props":394,"children":396},{"class":283,"line":395},3,[397,402,407],{"type":41,"tag":281,"props":398,"children":399},{"style":311},[400],{"type":47,"value":401},"  --project",{"type":41,"tag":281,"props":403,"children":404},{"style":311},[405],{"type":47,"value":406}," {your-project}",{"type":41,"tag":281,"props":408,"children":409},{"style":294},[410],{"type":47,"value":374},{"type":41,"tag":281,"props":412,"children":414},{"class":283,"line":413},4,[415,420],{"type":41,"tag":281,"props":416,"children":417},{"style":311},[418],{"type":47,"value":419},"  list-issues",{"type":41,"tag":281,"props":421,"children":422},{"style":294},[423],{"type":47,"value":374},{"type":41,"tag":281,"props":425,"children":427},{"class":283,"line":426},5,[428,433,438],{"type":41,"tag":281,"props":429,"children":430},{"style":311},[431],{"type":47,"value":432},"  --environment",{"type":41,"tag":281,"props":434,"children":435},{"style":311},[436],{"type":47,"value":437}," prod",{"type":41,"tag":281,"props":439,"children":440},{"style":294},[441],{"type":47,"value":374},{"type":41,"tag":281,"props":443,"children":445},{"class":283,"line":444},6,[446,451,456],{"type":41,"tag":281,"props":447,"children":448},{"style":311},[449],{"type":47,"value":450},"  --time-range",{"type":41,"tag":281,"props":452,"children":453},{"style":311},[454],{"type":47,"value":455}," 24h",{"type":41,"tag":281,"props":457,"children":458},{"style":294},[459],{"type":47,"value":374},{"type":41,"tag":281,"props":461,"children":463},{"class":283,"line":462},7,[464,469,475],{"type":41,"tag":281,"props":465,"children":466},{"style":311},[467],{"type":47,"value":468},"  --limit",{"type":41,"tag":281,"props":470,"children":472},{"style":471},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[473],{"type":47,"value":474}," 20",{"type":41,"tag":281,"props":476,"children":477},{"style":294},[478],{"type":47,"value":374},{"type":41,"tag":281,"props":480,"children":482},{"class":283,"line":481},8,[483,488,492,497],{"type":41,"tag":281,"props":484,"children":485},{"style":311},[486],{"type":47,"value":487},"  --query",{"type":41,"tag":281,"props":489,"children":490},{"style":300},[491],{"type":47,"value":360},{"type":41,"tag":281,"props":493,"children":494},{"style":311},[495],{"type":47,"value":496},"is:unresolved",{"type":41,"tag":281,"props":498,"children":499},{"style":300},[500],{"type":47,"value":319},{"type":41,"tag":334,"props":502,"children":504},{"id":503},"_2-resolve-an-issue-short-id-to-issue-id",[505],{"type":47,"value":506},"2) Resolve an issue short ID to issue ID",{"type":41,"tag":270,"props":508,"children":510},{"className":272,"code":509,"language":274,"meta":275,"style":275},"python3 \"$SENTRY_API\" \\\n  --org {your-org} \\\n  --project {your-project} \\\n  list-issues \\\n  --query \"ABC-123\" \\\n  --limit 1\n",[511],{"type":41,"tag":67,"props":512,"children":513},{"__ignoreMap":275},[514,537,552,567,578,602],{"type":41,"tag":281,"props":515,"children":516},{"class":283,"line":284},[517,521,525,529,533],{"type":41,"tag":281,"props":518,"children":519},{"style":352},[520],{"type":47,"value":355},{"type":41,"tag":281,"props":522,"children":523},{"style":300},[524],{"type":47,"value":360},{"type":41,"tag":281,"props":526,"children":527},{"style":294},[528],{"type":47,"value":365},{"type":41,"tag":281,"props":530,"children":531},{"style":300},[532],{"type":47,"value":308},{"type":41,"tag":281,"props":534,"children":535},{"style":294},[536],{"type":47,"value":374},{"type":41,"tag":281,"props":538,"children":539},{"class":283,"line":377},[540,544,548],{"type":41,"tag":281,"props":541,"children":542},{"style":311},[543],{"type":47,"value":383},{"type":41,"tag":281,"props":545,"children":546},{"style":311},[547],{"type":47,"value":388},{"type":41,"tag":281,"props":549,"children":550},{"style":294},[551],{"type":47,"value":374},{"type":41,"tag":281,"props":553,"children":554},{"class":283,"line":395},[555,559,563],{"type":41,"tag":281,"props":556,"children":557},{"style":311},[558],{"type":47,"value":401},{"type":41,"tag":281,"props":560,"children":561},{"style":311},[562],{"type":47,"value":406},{"type":41,"tag":281,"props":564,"children":565},{"style":294},[566],{"type":47,"value":374},{"type":41,"tag":281,"props":568,"children":569},{"class":283,"line":413},[570,574],{"type":41,"tag":281,"props":571,"children":572},{"style":311},[573],{"type":47,"value":419},{"type":41,"tag":281,"props":575,"children":576},{"style":294},[577],{"type":47,"value":374},{"type":41,"tag":281,"props":579,"children":580},{"class":283,"line":426},[581,585,589,594,598],{"type":41,"tag":281,"props":582,"children":583},{"style":311},[584],{"type":47,"value":487},{"type":41,"tag":281,"props":586,"children":587},{"style":300},[588],{"type":47,"value":360},{"type":41,"tag":281,"props":590,"children":591},{"style":311},[592],{"type":47,"value":593},"ABC-123",{"type":41,"tag":281,"props":595,"children":596},{"style":300},[597],{"type":47,"value":308},{"type":41,"tag":281,"props":599,"children":600},{"style":294},[601],{"type":47,"value":374},{"type":41,"tag":281,"props":603,"children":604},{"class":283,"line":444},[605,609],{"type":41,"tag":281,"props":606,"children":607},{"style":311},[608],{"type":47,"value":468},{"type":41,"tag":281,"props":610,"children":611},{"style":471},[612],{"type":47,"value":613}," 1\n",{"type":41,"tag":173,"props":615,"children":616},{},[617,619,625],{"type":47,"value":618},"Use the returned ",{"type":41,"tag":67,"props":620,"children":622},{"className":621},[],[623],{"type":47,"value":624},"id",{"type":47,"value":626}," for issue detail or events.",{"type":41,"tag":334,"props":628,"children":630},{"id":629},"_3-issue-detail",[631],{"type":47,"value":632},"3) Issue detail",{"type":41,"tag":270,"props":634,"children":636},{"className":272,"code":635,"language":274,"meta":275,"style":275},"python3 \"$SENTRY_API\" \\\n  --org {your-org} \\\n  issue-detail \\\n  1234567890\n",[637],{"type":41,"tag":67,"props":638,"children":639},{"__ignoreMap":275},[640,663,678,690],{"type":41,"tag":281,"props":641,"children":642},{"class":283,"line":284},[643,647,651,655,659],{"type":41,"tag":281,"props":644,"children":645},{"style":352},[646],{"type":47,"value":355},{"type":41,"tag":281,"props":648,"children":649},{"style":300},[650],{"type":47,"value":360},{"type":41,"tag":281,"props":652,"children":653},{"style":294},[654],{"type":47,"value":365},{"type":41,"tag":281,"props":656,"children":657},{"style":300},[658],{"type":47,"value":308},{"type":41,"tag":281,"props":660,"children":661},{"style":294},[662],{"type":47,"value":374},{"type":41,"tag":281,"props":664,"children":665},{"class":283,"line":377},[666,670,674],{"type":41,"tag":281,"props":667,"children":668},{"style":311},[669],{"type":47,"value":383},{"type":41,"tag":281,"props":671,"children":672},{"style":311},[673],{"type":47,"value":388},{"type":41,"tag":281,"props":675,"children":676},{"style":294},[677],{"type":47,"value":374},{"type":41,"tag":281,"props":679,"children":680},{"class":283,"line":395},[681,686],{"type":41,"tag":281,"props":682,"children":683},{"style":311},[684],{"type":47,"value":685},"  issue-detail",{"type":41,"tag":281,"props":687,"children":688},{"style":294},[689],{"type":47,"value":374},{"type":41,"tag":281,"props":691,"children":692},{"class":283,"line":413},[693],{"type":41,"tag":281,"props":694,"children":695},{"style":471},[696],{"type":47,"value":697},"  1234567890\n",{"type":41,"tag":334,"props":699,"children":701},{"id":700},"_4-issue-events",[702],{"type":47,"value":703},"4) Issue events",{"type":41,"tag":270,"props":705,"children":707},{"className":272,"code":706,"language":274,"meta":275,"style":275},"python3 \"$SENTRY_API\" \\\n  --org {your-org} \\\n  issue-events \\\n  1234567890 \\\n  --environment prod \\\n  --time-range 24h \\\n  --limit 20\n",[708],{"type":41,"tag":67,"props":709,"children":710},{"__ignoreMap":275},[711,734,749,761,773,788,803],{"type":41,"tag":281,"props":712,"children":713},{"class":283,"line":284},[714,718,722,726,730],{"type":41,"tag":281,"props":715,"children":716},{"style":352},[717],{"type":47,"value":355},{"type":41,"tag":281,"props":719,"children":720},{"style":300},[721],{"type":47,"value":360},{"type":41,"tag":281,"props":723,"children":724},{"style":294},[725],{"type":47,"value":365},{"type":41,"tag":281,"props":727,"children":728},{"style":300},[729],{"type":47,"value":308},{"type":41,"tag":281,"props":731,"children":732},{"style":294},[733],{"type":47,"value":374},{"type":41,"tag":281,"props":735,"children":736},{"class":283,"line":377},[737,741,745],{"type":41,"tag":281,"props":738,"children":739},{"style":311},[740],{"type":47,"value":383},{"type":41,"tag":281,"props":742,"children":743},{"style":311},[744],{"type":47,"value":388},{"type":41,"tag":281,"props":746,"children":747},{"style":294},[748],{"type":47,"value":374},{"type":41,"tag":281,"props":750,"children":751},{"class":283,"line":395},[752,757],{"type":41,"tag":281,"props":753,"children":754},{"style":311},[755],{"type":47,"value":756},"  issue-events",{"type":41,"tag":281,"props":758,"children":759},{"style":294},[760],{"type":47,"value":374},{"type":41,"tag":281,"props":762,"children":763},{"class":283,"line":413},[764,769],{"type":41,"tag":281,"props":765,"children":766},{"style":471},[767],{"type":47,"value":768},"  1234567890",{"type":41,"tag":281,"props":770,"children":771},{"style":294},[772],{"type":47,"value":374},{"type":41,"tag":281,"props":774,"children":775},{"class":283,"line":426},[776,780,784],{"type":41,"tag":281,"props":777,"children":778},{"style":311},[779],{"type":47,"value":432},{"type":41,"tag":281,"props":781,"children":782},{"style":311},[783],{"type":47,"value":437},{"type":41,"tag":281,"props":785,"children":786},{"style":294},[787],{"type":47,"value":374},{"type":41,"tag":281,"props":789,"children":790},{"class":283,"line":444},[791,795,799],{"type":41,"tag":281,"props":792,"children":793},{"style":311},[794],{"type":47,"value":450},{"type":41,"tag":281,"props":796,"children":797},{"style":311},[798],{"type":47,"value":455},{"type":41,"tag":281,"props":800,"children":801},{"style":294},[802],{"type":47,"value":374},{"type":41,"tag":281,"props":804,"children":805},{"class":283,"line":462},[806,810],{"type":41,"tag":281,"props":807,"children":808},{"style":311},[809],{"type":47,"value":468},{"type":41,"tag":281,"props":811,"children":812},{"style":471},[813],{"type":47,"value":814}," 20\n",{"type":41,"tag":334,"props":816,"children":818},{"id":817},"_5-event-detail-no-stack-traces-by-default",[819],{"type":47,"value":820},"5) Event detail (no stack traces by default)",{"type":41,"tag":270,"props":822,"children":824},{"className":272,"code":823,"language":274,"meta":275,"style":275},"python3 \"$SENTRY_API\" \\\n  --org {your-org} \\\n  --project {your-project} \\\n  event-detail \\\n  abcdef1234567890\n",[825],{"type":41,"tag":67,"props":826,"children":827},{"__ignoreMap":275},[828,851,866,881,893],{"type":41,"tag":281,"props":829,"children":830},{"class":283,"line":284},[831,835,839,843,847],{"type":41,"tag":281,"props":832,"children":833},{"style":352},[834],{"type":47,"value":355},{"type":41,"tag":281,"props":836,"children":837},{"style":300},[838],{"type":47,"value":360},{"type":41,"tag":281,"props":840,"children":841},{"style":294},[842],{"type":47,"value":365},{"type":41,"tag":281,"props":844,"children":845},{"style":300},[846],{"type":47,"value":308},{"type":41,"tag":281,"props":848,"children":849},{"style":294},[850],{"type":47,"value":374},{"type":41,"tag":281,"props":852,"children":853},{"class":283,"line":377},[854,858,862],{"type":41,"tag":281,"props":855,"children":856},{"style":311},[857],{"type":47,"value":383},{"type":41,"tag":281,"props":859,"children":860},{"style":311},[861],{"type":47,"value":388},{"type":41,"tag":281,"props":863,"children":864},{"style":294},[865],{"type":47,"value":374},{"type":41,"tag":281,"props":867,"children":868},{"class":283,"line":395},[869,873,877],{"type":41,"tag":281,"props":870,"children":871},{"style":311},[872],{"type":47,"value":401},{"type":41,"tag":281,"props":874,"children":875},{"style":311},[876],{"type":47,"value":406},{"type":41,"tag":281,"props":878,"children":879},{"style":294},[880],{"type":47,"value":374},{"type":41,"tag":281,"props":882,"children":883},{"class":283,"line":413},[884,889],{"type":41,"tag":281,"props":885,"children":886},{"style":311},[887],{"type":47,"value":888},"  event-detail",{"type":41,"tag":281,"props":890,"children":891},{"style":294},[892],{"type":47,"value":374},{"type":41,"tag":281,"props":894,"children":895},{"class":283,"line":426},[896],{"type":41,"tag":281,"props":897,"children":898},{"style":311},[899],{"type":47,"value":900},"  abcdef1234567890\n",{"type":41,"tag":50,"props":902,"children":904},{"id":903},"api-requirements",[905],{"type":47,"value":906},"API requirements",{"type":41,"tag":173,"props":908,"children":909},{},[910],{"type":47,"value":911},"Always use these endpoints (GET only):",{"type":41,"tag":57,"props":913,"children":914},{},[915,926,937,948],{"type":41,"tag":61,"props":916,"children":917},{},[918,920],{"type":47,"value":919},"List issues: ",{"type":41,"tag":67,"props":921,"children":923},{"className":922},[],[924],{"type":47,"value":925},"\u002Fapi\u002F0\u002Fprojects\u002F{org_slug}\u002F{project_slug}\u002Fissues\u002F",{"type":41,"tag":61,"props":927,"children":928},{},[929,931],{"type":47,"value":930},"Issue detail: ",{"type":41,"tag":67,"props":932,"children":934},{"className":933},[],[935],{"type":47,"value":936},"\u002Fapi\u002F0\u002Forganizations\u002F{org_slug}\u002Fissues\u002F{issue_id}\u002F",{"type":41,"tag":61,"props":938,"children":939},{},[940,942],{"type":47,"value":941},"Events for issue: ",{"type":41,"tag":67,"props":943,"children":945},{"className":944},[],[946],{"type":47,"value":947},"\u002Fapi\u002F0\u002Forganizations\u002F{org_slug}\u002Fissues\u002F{issue_id}\u002Fevents\u002F",{"type":41,"tag":61,"props":949,"children":950},{},[951,953],{"type":47,"value":952},"Event detail: ",{"type":41,"tag":67,"props":954,"children":956},{"className":955},[],[957],{"type":47,"value":958},"\u002Fapi\u002F0\u002Fprojects\u002F{org_slug}\u002F{project_slug}\u002Fevents\u002F{event_id}\u002F",{"type":41,"tag":50,"props":960,"children":962},{"id":961},"inputs-and-defaults",[963],{"type":47,"value":964},"Inputs and defaults",{"type":41,"tag":57,"props":966,"children":967},{},[968,986,1003,1029,1046,1057,1076],{"type":41,"tag":61,"props":969,"children":970},{},[971,977,979,984],{"type":41,"tag":67,"props":972,"children":974},{"className":973},[],[975],{"type":47,"value":976},"org_slug",{"type":47,"value":978},": default to ",{"type":41,"tag":67,"props":980,"children":982},{"className":981},[],[983],{"type":47,"value":140},{"type":47,"value":985}," (required for issue detail, issue events, and event detail).",{"type":41,"tag":61,"props":987,"children":988},{},[989,995,996,1001],{"type":41,"tag":67,"props":990,"children":992},{"className":991},[],[993],{"type":47,"value":994},"project_slug",{"type":47,"value":978},{"type":41,"tag":67,"props":997,"children":999},{"className":998},[],[1000],{"type":47,"value":148},{"type":47,"value":1002}," (required for list issues and event detail).",{"type":41,"tag":61,"props":1004,"children":1005},{},[1006,1012,1014,1019,1021,1027],{"type":41,"tag":67,"props":1007,"children":1009},{"className":1008},[],[1010],{"type":47,"value":1011},"time_range",{"type":47,"value":1013},": default ",{"type":41,"tag":67,"props":1015,"children":1017},{"className":1016},[],[1018],{"type":47,"value":156},{"type":47,"value":1020}," (pass as ",{"type":41,"tag":67,"props":1022,"children":1024},{"className":1023},[],[1025],{"type":47,"value":1026},"statsPeriod",{"type":47,"value":1028}," for list issues and issue events).",{"type":41,"tag":61,"props":1030,"children":1031},{},[1032,1038,1039,1044],{"type":41,"tag":67,"props":1033,"children":1035},{"className":1034},[],[1036],{"type":47,"value":1037},"environment",{"type":47,"value":1013},{"type":41,"tag":67,"props":1040,"children":1042},{"className":1041},[],[1043],{"type":47,"value":164},{"type":47,"value":1045}," (used by list issues and issue events).",{"type":41,"tag":61,"props":1047,"children":1048},{},[1049,1055],{"type":41,"tag":67,"props":1050,"children":1052},{"className":1051},[],[1053],{"type":47,"value":1054},"limit",{"type":47,"value":1056},": default 20, max 50 (paginate until limit reached).",{"type":41,"tag":61,"props":1058,"children":1059},{},[1060,1066,1068,1074],{"type":41,"tag":67,"props":1061,"children":1063},{"className":1062},[],[1064],{"type":47,"value":1065},"search_query",{"type":47,"value":1067},": optional ",{"type":41,"tag":67,"props":1069,"children":1071},{"className":1070},[],[1072],{"type":47,"value":1073},"query",{"type":47,"value":1075}," parameter.",{"type":41,"tag":61,"props":1077,"children":1078},{},[1079,1085],{"type":41,"tag":67,"props":1080,"children":1082},{"className":1081},[],[1083],{"type":47,"value":1084},"issue_short_id",{"type":47,"value":1086},": resolve via list-issues query first.",{"type":41,"tag":50,"props":1088,"children":1090},{"id":1089},"output-formatting-rules",[1091],{"type":47,"value":1092},"Output formatting rules",{"type":41,"tag":57,"props":1094,"children":1095},{},[1096,1101,1106,1111,1116],{"type":41,"tag":61,"props":1097,"children":1098},{},[1099],{"type":47,"value":1100},"Issue list: show title, short_id, status, first_seen, last_seen, count, environments, top_tags; order by most recent.",{"type":41,"tag":61,"props":1102,"children":1103},{},[1104],{"type":47,"value":1105},"Event detail: include culprit, timestamp, environment, release, url.",{"type":41,"tag":61,"props":1107,"children":1108},{},[1109],{"type":47,"value":1110},"If no results, state explicitly.",{"type":41,"tag":61,"props":1112,"children":1113},{},[1114],{"type":47,"value":1115},"Redact PII in output (emails, IPs). Do not print raw stack traces.",{"type":41,"tag":61,"props":1117,"children":1118},{},[1119],{"type":47,"value":1120},"Never echo auth tokens.",{"type":41,"tag":50,"props":1122,"children":1124},{"id":1123},"golden-test-inputs",[1125],{"type":47,"value":1126},"Golden test inputs",{"type":41,"tag":57,"props":1128,"children":1129},{},[1130,1140,1150],{"type":41,"tag":61,"props":1131,"children":1132},{},[1133,1135],{"type":47,"value":1134},"Org: ",{"type":41,"tag":67,"props":1136,"children":1138},{"className":1137},[],[1139],{"type":47,"value":140},{"type":41,"tag":61,"props":1141,"children":1142},{},[1143,1145],{"type":47,"value":1144},"Project: ",{"type":41,"tag":67,"props":1146,"children":1148},{"className":1147},[],[1149],{"type":47,"value":148},{"type":41,"tag":61,"props":1151,"children":1152},{},[1153,1155],{"type":47,"value":1154},"Issue short ID: ",{"type":41,"tag":67,"props":1156,"children":1158},{"className":1157},[],[1159],{"type":47,"value":1160},"{ABC-123}",{"type":41,"tag":173,"props":1162,"children":1163},{},[1164],{"type":47,"value":1165},"Example prompt: “List the top 10 open issues for prod in the last 24h.”\nExpected: ordered list with titles, short IDs, counts, last seen.",{"type":41,"tag":1167,"props":1168,"children":1169},"style",{},[1170],{"type":47,"value":1171},"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":1173,"total":1295},[1174,1193,1209,1221,1241,1263,1283],{"slug":1175,"name":1175,"fn":1176,"description":1177,"org":1178,"tags":1179,"stars":24,"repoUrl":25,"updatedAt":1192},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1180,1183,1186,1189],{"name":1181,"slug":1182,"type":15},"Accessibility","accessibility",{"name":1184,"slug":1185,"type":15},"Charts","charts",{"name":1187,"slug":1188,"type":15},"Data Visualization","data-visualization",{"name":1190,"slug":1191,"type":15},"Design","design","2026-06-30T19:00:57.102",{"slug":1194,"name":1194,"fn":1195,"description":1196,"org":1197,"tags":1198,"stars":24,"repoUrl":25,"updatedAt":1208},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1199,1202,1205],{"name":1200,"slug":1201,"type":15},"Agents","agents",{"name":1203,"slug":1204,"type":15},"Browser Automation","browser-automation",{"name":1206,"slug":1207,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1210,"name":1210,"fn":1211,"description":1212,"org":1213,"tags":1214,"stars":24,"repoUrl":25,"updatedAt":1220},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1215,1216,1219],{"name":1203,"slug":1204,"type":15},{"name":1217,"slug":1218,"type":15},"Local Development","local-development",{"name":1206,"slug":1207,"type":15},"2026-04-06T18:41:17.526867",{"slug":1222,"name":1222,"fn":1223,"description":1224,"org":1225,"tags":1226,"stars":24,"repoUrl":25,"updatedAt":1240},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1227,1228,1231,1234,1237],{"name":1200,"slug":1201,"type":15},{"name":1229,"slug":1230,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1232,"slug":1233,"type":15},"SDK","sdk",{"name":1235,"slug":1236,"type":15},"Serverless","serverless",{"name":1238,"slug":1239,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1242,"name":1242,"fn":1243,"description":1244,"org":1245,"tags":1246,"stars":24,"repoUrl":25,"updatedAt":1262},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1247,1250,1253,1256,1259],{"name":1248,"slug":1249,"type":15},"Frontend","frontend",{"name":1251,"slug":1252,"type":15},"React","react",{"name":1254,"slug":1255,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1257,"slug":1258,"type":15},"UI Components","ui-components",{"name":1260,"slug":1261,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1264,"name":1264,"fn":1265,"description":1266,"org":1267,"tags":1268,"stars":24,"repoUrl":25,"updatedAt":1282},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1269,1272,1275,1278,1281],{"name":1270,"slug":1271,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1273,"slug":1274,"type":15},"Cost Optimization","cost-optimization",{"name":1276,"slug":1277,"type":15},"LLM","llm",{"name":1279,"slug":1280,"type":15},"Performance","performance",{"name":1260,"slug":1261,"type":15},"2026-04-06T18:40:44.377464",{"slug":1284,"name":1284,"fn":1285,"description":1286,"org":1287,"tags":1288,"stars":24,"repoUrl":25,"updatedAt":1294},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1289,1290,1293],{"name":1273,"slug":1274,"type":15},{"name":1291,"slug":1292,"type":15},"Database","database",{"name":1276,"slug":1277,"type":15},"2026-04-06T18:41:08.513425",600,{"items":1297,"total":1494},[1298,1319,1342,1359,1375,1392,1411,1423,1437,1451,1463,1478],{"slug":1299,"name":1299,"fn":1300,"description":1301,"org":1302,"tags":1303,"stars":1316,"repoUrl":1317,"updatedAt":1318},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1304,1307,1310,1313],{"name":1305,"slug":1306,"type":15},"Documents","documents",{"name":1308,"slug":1309,"type":15},"Healthcare","healthcare",{"name":1311,"slug":1312,"type":15},"Insurance","insurance",{"name":1314,"slug":1315,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1320,"name":1320,"fn":1321,"description":1322,"org":1323,"tags":1324,"stars":1339,"repoUrl":1340,"updatedAt":1341},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1325,1328,1330,1333,1336],{"name":1326,"slug":1327,"type":15},".NET","dotnet",{"name":1329,"slug":1320,"type":15},"ASP.NET Core",{"name":1331,"slug":1332,"type":15},"Blazor","blazor",{"name":1334,"slug":1335,"type":15},"C#","csharp",{"name":1337,"slug":1338,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1343,"name":1343,"fn":1344,"description":1345,"org":1346,"tags":1347,"stars":1339,"repoUrl":1340,"updatedAt":1358},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1348,1351,1354,1357],{"name":1349,"slug":1350,"type":15},"Apps SDK","apps-sdk",{"name":1352,"slug":1353,"type":15},"ChatGPT","chatgpt",{"name":1355,"slug":1356,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1360,"name":1360,"fn":1361,"description":1362,"org":1363,"tags":1364,"stars":1339,"repoUrl":1340,"updatedAt":1374},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1365,1368,1371],{"name":1366,"slug":1367,"type":15},"API Development","api-development",{"name":1369,"slug":1370,"type":15},"CLI","cli",{"name":1372,"slug":1373,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1376,"name":1376,"fn":1377,"description":1378,"org":1379,"tags":1380,"stars":1339,"repoUrl":1340,"updatedAt":1391},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1381,1384,1387,1388],{"name":1382,"slug":1383,"type":15},"Cloudflare","cloudflare",{"name":1385,"slug":1386,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1229,"slug":1230,"type":15},{"name":1389,"slug":1390,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":1393,"name":1393,"fn":1394,"description":1395,"org":1396,"tags":1397,"stars":1339,"repoUrl":1340,"updatedAt":1410},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1398,1401,1404,1407],{"name":1399,"slug":1400,"type":15},"Productivity","productivity",{"name":1402,"slug":1403,"type":15},"Project Management","project-management",{"name":1405,"slug":1406,"type":15},"Strategy","strategy",{"name":1408,"slug":1409,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1412,"name":1412,"fn":1413,"description":1414,"org":1415,"tags":1416,"stars":1339,"repoUrl":1340,"updatedAt":1422},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1417,1418,1420,1421],{"name":1190,"slug":1191,"type":15},{"name":1419,"slug":1412,"type":15},"Figma",{"name":1248,"slug":1249,"type":15},{"name":1355,"slug":1356,"type":15},"2026-04-12T05:06:47.939943",{"slug":1424,"name":1424,"fn":1425,"description":1426,"org":1427,"tags":1428,"stars":1339,"repoUrl":1340,"updatedAt":1436},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1429,1430,1433,1434,1435],{"name":1190,"slug":1191,"type":15},{"name":1431,"slug":1432,"type":15},"Design System","design-system",{"name":1419,"slug":1412,"type":15},{"name":1248,"slug":1249,"type":15},{"name":1257,"slug":1258,"type":15},"2026-05-10T05:59:52.971881",{"slug":1438,"name":1438,"fn":1439,"description":1440,"org":1441,"tags":1442,"stars":1339,"repoUrl":1340,"updatedAt":1450},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1443,1444,1445,1448,1449],{"name":1190,"slug":1191,"type":15},{"name":1431,"slug":1432,"type":15},{"name":1446,"slug":1447,"type":15},"Documentation","documentation",{"name":1419,"slug":1412,"type":15},{"name":1248,"slug":1249,"type":15},"2026-05-16T06:07:47.821474",{"slug":1452,"name":1452,"fn":1453,"description":1454,"org":1455,"tags":1456,"stars":1339,"repoUrl":1340,"updatedAt":1462},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1457,1458,1459,1460,1461],{"name":1190,"slug":1191,"type":15},{"name":1419,"slug":1412,"type":15},{"name":1248,"slug":1249,"type":15},{"name":1257,"slug":1258,"type":15},{"name":1337,"slug":1338,"type":15},"2026-05-16T06:07:40.583615",{"slug":1464,"name":1464,"fn":1465,"description":1466,"org":1467,"tags":1468,"stars":1339,"repoUrl":1340,"updatedAt":1477},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1469,1472,1473,1476],{"name":1470,"slug":1471,"type":15},"Animation","animation",{"name":1372,"slug":1373,"type":15},{"name":1474,"slug":1475,"type":15},"Creative","creative",{"name":1190,"slug":1191,"type":15},"2026-05-02T05:31:48.48485",{"slug":1479,"name":1479,"fn":1480,"description":1481,"org":1482,"tags":1483,"stars":1339,"repoUrl":1340,"updatedAt":1493},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1484,1485,1486,1489,1492],{"name":1474,"slug":1475,"type":15},{"name":1190,"slug":1191,"type":15},{"name":1487,"slug":1488,"type":15},"Image Generation","image-generation",{"name":1490,"slug":1491,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]