[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-receiving-code-review":3,"mdc-hhwg2g-key":33,"related-org-openai-receiving-code-review":697,"related-repo-openai-receiving-code-review":904},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":31,"mdContent":32},"receiving-code-review","process and verify code review feedback","Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable - requires technical rigor and verification, not performative agreement or blind implementation",{"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],{"name":13,"slug":14,"type":15},"Code Review","code-review","tag",{"name":17,"slug":18,"type":15},"QA","qa",{"name":20,"slug":21,"type":15},"Engineering","engineering",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-04-16T05:11:53.644364",null,465,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fsuperpowers\u002Fskills\u002Freceiving-code-review","---\nname: receiving-code-review\ndescription: Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable - requires technical rigor and verification, not performative agreement or blind implementation\n---\n\n# Code Review Reception\n\n## Overview\n\nCode review requires technical evaluation, not emotional performance.\n\n**Core principle:** Verify before implementing. Ask before assuming. Technical correctness over social comfort.\n\n## The Response Pattern\n\n```\nWHEN receiving code review feedback:\n\n1. READ: Complete feedback without reacting\n2. UNDERSTAND: Restate requirement in own words (or ask)\n3. VERIFY: Check against codebase reality\n4. EVALUATE: Technically sound for THIS codebase?\n5. RESPOND: Technical acknowledgment or reasoned pushback\n6. IMPLEMENT: One item at a time, test each\n```\n\n## Forbidden Responses\n\n**NEVER:**\n- \"You're absolutely right!\" (explicit CLAUDE.md violation)\n- \"Great point!\" \u002F \"Excellent feedback!\" (performative)\n- \"Let me implement that now\" (before verification)\n\n**INSTEAD:**\n- Restate the technical requirement\n- Ask clarifying questions\n- Push back with technical reasoning if wrong\n- Just start working (actions > words)\n\n## Handling Unclear Feedback\n\n```\nIF any item is unclear:\n  STOP - do not implement anything yet\n  ASK for clarification on unclear items\n\nWHY: Items may be related. Partial understanding = wrong implementation.\n```\n\n**Example:**\n```\nyour human partner: \"Fix 1-6\"\nYou understand 1,2,3,6. Unclear on 4,5.\n\n❌ WRONG: Implement 1,2,3,6 now, ask about 4,5 later\n✅ RIGHT: \"I understand items 1,2,3,6. Need clarification on 4 and 5 before proceeding.\"\n```\n\n## Source-Specific Handling\n\n### From your human partner\n- **Trusted** - implement after understanding\n- **Still ask** if scope unclear\n- **No performative agreement**\n- **Skip to action** or technical acknowledgment\n\n### From External Reviewers\n```\nBEFORE implementing:\n  1. Check: Technically correct for THIS codebase?\n  2. Check: Breaks existing functionality?\n  3. Check: Reason for current implementation?\n  4. Check: Works on all platforms\u002Fversions?\n  5. Check: Does reviewer understand full context?\n\nIF suggestion seems wrong:\n  Push back with technical reasoning\n\nIF can't easily verify:\n  Say so: \"I can't verify this without [X]. Should I [investigate\u002Fask\u002Fproceed]?\"\n\nIF conflicts with your human partner's prior decisions:\n  Stop and discuss with your human partner first\n```\n\n**your human partner's rule:** \"External feedback - be skeptical, but check carefully\"\n\n## YAGNI Check for \"Professional\" Features\n\n```\nIF reviewer suggests \"implementing properly\":\n  grep codebase for actual usage\n\n  IF unused: \"This endpoint isn't called. Remove it (YAGNI)?\"\n  IF used: Then implement properly\n```\n\n**your human partner's rule:** \"You and reviewer both report to me. If we don't need this feature, don't add it.\"\n\n## Implementation Order\n\n```\nFOR multi-item feedback:\n  1. Clarify anything unclear FIRST\n  2. Then implement in this order:\n     - Blocking issues (breaks, security)\n     - Simple fixes (typos, imports)\n     - Complex fixes (refactoring, logic)\n  3. Test each fix individually\n  4. Verify no regressions\n```\n\n## When To Push Back\n\nPush back when:\n- Suggestion breaks existing functionality\n- Reviewer lacks full context\n- Violates YAGNI (unused feature)\n- Technically incorrect for this stack\n- Legacy\u002Fcompatibility reasons exist\n- Conflicts with your human partner's architectural decisions\n\n**How to push back:**\n- Use technical reasoning, not defensiveness\n- Ask specific questions\n- Reference working tests\u002Fcode\n- Involve your human partner if architectural\n\n**Signal if uncomfortable pushing back out loud:** \"Strange things are afoot at the Circle K\"\n\n## Acknowledging Correct Feedback\n\nWhen feedback IS correct:\n```\n✅ \"Fixed. [Brief description of what changed]\"\n✅ \"Good catch - [specific issue]. Fixed in [location].\"\n✅ [Just fix it and show in the code]\n\n❌ \"You're absolutely right!\"\n❌ \"Great point!\"\n❌ \"Thanks for catching that!\"\n❌ \"Thanks for [anything]\"\n❌ ANY gratitude expression\n```\n\n**Why no thanks:** Actions speak. Just fix it. The code itself shows you heard the feedback.\n\n**If you catch yourself about to write \"Thanks\":** DELETE IT. State the fix instead.\n\n## Gracefully Correcting Your Pushback\n\nIf you pushed back and were wrong:\n```\n✅ \"You were right - I checked [X] and it does [Y]. Implementing now.\"\n✅ \"Verified this and you're correct. My initial understanding was wrong because [reason]. Fixing.\"\n\n❌ Long apology\n❌ Defending why you pushed back\n❌ Over-explaining\n```\n\nState the correction factually and move on.\n\n## Common Mistakes\n\n| Mistake | Fix |\n|---------|-----|\n| Performative agreement | State requirement or just act |\n| Blind implementation | Verify against codebase first |\n| Batch without testing | One at a time, test each |\n| Assuming reviewer is right | Check if breaks things |\n| Avoiding pushback | Technical correctness > comfort |\n| Partial implementation | Clarify all items first |\n| Can't verify, proceed anyway | State limitation, ask for direction |\n\n## Real Examples\n\n**Performative Agreement (Bad):**\n```\nReviewer: \"Remove legacy code\"\n❌ \"You're absolutely right! Let me remove that...\"\n```\n\n**Technical Verification (Good):**\n```\nReviewer: \"Remove legacy code\"\n✅ \"Checking... build target is 10.15+, this API needs 13+. Need legacy for backward compat. Current impl has wrong bundle ID - fix it or drop pre-13 support?\"\n```\n\n**YAGNI (Good):**\n```\nReviewer: \"Implement proper metrics tracking with database, date filters, CSV export\"\n✅ \"Grepped codebase - nothing calls this endpoint. Remove it (YAGNI)? Or is there usage I'm missing?\"\n```\n\n**Unclear Item (Good):**\n```\nyour human partner: \"Fix items 1-6\"\nYou understand 1,2,3,6. Unclear on 4,5.\n✅ \"Understand 1,2,3,6. Need clarification on 4 and 5 before implementing.\"\n```\n\n## GitHub Thread Replies\n\nWhen replying to inline review comments on GitHub, reply in the comment thread (`gh api repos\u002F{owner}\u002F{repo}\u002Fpulls\u002F{pr}\u002Fcomments\u002F{id}\u002Freplies`), not as a top-level PR comment.\n\n## The Bottom Line\n\n**External feedback = suggestions to evaluate, not orders to follow.**\n\nVerify. Question. Then implement.\n\nNo performative agreement. Technical rigor always.\n",{"data":34,"body":35},{"name":4,"description":6},{"type":36,"children":37},"root",[38,47,54,60,71,77,90,96,104,124,132,155,161,170,178,187,193,200,241,247,256,266,272,281,290,296,305,311,316,349,357,380,390,396,401,410,420,430,436,441,450,455,461,580,586,594,603,611,620,628,637,645,654,660,673,679,687,692],{"type":39,"tag":40,"props":41,"children":43},"element","h1",{"id":42},"code-review-reception",[44],{"type":45,"value":46},"text","Code Review Reception",{"type":39,"tag":48,"props":49,"children":51},"h2",{"id":50},"overview",[52],{"type":45,"value":53},"Overview",{"type":39,"tag":55,"props":56,"children":57},"p",{},[58],{"type":45,"value":59},"Code review requires technical evaluation, not emotional performance.",{"type":39,"tag":55,"props":61,"children":62},{},[63,69],{"type":39,"tag":64,"props":65,"children":66},"strong",{},[67],{"type":45,"value":68},"Core principle:",{"type":45,"value":70}," Verify before implementing. Ask before assuming. Technical correctness over social comfort.",{"type":39,"tag":48,"props":72,"children":74},{"id":73},"the-response-pattern",[75],{"type":45,"value":76},"The Response Pattern",{"type":39,"tag":78,"props":79,"children":83},"pre",{"className":80,"code":82,"language":45},[81],"language-text","WHEN receiving code review feedback:\n\n1. READ: Complete feedback without reacting\n2. UNDERSTAND: Restate requirement in own words (or ask)\n3. VERIFY: Check against codebase reality\n4. EVALUATE: Technically sound for THIS codebase?\n5. RESPOND: Technical acknowledgment or reasoned pushback\n6. IMPLEMENT: One item at a time, test each\n",[84],{"type":39,"tag":85,"props":86,"children":88},"code",{"__ignoreMap":87},"",[89],{"type":45,"value":82},{"type":39,"tag":48,"props":91,"children":93},{"id":92},"forbidden-responses",[94],{"type":45,"value":95},"Forbidden Responses",{"type":39,"tag":55,"props":97,"children":98},{},[99],{"type":39,"tag":64,"props":100,"children":101},{},[102],{"type":45,"value":103},"NEVER:",{"type":39,"tag":105,"props":106,"children":107},"ul",{},[108,114,119],{"type":39,"tag":109,"props":110,"children":111},"li",{},[112],{"type":45,"value":113},"\"You're absolutely right!\" (explicit CLAUDE.md violation)",{"type":39,"tag":109,"props":115,"children":116},{},[117],{"type":45,"value":118},"\"Great point!\" \u002F \"Excellent feedback!\" (performative)",{"type":39,"tag":109,"props":120,"children":121},{},[122],{"type":45,"value":123},"\"Let me implement that now\" (before verification)",{"type":39,"tag":55,"props":125,"children":126},{},[127],{"type":39,"tag":64,"props":128,"children":129},{},[130],{"type":45,"value":131},"INSTEAD:",{"type":39,"tag":105,"props":133,"children":134},{},[135,140,145,150],{"type":39,"tag":109,"props":136,"children":137},{},[138],{"type":45,"value":139},"Restate the technical requirement",{"type":39,"tag":109,"props":141,"children":142},{},[143],{"type":45,"value":144},"Ask clarifying questions",{"type":39,"tag":109,"props":146,"children":147},{},[148],{"type":45,"value":149},"Push back with technical reasoning if wrong",{"type":39,"tag":109,"props":151,"children":152},{},[153],{"type":45,"value":154},"Just start working (actions > words)",{"type":39,"tag":48,"props":156,"children":158},{"id":157},"handling-unclear-feedback",[159],{"type":45,"value":160},"Handling Unclear Feedback",{"type":39,"tag":78,"props":162,"children":165},{"className":163,"code":164,"language":45},[81],"IF any item is unclear:\n  STOP - do not implement anything yet\n  ASK for clarification on unclear items\n\nWHY: Items may be related. Partial understanding = wrong implementation.\n",[166],{"type":39,"tag":85,"props":167,"children":168},{"__ignoreMap":87},[169],{"type":45,"value":164},{"type":39,"tag":55,"props":171,"children":172},{},[173],{"type":39,"tag":64,"props":174,"children":175},{},[176],{"type":45,"value":177},"Example:",{"type":39,"tag":78,"props":179,"children":182},{"className":180,"code":181,"language":45},[81],"your human partner: \"Fix 1-6\"\nYou understand 1,2,3,6. Unclear on 4,5.\n\n❌ WRONG: Implement 1,2,3,6 now, ask about 4,5 later\n✅ RIGHT: \"I understand items 1,2,3,6. Need clarification on 4 and 5 before proceeding.\"\n",[183],{"type":39,"tag":85,"props":184,"children":185},{"__ignoreMap":87},[186],{"type":45,"value":181},{"type":39,"tag":48,"props":188,"children":190},{"id":189},"source-specific-handling",[191],{"type":45,"value":192},"Source-Specific Handling",{"type":39,"tag":194,"props":195,"children":197},"h3",{"id":196},"from-your-human-partner",[198],{"type":45,"value":199},"From your human partner",{"type":39,"tag":105,"props":201,"children":202},{},[203,213,223,231],{"type":39,"tag":109,"props":204,"children":205},{},[206,211],{"type":39,"tag":64,"props":207,"children":208},{},[209],{"type":45,"value":210},"Trusted",{"type":45,"value":212}," - implement after understanding",{"type":39,"tag":109,"props":214,"children":215},{},[216,221],{"type":39,"tag":64,"props":217,"children":218},{},[219],{"type":45,"value":220},"Still ask",{"type":45,"value":222}," if scope unclear",{"type":39,"tag":109,"props":224,"children":225},{},[226],{"type":39,"tag":64,"props":227,"children":228},{},[229],{"type":45,"value":230},"No performative agreement",{"type":39,"tag":109,"props":232,"children":233},{},[234,239],{"type":39,"tag":64,"props":235,"children":236},{},[237],{"type":45,"value":238},"Skip to action",{"type":45,"value":240}," or technical acknowledgment",{"type":39,"tag":194,"props":242,"children":244},{"id":243},"from-external-reviewers",[245],{"type":45,"value":246},"From External Reviewers",{"type":39,"tag":78,"props":248,"children":251},{"className":249,"code":250,"language":45},[81],"BEFORE implementing:\n  1. Check: Technically correct for THIS codebase?\n  2. Check: Breaks existing functionality?\n  3. Check: Reason for current implementation?\n  4. Check: Works on all platforms\u002Fversions?\n  5. Check: Does reviewer understand full context?\n\nIF suggestion seems wrong:\n  Push back with technical reasoning\n\nIF can't easily verify:\n  Say so: \"I can't verify this without [X]. Should I [investigate\u002Fask\u002Fproceed]?\"\n\nIF conflicts with your human partner's prior decisions:\n  Stop and discuss with your human partner first\n",[252],{"type":39,"tag":85,"props":253,"children":254},{"__ignoreMap":87},[255],{"type":45,"value":250},{"type":39,"tag":55,"props":257,"children":258},{},[259,264],{"type":39,"tag":64,"props":260,"children":261},{},[262],{"type":45,"value":263},"your human partner's rule:",{"type":45,"value":265}," \"External feedback - be skeptical, but check carefully\"",{"type":39,"tag":48,"props":267,"children":269},{"id":268},"yagni-check-for-professional-features",[270],{"type":45,"value":271},"YAGNI Check for \"Professional\" Features",{"type":39,"tag":78,"props":273,"children":276},{"className":274,"code":275,"language":45},[81],"IF reviewer suggests \"implementing properly\":\n  grep codebase for actual usage\n\n  IF unused: \"This endpoint isn't called. Remove it (YAGNI)?\"\n  IF used: Then implement properly\n",[277],{"type":39,"tag":85,"props":278,"children":279},{"__ignoreMap":87},[280],{"type":45,"value":275},{"type":39,"tag":55,"props":282,"children":283},{},[284,288],{"type":39,"tag":64,"props":285,"children":286},{},[287],{"type":45,"value":263},{"type":45,"value":289}," \"You and reviewer both report to me. If we don't need this feature, don't add it.\"",{"type":39,"tag":48,"props":291,"children":293},{"id":292},"implementation-order",[294],{"type":45,"value":295},"Implementation Order",{"type":39,"tag":78,"props":297,"children":300},{"className":298,"code":299,"language":45},[81],"FOR multi-item feedback:\n  1. Clarify anything unclear FIRST\n  2. Then implement in this order:\n     - Blocking issues (breaks, security)\n     - Simple fixes (typos, imports)\n     - Complex fixes (refactoring, logic)\n  3. Test each fix individually\n  4. Verify no regressions\n",[301],{"type":39,"tag":85,"props":302,"children":303},{"__ignoreMap":87},[304],{"type":45,"value":299},{"type":39,"tag":48,"props":306,"children":308},{"id":307},"when-to-push-back",[309],{"type":45,"value":310},"When To Push Back",{"type":39,"tag":55,"props":312,"children":313},{},[314],{"type":45,"value":315},"Push back when:",{"type":39,"tag":105,"props":317,"children":318},{},[319,324,329,334,339,344],{"type":39,"tag":109,"props":320,"children":321},{},[322],{"type":45,"value":323},"Suggestion breaks existing functionality",{"type":39,"tag":109,"props":325,"children":326},{},[327],{"type":45,"value":328},"Reviewer lacks full context",{"type":39,"tag":109,"props":330,"children":331},{},[332],{"type":45,"value":333},"Violates YAGNI (unused feature)",{"type":39,"tag":109,"props":335,"children":336},{},[337],{"type":45,"value":338},"Technically incorrect for this stack",{"type":39,"tag":109,"props":340,"children":341},{},[342],{"type":45,"value":343},"Legacy\u002Fcompatibility reasons exist",{"type":39,"tag":109,"props":345,"children":346},{},[347],{"type":45,"value":348},"Conflicts with your human partner's architectural decisions",{"type":39,"tag":55,"props":350,"children":351},{},[352],{"type":39,"tag":64,"props":353,"children":354},{},[355],{"type":45,"value":356},"How to push back:",{"type":39,"tag":105,"props":358,"children":359},{},[360,365,370,375],{"type":39,"tag":109,"props":361,"children":362},{},[363],{"type":45,"value":364},"Use technical reasoning, not defensiveness",{"type":39,"tag":109,"props":366,"children":367},{},[368],{"type":45,"value":369},"Ask specific questions",{"type":39,"tag":109,"props":371,"children":372},{},[373],{"type":45,"value":374},"Reference working tests\u002Fcode",{"type":39,"tag":109,"props":376,"children":377},{},[378],{"type":45,"value":379},"Involve your human partner if architectural",{"type":39,"tag":55,"props":381,"children":382},{},[383,388],{"type":39,"tag":64,"props":384,"children":385},{},[386],{"type":45,"value":387},"Signal if uncomfortable pushing back out loud:",{"type":45,"value":389}," \"Strange things are afoot at the Circle K\"",{"type":39,"tag":48,"props":391,"children":393},{"id":392},"acknowledging-correct-feedback",[394],{"type":45,"value":395},"Acknowledging Correct Feedback",{"type":39,"tag":55,"props":397,"children":398},{},[399],{"type":45,"value":400},"When feedback IS correct:",{"type":39,"tag":78,"props":402,"children":405},{"className":403,"code":404,"language":45},[81],"✅ \"Fixed. [Brief description of what changed]\"\n✅ \"Good catch - [specific issue]. Fixed in [location].\"\n✅ [Just fix it and show in the code]\n\n❌ \"You're absolutely right!\"\n❌ \"Great point!\"\n❌ \"Thanks for catching that!\"\n❌ \"Thanks for [anything]\"\n❌ ANY gratitude expression\n",[406],{"type":39,"tag":85,"props":407,"children":408},{"__ignoreMap":87},[409],{"type":45,"value":404},{"type":39,"tag":55,"props":411,"children":412},{},[413,418],{"type":39,"tag":64,"props":414,"children":415},{},[416],{"type":45,"value":417},"Why no thanks:",{"type":45,"value":419}," Actions speak. Just fix it. The code itself shows you heard the feedback.",{"type":39,"tag":55,"props":421,"children":422},{},[423,428],{"type":39,"tag":64,"props":424,"children":425},{},[426],{"type":45,"value":427},"If you catch yourself about to write \"Thanks\":",{"type":45,"value":429}," DELETE IT. State the fix instead.",{"type":39,"tag":48,"props":431,"children":433},{"id":432},"gracefully-correcting-your-pushback",[434],{"type":45,"value":435},"Gracefully Correcting Your Pushback",{"type":39,"tag":55,"props":437,"children":438},{},[439],{"type":45,"value":440},"If you pushed back and were wrong:",{"type":39,"tag":78,"props":442,"children":445},{"className":443,"code":444,"language":45},[81],"✅ \"You were right - I checked [X] and it does [Y]. Implementing now.\"\n✅ \"Verified this and you're correct. My initial understanding was wrong because [reason]. Fixing.\"\n\n❌ Long apology\n❌ Defending why you pushed back\n❌ Over-explaining\n",[446],{"type":39,"tag":85,"props":447,"children":448},{"__ignoreMap":87},[449],{"type":45,"value":444},{"type":39,"tag":55,"props":451,"children":452},{},[453],{"type":45,"value":454},"State the correction factually and move on.",{"type":39,"tag":48,"props":456,"children":458},{"id":457},"common-mistakes",[459],{"type":45,"value":460},"Common Mistakes",{"type":39,"tag":462,"props":463,"children":464},"table",{},[465,484],{"type":39,"tag":466,"props":467,"children":468},"thead",{},[469],{"type":39,"tag":470,"props":471,"children":472},"tr",{},[473,479],{"type":39,"tag":474,"props":475,"children":476},"th",{},[477],{"type":45,"value":478},"Mistake",{"type":39,"tag":474,"props":480,"children":481},{},[482],{"type":45,"value":483},"Fix",{"type":39,"tag":485,"props":486,"children":487},"tbody",{},[488,502,515,528,541,554,567],{"type":39,"tag":470,"props":489,"children":490},{},[491,497],{"type":39,"tag":492,"props":493,"children":494},"td",{},[495],{"type":45,"value":496},"Performative agreement",{"type":39,"tag":492,"props":498,"children":499},{},[500],{"type":45,"value":501},"State requirement or just act",{"type":39,"tag":470,"props":503,"children":504},{},[505,510],{"type":39,"tag":492,"props":506,"children":507},{},[508],{"type":45,"value":509},"Blind implementation",{"type":39,"tag":492,"props":511,"children":512},{},[513],{"type":45,"value":514},"Verify against codebase first",{"type":39,"tag":470,"props":516,"children":517},{},[518,523],{"type":39,"tag":492,"props":519,"children":520},{},[521],{"type":45,"value":522},"Batch without testing",{"type":39,"tag":492,"props":524,"children":525},{},[526],{"type":45,"value":527},"One at a time, test each",{"type":39,"tag":470,"props":529,"children":530},{},[531,536],{"type":39,"tag":492,"props":532,"children":533},{},[534],{"type":45,"value":535},"Assuming reviewer is right",{"type":39,"tag":492,"props":537,"children":538},{},[539],{"type":45,"value":540},"Check if breaks things",{"type":39,"tag":470,"props":542,"children":543},{},[544,549],{"type":39,"tag":492,"props":545,"children":546},{},[547],{"type":45,"value":548},"Avoiding pushback",{"type":39,"tag":492,"props":550,"children":551},{},[552],{"type":45,"value":553},"Technical correctness > comfort",{"type":39,"tag":470,"props":555,"children":556},{},[557,562],{"type":39,"tag":492,"props":558,"children":559},{},[560],{"type":45,"value":561},"Partial implementation",{"type":39,"tag":492,"props":563,"children":564},{},[565],{"type":45,"value":566},"Clarify all items first",{"type":39,"tag":470,"props":568,"children":569},{},[570,575],{"type":39,"tag":492,"props":571,"children":572},{},[573],{"type":45,"value":574},"Can't verify, proceed anyway",{"type":39,"tag":492,"props":576,"children":577},{},[578],{"type":45,"value":579},"State limitation, ask for direction",{"type":39,"tag":48,"props":581,"children":583},{"id":582},"real-examples",[584],{"type":45,"value":585},"Real Examples",{"type":39,"tag":55,"props":587,"children":588},{},[589],{"type":39,"tag":64,"props":590,"children":591},{},[592],{"type":45,"value":593},"Performative Agreement (Bad):",{"type":39,"tag":78,"props":595,"children":598},{"className":596,"code":597,"language":45},[81],"Reviewer: \"Remove legacy code\"\n❌ \"You're absolutely right! Let me remove that...\"\n",[599],{"type":39,"tag":85,"props":600,"children":601},{"__ignoreMap":87},[602],{"type":45,"value":597},{"type":39,"tag":55,"props":604,"children":605},{},[606],{"type":39,"tag":64,"props":607,"children":608},{},[609],{"type":45,"value":610},"Technical Verification (Good):",{"type":39,"tag":78,"props":612,"children":615},{"className":613,"code":614,"language":45},[81],"Reviewer: \"Remove legacy code\"\n✅ \"Checking... build target is 10.15+, this API needs 13+. Need legacy for backward compat. Current impl has wrong bundle ID - fix it or drop pre-13 support?\"\n",[616],{"type":39,"tag":85,"props":617,"children":618},{"__ignoreMap":87},[619],{"type":45,"value":614},{"type":39,"tag":55,"props":621,"children":622},{},[623],{"type":39,"tag":64,"props":624,"children":625},{},[626],{"type":45,"value":627},"YAGNI (Good):",{"type":39,"tag":78,"props":629,"children":632},{"className":630,"code":631,"language":45},[81],"Reviewer: \"Implement proper metrics tracking with database, date filters, CSV export\"\n✅ \"Grepped codebase - nothing calls this endpoint. Remove it (YAGNI)? Or is there usage I'm missing?\"\n",[633],{"type":39,"tag":85,"props":634,"children":635},{"__ignoreMap":87},[636],{"type":45,"value":631},{"type":39,"tag":55,"props":638,"children":639},{},[640],{"type":39,"tag":64,"props":641,"children":642},{},[643],{"type":45,"value":644},"Unclear Item (Good):",{"type":39,"tag":78,"props":646,"children":649},{"className":647,"code":648,"language":45},[81],"your human partner: \"Fix items 1-6\"\nYou understand 1,2,3,6. Unclear on 4,5.\n✅ \"Understand 1,2,3,6. Need clarification on 4 and 5 before implementing.\"\n",[650],{"type":39,"tag":85,"props":651,"children":652},{"__ignoreMap":87},[653],{"type":45,"value":648},{"type":39,"tag":48,"props":655,"children":657},{"id":656},"github-thread-replies",[658],{"type":45,"value":659},"GitHub Thread Replies",{"type":39,"tag":55,"props":661,"children":662},{},[663,665,671],{"type":45,"value":664},"When replying to inline review comments on GitHub, reply in the comment thread (",{"type":39,"tag":85,"props":666,"children":668},{"className":667},[],[669],{"type":45,"value":670},"gh api repos\u002F{owner}\u002F{repo}\u002Fpulls\u002F{pr}\u002Fcomments\u002F{id}\u002Freplies",{"type":45,"value":672},"), not as a top-level PR comment.",{"type":39,"tag":48,"props":674,"children":676},{"id":675},"the-bottom-line",[677],{"type":45,"value":678},"The Bottom Line",{"type":39,"tag":55,"props":680,"children":681},{},[682],{"type":39,"tag":64,"props":683,"children":684},{},[685],{"type":45,"value":686},"External feedback = suggestions to evaluate, not orders to follow.",{"type":39,"tag":55,"props":688,"children":689},{},[690],{"type":45,"value":691},"Verify. Question. Then implement.",{"type":39,"tag":55,"props":693,"children":694},{},[695],{"type":45,"value":696},"No performative agreement. Technical rigor always.",{"items":698,"total":903},[699,720,743,760,776,795,814,830,846,860,872,887],{"slug":700,"name":700,"fn":701,"description":702,"org":703,"tags":704,"stars":717,"repoUrl":718,"updatedAt":719},"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},[705,708,711,714],{"name":706,"slug":707,"type":15},"Documents","documents",{"name":709,"slug":710,"type":15},"Healthcare","healthcare",{"name":712,"slug":713,"type":15},"Insurance","insurance",{"name":715,"slug":716,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":721,"name":721,"fn":722,"description":723,"org":724,"tags":725,"stars":740,"repoUrl":741,"updatedAt":742},"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},[726,729,731,734,737],{"name":727,"slug":728,"type":15},".NET","dotnet",{"name":730,"slug":721,"type":15},"ASP.NET Core",{"name":732,"slug":733,"type":15},"Blazor","blazor",{"name":735,"slug":736,"type":15},"C#","csharp",{"name":738,"slug":739,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":744,"name":744,"fn":745,"description":746,"org":747,"tags":748,"stars":740,"repoUrl":741,"updatedAt":759},"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},[749,752,755,758],{"name":750,"slug":751,"type":15},"Apps SDK","apps-sdk",{"name":753,"slug":754,"type":15},"ChatGPT","chatgpt",{"name":756,"slug":757,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":761,"name":761,"fn":762,"description":763,"org":764,"tags":765,"stars":740,"repoUrl":741,"updatedAt":775},"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},[766,769,772],{"name":767,"slug":768,"type":15},"API Development","api-development",{"name":770,"slug":771,"type":15},"CLI","cli",{"name":773,"slug":774,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":777,"name":777,"fn":778,"description":779,"org":780,"tags":781,"stars":740,"repoUrl":741,"updatedAt":794},"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},[782,785,788,791],{"name":783,"slug":784,"type":15},"Cloudflare","cloudflare",{"name":786,"slug":787,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":789,"slug":790,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":792,"slug":793,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":796,"name":796,"fn":797,"description":798,"org":799,"tags":800,"stars":740,"repoUrl":741,"updatedAt":813},"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},[801,804,807,810],{"name":802,"slug":803,"type":15},"Productivity","productivity",{"name":805,"slug":806,"type":15},"Project Management","project-management",{"name":808,"slug":809,"type":15},"Strategy","strategy",{"name":811,"slug":812,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":815,"name":815,"fn":816,"description":817,"org":818,"tags":819,"stars":740,"repoUrl":741,"updatedAt":829},"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},[820,823,825,828],{"name":821,"slug":822,"type":15},"Design","design",{"name":824,"slug":815,"type":15},"Figma",{"name":826,"slug":827,"type":15},"Frontend","frontend",{"name":756,"slug":757,"type":15},"2026-04-12T05:06:47.939943",{"slug":831,"name":831,"fn":832,"description":833,"org":834,"tags":835,"stars":740,"repoUrl":741,"updatedAt":845},"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},[836,837,840,841,842],{"name":821,"slug":822,"type":15},{"name":838,"slug":839,"type":15},"Design System","design-system",{"name":824,"slug":815,"type":15},{"name":826,"slug":827,"type":15},{"name":843,"slug":844,"type":15},"UI Components","ui-components","2026-05-10T05:59:52.971881",{"slug":847,"name":847,"fn":848,"description":849,"org":850,"tags":851,"stars":740,"repoUrl":741,"updatedAt":859},"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},[852,853,854,857,858],{"name":821,"slug":822,"type":15},{"name":838,"slug":839,"type":15},{"name":855,"slug":856,"type":15},"Documentation","documentation",{"name":824,"slug":815,"type":15},{"name":826,"slug":827,"type":15},"2026-05-16T06:07:47.821474",{"slug":861,"name":861,"fn":862,"description":863,"org":864,"tags":865,"stars":740,"repoUrl":741,"updatedAt":871},"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},[866,867,868,869,870],{"name":821,"slug":822,"type":15},{"name":824,"slug":815,"type":15},{"name":826,"slug":827,"type":15},{"name":843,"slug":844,"type":15},{"name":738,"slug":739,"type":15},"2026-05-16T06:07:40.583615",{"slug":873,"name":873,"fn":874,"description":875,"org":876,"tags":877,"stars":740,"repoUrl":741,"updatedAt":886},"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},[878,881,882,885],{"name":879,"slug":880,"type":15},"Animation","animation",{"name":773,"slug":774,"type":15},{"name":883,"slug":884,"type":15},"Creative","creative",{"name":821,"slug":822,"type":15},"2026-05-02T05:31:48.48485",{"slug":888,"name":888,"fn":889,"description":890,"org":891,"tags":892,"stars":740,"repoUrl":741,"updatedAt":902},"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},[893,894,895,898,901],{"name":883,"slug":884,"type":15},{"name":821,"slug":822,"type":15},{"name":896,"slug":897,"type":15},"Image Generation","image-generation",{"name":899,"slug":900,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675,{"items":905,"total":1019},[906,923,939,951,969,987,1007],{"slug":907,"name":907,"fn":908,"description":909,"org":910,"tags":911,"stars":22,"repoUrl":23,"updatedAt":922},"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},[912,915,918,921],{"name":913,"slug":914,"type":15},"Accessibility","accessibility",{"name":916,"slug":917,"type":15},"Charts","charts",{"name":919,"slug":920,"type":15},"Data Visualization","data-visualization",{"name":821,"slug":822,"type":15},"2026-06-30T19:00:57.102",{"slug":924,"name":924,"fn":925,"description":926,"org":927,"tags":928,"stars":22,"repoUrl":23,"updatedAt":938},"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},[929,932,935],{"name":930,"slug":931,"type":15},"Agents","agents",{"name":933,"slug":934,"type":15},"Browser Automation","browser-automation",{"name":936,"slug":937,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":940,"name":940,"fn":941,"description":942,"org":943,"tags":944,"stars":22,"repoUrl":23,"updatedAt":950},"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},[945,946,949],{"name":933,"slug":934,"type":15},{"name":947,"slug":948,"type":15},"Local Development","local-development",{"name":936,"slug":937,"type":15},"2026-04-06T18:41:17.526867",{"slug":952,"name":952,"fn":953,"description":954,"org":955,"tags":956,"stars":22,"repoUrl":23,"updatedAt":968},"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},[957,958,959,962,965],{"name":930,"slug":931,"type":15},{"name":789,"slug":790,"type":15},{"name":960,"slug":961,"type":15},"SDK","sdk",{"name":963,"slug":964,"type":15},"Serverless","serverless",{"name":966,"slug":967,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":970,"name":970,"fn":971,"description":972,"org":973,"tags":974,"stars":22,"repoUrl":23,"updatedAt":986},"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},[975,976,979,982,983],{"name":826,"slug":827,"type":15},{"name":977,"slug":978,"type":15},"React","react",{"name":980,"slug":981,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":843,"slug":844,"type":15},{"name":984,"slug":985,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":988,"name":988,"fn":989,"description":990,"org":991,"tags":992,"stars":22,"repoUrl":23,"updatedAt":1006},"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},[993,996,999,1002,1005],{"name":994,"slug":995,"type":15},"AI Infrastructure","ai-infrastructure",{"name":997,"slug":998,"type":15},"Cost Optimization","cost-optimization",{"name":1000,"slug":1001,"type":15},"LLM","llm",{"name":1003,"slug":1004,"type":15},"Performance","performance",{"name":984,"slug":985,"type":15},"2026-04-06T18:40:44.377464",{"slug":1008,"name":1008,"fn":1009,"description":1010,"org":1011,"tags":1012,"stars":22,"repoUrl":23,"updatedAt":1018},"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},[1013,1014,1017],{"name":997,"slug":998,"type":15},{"name":1015,"slug":1016,"type":15},"Database","database",{"name":1000,"slug":1001,"type":15},"2026-04-06T18:41:08.513425",600]