[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-letta-code-review":3,"mdc--tjc1z4-key":36,"related-repo-letta-code-review":1836,"related-org-letta-code-review":1859},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"code-review","handle pull request code reviews","Skill for handling PR code reviews. Use when triggered by a PR review comment, review request, or when asked to review code changes. Provides workflow for reading review comments, understanding feedback, and iterating on changes.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"letta","Letta","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fletta.png","letta-ai",[13,17,19,22],{"name":14,"slug":15,"type":16},"GitHub","github","tag",{"name":18,"slug":4,"type":16},"Code Review",{"name":20,"slug":21,"type":16},"Engineering","engineering",{"name":23,"slug":24,"type":16},"Pull Requests","pull-requests",14,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fletta-code-action","2026-07-13T06:26:11.459799",null,5,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"Integrate Letta Code into your GitHub repo to review issues, code, and more","https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fletta-code-action\u002Ftree\u002FHEAD\u002Fskills\u002Fcode-review","---\nname: code-review\ndescription: Skill for handling PR code reviews. Use when triggered by a PR review comment, review request, or when asked to review code changes. Provides workflow for reading review comments, understanding feedback, and iterating on changes.\n---\n\n# Code Review Skill\n\nYou are handling a PR code review interaction. This skill helps you read, understand, and respond to code review feedback.\n\n## When This Skill Applies\n\n- Triggered by `pull_request_review` or `pull_request_review_comment` events\n- User asks you to address review feedback\n- User requests a code review of their changes\n\n## Reading Review Comments\n\n### Get All Reviews on a PR\n\n```bash\n# List all reviews (approved, changes requested, commented)\ngh api repos\u002F$GITHUB_REPOSITORY\u002Fpulls\u002F\u003Cnumber>\u002Freviews\n\n# Get a specific review's comments\ngh api repos\u002F$GITHUB_REPOSITORY\u002Fpulls\u002F\u003Cnumber>\u002Freviews\u002F\u003Creview_id>\u002Fcomments\n```\n\n### Get Review Comments (Line-Level Feedback)\n\n```bash\n# All line-level review comments on the PR\ngh api repos\u002F$GITHUB_REPOSITORY\u002Fpulls\u002F\u003Cnumber>\u002Fcomments\n\n# Filter by specific path\ngh api repos\u002F$GITHUB_REPOSITORY\u002Fpulls\u002F\u003Cnumber>\u002Fcomments | jq '.[] | select(.path == \"src\u002Fexample.ts\")'\n```\n\n### Understanding Review Comment Structure\n\nKey fields in review comments:\n\n- `path`: File being commented on\n- `line` \u002F `original_line`: Line number in the diff\n- `body`: The reviewer's comment text\n- `diff_hunk`: Code context around the comment\n- `in_reply_to_id`: If this is a reply to another comment\n\n## Responding to Review Feedback\n\n### Workflow for Addressing Feedback\n\n1. **Read the review comments** to understand what changes are requested\n2. **Read the relevant files** using the paths from the comments\n3. **Make the requested changes** using Edit tool\n4. **Commit and push** to update the PR\n5. **Update your tracking comment** to summarize what was addressed\n\n### Replying to Review Comments\n\n```bash\n# Reply to a specific review comment\ngh api repos\u002F$GITHUB_REPOSITORY\u002Fpulls\u002F\u003Cnumber>\u002Fcomments \\\n  -X POST \\\n  -f body=\"Fixed in the latest commit\" \\\n  -f in_reply_to=\u003Ccomment_id>\n```\n\n### Marking Conversations as Resolved\n\nAfter addressing feedback, the reviewer typically resolves the conversation. You can indicate you've addressed it by:\n\n1. Replying to the comment explaining what you changed\n2. Updating your tracking comment with a summary\n\n## Providing Code Review Feedback\n\nWhen asked to review code changes:\n\n### Quick Review Checklist\n\n- **Correctness**: Does the code do what it's supposed to?\n- **Security**: Are there any security vulnerabilities?\n- **Performance**: Are there obvious performance issues?\n- **Readability**: Is the code clear and maintainable?\n- **Tests**: Are changes tested appropriately?\n\n### Viewing PR Changes\n\n```bash\n# View the diff\ngh pr diff \u003Cnumber> --repo $GITHUB_REPOSITORY\n\n# View changed files list\ngh pr view \u003Cnumber> --repo $GITHUB_REPOSITORY --json files\n\n# Compare with base branch (use two dots for shallow clones in GitHub Actions)\ngit diff origin\u002F$BASE_BRANCH..HEAD\n```\n\n### Providing Feedback\n\nPost your review feedback to your tracking comment. Structure it clearly:\n\n- Group feedback by file\n- Reference specific line numbers\n- Distinguish between required changes and suggestions\n- Be constructive and specific\n\n## Submitting Interactive Reviews\n\nUse `gh pr review` to submit formal GitHub reviews that appear in the PR's review UI.\n\n### Approve a PR\n\n```bash\ngh pr review \u003Cnumber> --approve --body \"LGTM! Changes look good.\"\n```\n\n### Request Changes\n\n```bash\ngh pr review \u003Cnumber> --request-changes --body \"Please address the following issues...\"\n```\n\n### Leave a Comment Review (without approval\u002Frejection)\n\n```bash\ngh pr review \u003Cnumber> --comment --body \"Some observations about the code...\"\n```\n\n## Adding Line-Level Comments\n\nTo add comments on specific lines of code (shown inline in GitHub's diff view):\n\n### Create a Review with Line Comments\n\n```bash\n# First, get the latest commit SHA\nCOMMIT_SHA=$(gh pr view \u003Cnumber> --json headRefOid --jq '.headRefOid')\n\n# Create a review comment on a specific position in the diff\n# Note: position is the line number in the diff (not the file), starting from 1\ngh api repos\u002F$GITHUB_REPOSITORY\u002Fpulls\u002F\u003Cnumber>\u002Fcomments \\\n  -X POST \\\n  -f body=\"Consider using a more descriptive variable name here\" \\\n  -f commit_id=\"$COMMIT_SHA\" \\\n  -f path=\"src\u002Fexample.ts\" \\\n  -F position=10\n```\n\n### Key Fields for Line Comments\n\n- `commit_id`: The SHA of the commit to comment on (use latest)\n- `path`: File path relative to repo root\n- `position`: Position in the diff (line number in the diff hunk, starting at 1)\n- `body`: Your comment text\n\n**Note:** The `position` is the line number within the diff, not the line number in the file. Count lines from the start of the diff hunk.\n\n## Iterating on Changes\n\nWhen you need to make additional changes after initial feedback:\n\n```bash\n# Ensure you're on the PR branch\ngh pr checkout \u003Cnumber>\n\n# Make changes, then commit\ngit add \u003Cfiles>\ngit commit -m \"fix: address review feedback\"\n\n# Push to update the PR\ngit push origin HEAD\n```\n\n## Important Notes\n\n1. **Read before responding** - Always read the full review context before making changes\n2. **Address all comments** - Don't leave feedback unaddressed\n3. **Communicate clearly** - Update your tracking comment to show what you've addressed\n4. **Test your changes** - Run tests after making review-requested changes\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,50,56,63,100,106,113,280,286,428,434,439,504,510,516,571,577,718,724,729,742,748,753,759,812,818,988,994,999,1022,1028,1041,1047,1111,1117,1177,1183,1243,1249,1254,1260,1543,1549,1594,1611,1617,1622,1781,1787,1830],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"code-review-skill",[47],{"type":48,"value":49},"text","Code Review Skill",{"type":42,"tag":51,"props":52,"children":53},"p",{},[54],{"type":48,"value":55},"You are handling a PR code review interaction. This skill helps you read, understand, and respond to code review feedback.",{"type":42,"tag":57,"props":58,"children":60},"h2",{"id":59},"when-this-skill-applies",[61],{"type":48,"value":62},"When This Skill Applies",{"type":42,"tag":64,"props":65,"children":66},"ul",{},[67,90,95],{"type":42,"tag":68,"props":69,"children":70},"li",{},[71,73,80,82,88],{"type":48,"value":72},"Triggered by ",{"type":42,"tag":74,"props":75,"children":77},"code",{"className":76},[],[78],{"type":48,"value":79},"pull_request_review",{"type":48,"value":81}," or ",{"type":42,"tag":74,"props":83,"children":85},{"className":84},[],[86],{"type":48,"value":87},"pull_request_review_comment",{"type":48,"value":89}," events",{"type":42,"tag":68,"props":91,"children":92},{},[93],{"type":48,"value":94},"User asks you to address review feedback",{"type":42,"tag":68,"props":96,"children":97},{},[98],{"type":48,"value":99},"User requests a code review of their changes",{"type":42,"tag":57,"props":101,"children":103},{"id":102},"reading-review-comments",[104],{"type":48,"value":105},"Reading Review Comments",{"type":42,"tag":107,"props":108,"children":110},"h3",{"id":109},"get-all-reviews-on-a-pr",[111],{"type":48,"value":112},"Get All Reviews on a PR",{"type":42,"tag":114,"props":115,"children":120},"pre",{"className":116,"code":117,"language":118,"meta":119,"style":119},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# List all reviews (approved, changes requested, commented)\ngh api repos\u002F$GITHUB_REPOSITORY\u002Fpulls\u002F\u003Cnumber>\u002Freviews\n\n# Get a specific review's comments\ngh api repos\u002F$GITHUB_REPOSITORY\u002Fpulls\u002F\u003Cnumber>\u002Freviews\u002F\u003Creview_id>\u002Fcomments\n","bash","",[121],{"type":42,"tag":74,"props":122,"children":123},{"__ignoreMap":119},[124,136,194,204,213],{"type":42,"tag":125,"props":126,"children":129},"span",{"class":127,"line":128},"line",1,[130],{"type":42,"tag":125,"props":131,"children":133},{"style":132},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[134],{"type":48,"value":135},"# List all reviews (approved, changes requested, commented)\n",{"type":42,"tag":125,"props":137,"children":139},{"class":127,"line":138},2,[140,146,152,157,163,168,174,179,184,189],{"type":42,"tag":125,"props":141,"children":143},{"style":142},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[144],{"type":48,"value":145},"gh",{"type":42,"tag":125,"props":147,"children":149},{"style":148},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[150],{"type":48,"value":151}," api",{"type":42,"tag":125,"props":153,"children":154},{"style":148},[155],{"type":48,"value":156}," repos\u002F",{"type":42,"tag":125,"props":158,"children":160},{"style":159},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[161],{"type":48,"value":162},"$GITHUB_REPOSITORY",{"type":42,"tag":125,"props":164,"children":165},{"style":148},[166],{"type":48,"value":167},"\u002Fpulls\u002F",{"type":42,"tag":125,"props":169,"children":171},{"style":170},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[172],{"type":48,"value":173},"\u003C",{"type":42,"tag":125,"props":175,"children":176},{"style":148},[177],{"type":48,"value":178},"numbe",{"type":42,"tag":125,"props":180,"children":181},{"style":159},[182],{"type":48,"value":183},"r",{"type":42,"tag":125,"props":185,"children":186},{"style":170},[187],{"type":48,"value":188},">",{"type":42,"tag":125,"props":190,"children":191},{"style":148},[192],{"type":48,"value":193},"\u002Freviews\n",{"type":42,"tag":125,"props":195,"children":197},{"class":127,"line":196},3,[198],{"type":42,"tag":125,"props":199,"children":201},{"emptyLinePlaceholder":200},true,[202],{"type":48,"value":203},"\n",{"type":42,"tag":125,"props":205,"children":207},{"class":127,"line":206},4,[208],{"type":42,"tag":125,"props":209,"children":210},{"style":132},[211],{"type":48,"value":212},"# Get a specific review's comments\n",{"type":42,"tag":125,"props":214,"children":215},{"class":127,"line":29},[216,220,224,228,232,236,240,244,248,252,257,261,266,271,275],{"type":42,"tag":125,"props":217,"children":218},{"style":142},[219],{"type":48,"value":145},{"type":42,"tag":125,"props":221,"children":222},{"style":148},[223],{"type":48,"value":151},{"type":42,"tag":125,"props":225,"children":226},{"style":148},[227],{"type":48,"value":156},{"type":42,"tag":125,"props":229,"children":230},{"style":159},[231],{"type":48,"value":162},{"type":42,"tag":125,"props":233,"children":234},{"style":148},[235],{"type":48,"value":167},{"type":42,"tag":125,"props":237,"children":238},{"style":170},[239],{"type":48,"value":173},{"type":42,"tag":125,"props":241,"children":242},{"style":148},[243],{"type":48,"value":178},{"type":42,"tag":125,"props":245,"children":246},{"style":159},[247],{"type":48,"value":183},{"type":42,"tag":125,"props":249,"children":250},{"style":170},[251],{"type":48,"value":188},{"type":42,"tag":125,"props":253,"children":254},{"style":148},[255],{"type":48,"value":256},"\u002Freviews\u002F",{"type":42,"tag":125,"props":258,"children":259},{"style":170},[260],{"type":48,"value":173},{"type":42,"tag":125,"props":262,"children":263},{"style":148},[264],{"type":48,"value":265},"review_i",{"type":42,"tag":125,"props":267,"children":268},{"style":159},[269],{"type":48,"value":270},"d",{"type":42,"tag":125,"props":272,"children":273},{"style":170},[274],{"type":48,"value":188},{"type":42,"tag":125,"props":276,"children":277},{"style":148},[278],{"type":48,"value":279},"\u002Fcomments\n",{"type":42,"tag":107,"props":281,"children":283},{"id":282},"get-review-comments-line-level-feedback",[284],{"type":48,"value":285},"Get Review Comments (Line-Level Feedback)",{"type":42,"tag":114,"props":287,"children":289},{"className":116,"code":288,"language":118,"meta":119,"style":119},"# All line-level review comments on the PR\ngh api repos\u002F$GITHUB_REPOSITORY\u002Fpulls\u002F\u003Cnumber>\u002Fcomments\n\n# Filter by specific path\ngh api repos\u002F$GITHUB_REPOSITORY\u002Fpulls\u002F\u003Cnumber>\u002Fcomments | jq '.[] | select(.path == \"src\u002Fexample.ts\")'\n",[290],{"type":42,"tag":74,"props":291,"children":292},{"__ignoreMap":119},[293,301,344,351,359],{"type":42,"tag":125,"props":294,"children":295},{"class":127,"line":128},[296],{"type":42,"tag":125,"props":297,"children":298},{"style":132},[299],{"type":48,"value":300},"# All line-level review comments on the PR\n",{"type":42,"tag":125,"props":302,"children":303},{"class":127,"line":138},[304,308,312,316,320,324,328,332,336,340],{"type":42,"tag":125,"props":305,"children":306},{"style":142},[307],{"type":48,"value":145},{"type":42,"tag":125,"props":309,"children":310},{"style":148},[311],{"type":48,"value":151},{"type":42,"tag":125,"props":313,"children":314},{"style":148},[315],{"type":48,"value":156},{"type":42,"tag":125,"props":317,"children":318},{"style":159},[319],{"type":48,"value":162},{"type":42,"tag":125,"props":321,"children":322},{"style":148},[323],{"type":48,"value":167},{"type":42,"tag":125,"props":325,"children":326},{"style":170},[327],{"type":48,"value":173},{"type":42,"tag":125,"props":329,"children":330},{"style":148},[331],{"type":48,"value":178},{"type":42,"tag":125,"props":333,"children":334},{"style":159},[335],{"type":48,"value":183},{"type":42,"tag":125,"props":337,"children":338},{"style":170},[339],{"type":48,"value":188},{"type":42,"tag":125,"props":341,"children":342},{"style":148},[343],{"type":48,"value":279},{"type":42,"tag":125,"props":345,"children":346},{"class":127,"line":196},[347],{"type":42,"tag":125,"props":348,"children":349},{"emptyLinePlaceholder":200},[350],{"type":48,"value":203},{"type":42,"tag":125,"props":352,"children":353},{"class":127,"line":206},[354],{"type":42,"tag":125,"props":355,"children":356},{"style":132},[357],{"type":48,"value":358},"# Filter by specific path\n",{"type":42,"tag":125,"props":360,"children":361},{"class":127,"line":29},[362,366,370,374,378,382,386,390,394,398,403,408,413,418,423],{"type":42,"tag":125,"props":363,"children":364},{"style":142},[365],{"type":48,"value":145},{"type":42,"tag":125,"props":367,"children":368},{"style":148},[369],{"type":48,"value":151},{"type":42,"tag":125,"props":371,"children":372},{"style":148},[373],{"type":48,"value":156},{"type":42,"tag":125,"props":375,"children":376},{"style":159},[377],{"type":48,"value":162},{"type":42,"tag":125,"props":379,"children":380},{"style":148},[381],{"type":48,"value":167},{"type":42,"tag":125,"props":383,"children":384},{"style":170},[385],{"type":48,"value":173},{"type":42,"tag":125,"props":387,"children":388},{"style":148},[389],{"type":48,"value":178},{"type":42,"tag":125,"props":391,"children":392},{"style":159},[393],{"type":48,"value":183},{"type":42,"tag":125,"props":395,"children":396},{"style":170},[397],{"type":48,"value":188},{"type":42,"tag":125,"props":399,"children":400},{"style":148},[401],{"type":48,"value":402},"\u002Fcomments",{"type":42,"tag":125,"props":404,"children":405},{"style":170},[406],{"type":48,"value":407}," |",{"type":42,"tag":125,"props":409,"children":410},{"style":142},[411],{"type":48,"value":412}," jq",{"type":42,"tag":125,"props":414,"children":415},{"style":170},[416],{"type":48,"value":417}," '",{"type":42,"tag":125,"props":419,"children":420},{"style":148},[421],{"type":48,"value":422},".[] | select(.path == \"src\u002Fexample.ts\")",{"type":42,"tag":125,"props":424,"children":425},{"style":170},[426],{"type":48,"value":427},"'\n",{"type":42,"tag":107,"props":429,"children":431},{"id":430},"understanding-review-comment-structure",[432],{"type":48,"value":433},"Understanding Review Comment Structure",{"type":42,"tag":51,"props":435,"children":436},{},[437],{"type":48,"value":438},"Key fields in review comments:",{"type":42,"tag":64,"props":440,"children":441},{},[442,453,471,482,493],{"type":42,"tag":68,"props":443,"children":444},{},[445,451],{"type":42,"tag":74,"props":446,"children":448},{"className":447},[],[449],{"type":48,"value":450},"path",{"type":48,"value":452},": File being commented on",{"type":42,"tag":68,"props":454,"children":455},{},[456,461,463,469],{"type":42,"tag":74,"props":457,"children":459},{"className":458},[],[460],{"type":48,"value":127},{"type":48,"value":462}," \u002F ",{"type":42,"tag":74,"props":464,"children":466},{"className":465},[],[467],{"type":48,"value":468},"original_line",{"type":48,"value":470},": Line number in the diff",{"type":42,"tag":68,"props":472,"children":473},{},[474,480],{"type":42,"tag":74,"props":475,"children":477},{"className":476},[],[478],{"type":48,"value":479},"body",{"type":48,"value":481},": The reviewer's comment text",{"type":42,"tag":68,"props":483,"children":484},{},[485,491],{"type":42,"tag":74,"props":486,"children":488},{"className":487},[],[489],{"type":48,"value":490},"diff_hunk",{"type":48,"value":492},": Code context around the comment",{"type":42,"tag":68,"props":494,"children":495},{},[496,502],{"type":42,"tag":74,"props":497,"children":499},{"className":498},[],[500],{"type":48,"value":501},"in_reply_to_id",{"type":48,"value":503},": If this is a reply to another comment",{"type":42,"tag":57,"props":505,"children":507},{"id":506},"responding-to-review-feedback",[508],{"type":48,"value":509},"Responding to Review Feedback",{"type":42,"tag":107,"props":511,"children":513},{"id":512},"workflow-for-addressing-feedback",[514],{"type":48,"value":515},"Workflow for Addressing Feedback",{"type":42,"tag":517,"props":518,"children":519},"ol",{},[520,531,541,551,561],{"type":42,"tag":68,"props":521,"children":522},{},[523,529],{"type":42,"tag":524,"props":525,"children":526},"strong",{},[527],{"type":48,"value":528},"Read the review comments",{"type":48,"value":530}," to understand what changes are requested",{"type":42,"tag":68,"props":532,"children":533},{},[534,539],{"type":42,"tag":524,"props":535,"children":536},{},[537],{"type":48,"value":538},"Read the relevant files",{"type":48,"value":540}," using the paths from the comments",{"type":42,"tag":68,"props":542,"children":543},{},[544,549],{"type":42,"tag":524,"props":545,"children":546},{},[547],{"type":48,"value":548},"Make the requested changes",{"type":48,"value":550}," using Edit tool",{"type":42,"tag":68,"props":552,"children":553},{},[554,559],{"type":42,"tag":524,"props":555,"children":556},{},[557],{"type":48,"value":558},"Commit and push",{"type":48,"value":560}," to update the PR",{"type":42,"tag":68,"props":562,"children":563},{},[564,569],{"type":42,"tag":524,"props":565,"children":566},{},[567],{"type":48,"value":568},"Update your tracking comment",{"type":48,"value":570}," to summarize what was addressed",{"type":42,"tag":107,"props":572,"children":574},{"id":573},"replying-to-review-comments",[575],{"type":48,"value":576},"Replying to Review Comments",{"type":42,"tag":114,"props":578,"children":580},{"className":116,"code":579,"language":118,"meta":119,"style":119},"# Reply to a specific review comment\ngh api repos\u002F$GITHUB_REPOSITORY\u002Fpulls\u002F\u003Cnumber>\u002Fcomments \\\n  -X POST \\\n  -f body=\"Fixed in the latest commit\" \\\n  -f in_reply_to=\u003Ccomment_id>\n",[581],{"type":42,"tag":74,"props":582,"children":583},{"__ignoreMap":119},[584,592,640,657,688],{"type":42,"tag":125,"props":585,"children":586},{"class":127,"line":128},[587],{"type":42,"tag":125,"props":588,"children":589},{"style":132},[590],{"type":48,"value":591},"# Reply to a specific review comment\n",{"type":42,"tag":125,"props":593,"children":594},{"class":127,"line":138},[595,599,603,607,611,615,619,623,627,631,635],{"type":42,"tag":125,"props":596,"children":597},{"style":142},[598],{"type":48,"value":145},{"type":42,"tag":125,"props":600,"children":601},{"style":148},[602],{"type":48,"value":151},{"type":42,"tag":125,"props":604,"children":605},{"style":148},[606],{"type":48,"value":156},{"type":42,"tag":125,"props":608,"children":609},{"style":159},[610],{"type":48,"value":162},{"type":42,"tag":125,"props":612,"children":613},{"style":148},[614],{"type":48,"value":167},{"type":42,"tag":125,"props":616,"children":617},{"style":170},[618],{"type":48,"value":173},{"type":42,"tag":125,"props":620,"children":621},{"style":148},[622],{"type":48,"value":178},{"type":42,"tag":125,"props":624,"children":625},{"style":159},[626],{"type":48,"value":183},{"type":42,"tag":125,"props":628,"children":629},{"style":170},[630],{"type":48,"value":188},{"type":42,"tag":125,"props":632,"children":633},{"style":148},[634],{"type":48,"value":402},{"type":42,"tag":125,"props":636,"children":637},{"style":159},[638],{"type":48,"value":639}," \\\n",{"type":42,"tag":125,"props":641,"children":642},{"class":127,"line":196},[643,648,653],{"type":42,"tag":125,"props":644,"children":645},{"style":148},[646],{"type":48,"value":647},"  -X",{"type":42,"tag":125,"props":649,"children":650},{"style":148},[651],{"type":48,"value":652}," POST",{"type":42,"tag":125,"props":654,"children":655},{"style":159},[656],{"type":48,"value":639},{"type":42,"tag":125,"props":658,"children":659},{"class":127,"line":206},[660,665,670,675,680,684],{"type":42,"tag":125,"props":661,"children":662},{"style":148},[663],{"type":48,"value":664},"  -f",{"type":42,"tag":125,"props":666,"children":667},{"style":148},[668],{"type":48,"value":669}," body=",{"type":42,"tag":125,"props":671,"children":672},{"style":170},[673],{"type":48,"value":674},"\"",{"type":42,"tag":125,"props":676,"children":677},{"style":148},[678],{"type":48,"value":679},"Fixed in the latest commit",{"type":42,"tag":125,"props":681,"children":682},{"style":170},[683],{"type":48,"value":674},{"type":42,"tag":125,"props":685,"children":686},{"style":159},[687],{"type":48,"value":639},{"type":42,"tag":125,"props":689,"children":690},{"class":127,"line":29},[691,695,700,704,709,713],{"type":42,"tag":125,"props":692,"children":693},{"style":148},[694],{"type":48,"value":664},{"type":42,"tag":125,"props":696,"children":697},{"style":148},[698],{"type":48,"value":699}," in_reply_to=",{"type":42,"tag":125,"props":701,"children":702},{"style":170},[703],{"type":48,"value":173},{"type":42,"tag":125,"props":705,"children":706},{"style":148},[707],{"type":48,"value":708},"comment_i",{"type":42,"tag":125,"props":710,"children":711},{"style":159},[712],{"type":48,"value":270},{"type":42,"tag":125,"props":714,"children":715},{"style":170},[716],{"type":48,"value":717},">\n",{"type":42,"tag":107,"props":719,"children":721},{"id":720},"marking-conversations-as-resolved",[722],{"type":48,"value":723},"Marking Conversations as Resolved",{"type":42,"tag":51,"props":725,"children":726},{},[727],{"type":48,"value":728},"After addressing feedback, the reviewer typically resolves the conversation. You can indicate you've addressed it by:",{"type":42,"tag":517,"props":730,"children":731},{},[732,737],{"type":42,"tag":68,"props":733,"children":734},{},[735],{"type":48,"value":736},"Replying to the comment explaining what you changed",{"type":42,"tag":68,"props":738,"children":739},{},[740],{"type":48,"value":741},"Updating your tracking comment with a summary",{"type":42,"tag":57,"props":743,"children":745},{"id":744},"providing-code-review-feedback",[746],{"type":48,"value":747},"Providing Code Review Feedback",{"type":42,"tag":51,"props":749,"children":750},{},[751],{"type":48,"value":752},"When asked to review code changes:",{"type":42,"tag":107,"props":754,"children":756},{"id":755},"quick-review-checklist",[757],{"type":48,"value":758},"Quick Review Checklist",{"type":42,"tag":64,"props":760,"children":761},{},[762,772,782,792,802],{"type":42,"tag":68,"props":763,"children":764},{},[765,770],{"type":42,"tag":524,"props":766,"children":767},{},[768],{"type":48,"value":769},"Correctness",{"type":48,"value":771},": Does the code do what it's supposed to?",{"type":42,"tag":68,"props":773,"children":774},{},[775,780],{"type":42,"tag":524,"props":776,"children":777},{},[778],{"type":48,"value":779},"Security",{"type":48,"value":781},": Are there any security vulnerabilities?",{"type":42,"tag":68,"props":783,"children":784},{},[785,790],{"type":42,"tag":524,"props":786,"children":787},{},[788],{"type":48,"value":789},"Performance",{"type":48,"value":791},": Are there obvious performance issues?",{"type":42,"tag":68,"props":793,"children":794},{},[795,800],{"type":42,"tag":524,"props":796,"children":797},{},[798],{"type":48,"value":799},"Readability",{"type":48,"value":801},": Is the code clear and maintainable?",{"type":42,"tag":68,"props":803,"children":804},{},[805,810],{"type":42,"tag":524,"props":806,"children":807},{},[808],{"type":48,"value":809},"Tests",{"type":48,"value":811},": Are changes tested appropriately?",{"type":42,"tag":107,"props":813,"children":815},{"id":814},"viewing-pr-changes",[816],{"type":48,"value":817},"Viewing PR Changes",{"type":42,"tag":114,"props":819,"children":821},{"className":116,"code":820,"language":118,"meta":119,"style":119},"# View the diff\ngh pr diff \u003Cnumber> --repo $GITHUB_REPOSITORY\n\n# View changed files list\ngh pr view \u003Cnumber> --repo $GITHUB_REPOSITORY --json files\n\n# Compare with base branch (use two dots for shallow clones in GitHub Actions)\ngit diff origin\u002F$BASE_BRANCH..HEAD\n",[822],{"type":42,"tag":74,"props":823,"children":824},{"__ignoreMap":119},[825,833,877,884,892,943,951,960],{"type":42,"tag":125,"props":826,"children":827},{"class":127,"line":128},[828],{"type":42,"tag":125,"props":829,"children":830},{"style":132},[831],{"type":48,"value":832},"# View the diff\n",{"type":42,"tag":125,"props":834,"children":835},{"class":127,"line":138},[836,840,845,850,855,859,863,867,872],{"type":42,"tag":125,"props":837,"children":838},{"style":142},[839],{"type":48,"value":145},{"type":42,"tag":125,"props":841,"children":842},{"style":148},[843],{"type":48,"value":844}," pr",{"type":42,"tag":125,"props":846,"children":847},{"style":148},[848],{"type":48,"value":849}," diff",{"type":42,"tag":125,"props":851,"children":852},{"style":170},[853],{"type":48,"value":854}," \u003C",{"type":42,"tag":125,"props":856,"children":857},{"style":148},[858],{"type":48,"value":178},{"type":42,"tag":125,"props":860,"children":861},{"style":159},[862],{"type":48,"value":183},{"type":42,"tag":125,"props":864,"children":865},{"style":170},[866],{"type":48,"value":188},{"type":42,"tag":125,"props":868,"children":869},{"style":148},[870],{"type":48,"value":871}," --repo",{"type":42,"tag":125,"props":873,"children":874},{"style":159},[875],{"type":48,"value":876}," $GITHUB_REPOSITORY\n",{"type":42,"tag":125,"props":878,"children":879},{"class":127,"line":196},[880],{"type":42,"tag":125,"props":881,"children":882},{"emptyLinePlaceholder":200},[883],{"type":48,"value":203},{"type":42,"tag":125,"props":885,"children":886},{"class":127,"line":206},[887],{"type":42,"tag":125,"props":888,"children":889},{"style":132},[890],{"type":48,"value":891},"# View changed files list\n",{"type":42,"tag":125,"props":893,"children":894},{"class":127,"line":29},[895,899,903,908,912,916,920,924,928,933,938],{"type":42,"tag":125,"props":896,"children":897},{"style":142},[898],{"type":48,"value":145},{"type":42,"tag":125,"props":900,"children":901},{"style":148},[902],{"type":48,"value":844},{"type":42,"tag":125,"props":904,"children":905},{"style":148},[906],{"type":48,"value":907}," view",{"type":42,"tag":125,"props":909,"children":910},{"style":170},[911],{"type":48,"value":854},{"type":42,"tag":125,"props":913,"children":914},{"style":148},[915],{"type":48,"value":178},{"type":42,"tag":125,"props":917,"children":918},{"style":159},[919],{"type":48,"value":183},{"type":42,"tag":125,"props":921,"children":922},{"style":170},[923],{"type":48,"value":188},{"type":42,"tag":125,"props":925,"children":926},{"style":148},[927],{"type":48,"value":871},{"type":42,"tag":125,"props":929,"children":930},{"style":159},[931],{"type":48,"value":932}," $GITHUB_REPOSITORY ",{"type":42,"tag":125,"props":934,"children":935},{"style":148},[936],{"type":48,"value":937},"--json",{"type":42,"tag":125,"props":939,"children":940},{"style":148},[941],{"type":48,"value":942}," files\n",{"type":42,"tag":125,"props":944,"children":946},{"class":127,"line":945},6,[947],{"type":42,"tag":125,"props":948,"children":949},{"emptyLinePlaceholder":200},[950],{"type":48,"value":203},{"type":42,"tag":125,"props":952,"children":954},{"class":127,"line":953},7,[955],{"type":42,"tag":125,"props":956,"children":957},{"style":132},[958],{"type":48,"value":959},"# Compare with base branch (use two dots for shallow clones in GitHub Actions)\n",{"type":42,"tag":125,"props":961,"children":963},{"class":127,"line":962},8,[964,969,973,978,983],{"type":42,"tag":125,"props":965,"children":966},{"style":142},[967],{"type":48,"value":968},"git",{"type":42,"tag":125,"props":970,"children":971},{"style":148},[972],{"type":48,"value":849},{"type":42,"tag":125,"props":974,"children":975},{"style":148},[976],{"type":48,"value":977}," origin\u002F",{"type":42,"tag":125,"props":979,"children":980},{"style":159},[981],{"type":48,"value":982},"$BASE_BRANCH",{"type":42,"tag":125,"props":984,"children":985},{"style":148},[986],{"type":48,"value":987},"..HEAD\n",{"type":42,"tag":107,"props":989,"children":991},{"id":990},"providing-feedback",[992],{"type":48,"value":993},"Providing Feedback",{"type":42,"tag":51,"props":995,"children":996},{},[997],{"type":48,"value":998},"Post your review feedback to your tracking comment. Structure it clearly:",{"type":42,"tag":64,"props":1000,"children":1001},{},[1002,1007,1012,1017],{"type":42,"tag":68,"props":1003,"children":1004},{},[1005],{"type":48,"value":1006},"Group feedback by file",{"type":42,"tag":68,"props":1008,"children":1009},{},[1010],{"type":48,"value":1011},"Reference specific line numbers",{"type":42,"tag":68,"props":1013,"children":1014},{},[1015],{"type":48,"value":1016},"Distinguish between required changes and suggestions",{"type":42,"tag":68,"props":1018,"children":1019},{},[1020],{"type":48,"value":1021},"Be constructive and specific",{"type":42,"tag":57,"props":1023,"children":1025},{"id":1024},"submitting-interactive-reviews",[1026],{"type":48,"value":1027},"Submitting Interactive Reviews",{"type":42,"tag":51,"props":1029,"children":1030},{},[1031,1033,1039],{"type":48,"value":1032},"Use ",{"type":42,"tag":74,"props":1034,"children":1036},{"className":1035},[],[1037],{"type":48,"value":1038},"gh pr review",{"type":48,"value":1040}," to submit formal GitHub reviews that appear in the PR's review UI.",{"type":42,"tag":107,"props":1042,"children":1044},{"id":1043},"approve-a-pr",[1045],{"type":48,"value":1046},"Approve a PR",{"type":42,"tag":114,"props":1048,"children":1050},{"className":116,"code":1049,"language":118,"meta":119,"style":119},"gh pr review \u003Cnumber> --approve --body \"LGTM! Changes look good.\"\n",[1051],{"type":42,"tag":74,"props":1052,"children":1053},{"__ignoreMap":119},[1054],{"type":42,"tag":125,"props":1055,"children":1056},{"class":127,"line":128},[1057,1061,1065,1070,1074,1078,1082,1086,1091,1096,1101,1106],{"type":42,"tag":125,"props":1058,"children":1059},{"style":142},[1060],{"type":48,"value":145},{"type":42,"tag":125,"props":1062,"children":1063},{"style":148},[1064],{"type":48,"value":844},{"type":42,"tag":125,"props":1066,"children":1067},{"style":148},[1068],{"type":48,"value":1069}," review",{"type":42,"tag":125,"props":1071,"children":1072},{"style":170},[1073],{"type":48,"value":854},{"type":42,"tag":125,"props":1075,"children":1076},{"style":148},[1077],{"type":48,"value":178},{"type":42,"tag":125,"props":1079,"children":1080},{"style":159},[1081],{"type":48,"value":183},{"type":42,"tag":125,"props":1083,"children":1084},{"style":170},[1085],{"type":48,"value":188},{"type":42,"tag":125,"props":1087,"children":1088},{"style":148},[1089],{"type":48,"value":1090}," --approve",{"type":42,"tag":125,"props":1092,"children":1093},{"style":148},[1094],{"type":48,"value":1095}," --body",{"type":42,"tag":125,"props":1097,"children":1098},{"style":170},[1099],{"type":48,"value":1100}," \"",{"type":42,"tag":125,"props":1102,"children":1103},{"style":148},[1104],{"type":48,"value":1105},"LGTM! Changes look good.",{"type":42,"tag":125,"props":1107,"children":1108},{"style":170},[1109],{"type":48,"value":1110},"\"\n",{"type":42,"tag":107,"props":1112,"children":1114},{"id":1113},"request-changes",[1115],{"type":48,"value":1116},"Request Changes",{"type":42,"tag":114,"props":1118,"children":1120},{"className":116,"code":1119,"language":118,"meta":119,"style":119},"gh pr review \u003Cnumber> --request-changes --body \"Please address the following issues...\"\n",[1121],{"type":42,"tag":74,"props":1122,"children":1123},{"__ignoreMap":119},[1124],{"type":42,"tag":125,"props":1125,"children":1126},{"class":127,"line":128},[1127,1131,1135,1139,1143,1147,1151,1155,1160,1164,1168,1173],{"type":42,"tag":125,"props":1128,"children":1129},{"style":142},[1130],{"type":48,"value":145},{"type":42,"tag":125,"props":1132,"children":1133},{"style":148},[1134],{"type":48,"value":844},{"type":42,"tag":125,"props":1136,"children":1137},{"style":148},[1138],{"type":48,"value":1069},{"type":42,"tag":125,"props":1140,"children":1141},{"style":170},[1142],{"type":48,"value":854},{"type":42,"tag":125,"props":1144,"children":1145},{"style":148},[1146],{"type":48,"value":178},{"type":42,"tag":125,"props":1148,"children":1149},{"style":159},[1150],{"type":48,"value":183},{"type":42,"tag":125,"props":1152,"children":1153},{"style":170},[1154],{"type":48,"value":188},{"type":42,"tag":125,"props":1156,"children":1157},{"style":148},[1158],{"type":48,"value":1159}," --request-changes",{"type":42,"tag":125,"props":1161,"children":1162},{"style":148},[1163],{"type":48,"value":1095},{"type":42,"tag":125,"props":1165,"children":1166},{"style":170},[1167],{"type":48,"value":1100},{"type":42,"tag":125,"props":1169,"children":1170},{"style":148},[1171],{"type":48,"value":1172},"Please address the following issues...",{"type":42,"tag":125,"props":1174,"children":1175},{"style":170},[1176],{"type":48,"value":1110},{"type":42,"tag":107,"props":1178,"children":1180},{"id":1179},"leave-a-comment-review-without-approvalrejection",[1181],{"type":48,"value":1182},"Leave a Comment Review (without approval\u002Frejection)",{"type":42,"tag":114,"props":1184,"children":1186},{"className":116,"code":1185,"language":118,"meta":119,"style":119},"gh pr review \u003Cnumber> --comment --body \"Some observations about the code...\"\n",[1187],{"type":42,"tag":74,"props":1188,"children":1189},{"__ignoreMap":119},[1190],{"type":42,"tag":125,"props":1191,"children":1192},{"class":127,"line":128},[1193,1197,1201,1205,1209,1213,1217,1221,1226,1230,1234,1239],{"type":42,"tag":125,"props":1194,"children":1195},{"style":142},[1196],{"type":48,"value":145},{"type":42,"tag":125,"props":1198,"children":1199},{"style":148},[1200],{"type":48,"value":844},{"type":42,"tag":125,"props":1202,"children":1203},{"style":148},[1204],{"type":48,"value":1069},{"type":42,"tag":125,"props":1206,"children":1207},{"style":170},[1208],{"type":48,"value":854},{"type":42,"tag":125,"props":1210,"children":1211},{"style":148},[1212],{"type":48,"value":178},{"type":42,"tag":125,"props":1214,"children":1215},{"style":159},[1216],{"type":48,"value":183},{"type":42,"tag":125,"props":1218,"children":1219},{"style":170},[1220],{"type":48,"value":188},{"type":42,"tag":125,"props":1222,"children":1223},{"style":148},[1224],{"type":48,"value":1225}," --comment",{"type":42,"tag":125,"props":1227,"children":1228},{"style":148},[1229],{"type":48,"value":1095},{"type":42,"tag":125,"props":1231,"children":1232},{"style":170},[1233],{"type":48,"value":1100},{"type":42,"tag":125,"props":1235,"children":1236},{"style":148},[1237],{"type":48,"value":1238},"Some observations about the code...",{"type":42,"tag":125,"props":1240,"children":1241},{"style":170},[1242],{"type":48,"value":1110},{"type":42,"tag":57,"props":1244,"children":1246},{"id":1245},"adding-line-level-comments",[1247],{"type":48,"value":1248},"Adding Line-Level Comments",{"type":42,"tag":51,"props":1250,"children":1251},{},[1252],{"type":48,"value":1253},"To add comments on specific lines of code (shown inline in GitHub's diff view):",{"type":42,"tag":107,"props":1255,"children":1257},{"id":1256},"create-a-review-with-line-comments",[1258],{"type":48,"value":1259},"Create a Review with Line Comments",{"type":42,"tag":114,"props":1261,"children":1263},{"className":116,"code":1262,"language":118,"meta":119,"style":119},"# First, get the latest commit SHA\nCOMMIT_SHA=$(gh pr view \u003Cnumber> --json headRefOid --jq '.headRefOid')\n\n# Create a review comment on a specific position in the diff\n# Note: position is the line number in the diff (not the file), starting from 1\ngh api repos\u002F$GITHUB_REPOSITORY\u002Fpulls\u002F\u003Cnumber>\u002Fcomments \\\n  -X POST \\\n  -f body=\"Consider using a more descriptive variable name here\" \\\n  -f commit_id=\"$COMMIT_SHA\" \\\n  -f path=\"src\u002Fexample.ts\" \\\n  -F position=10\n",[1264],{"type":42,"tag":74,"props":1265,"children":1266},{"__ignoreMap":119},[1267,1275,1350,1357,1365,1373,1420,1435,1463,1493,1523],{"type":42,"tag":125,"props":1268,"children":1269},{"class":127,"line":128},[1270],{"type":42,"tag":125,"props":1271,"children":1272},{"style":132},[1273],{"type":48,"value":1274},"# First, get the latest commit SHA\n",{"type":42,"tag":125,"props":1276,"children":1277},{"class":127,"line":138},[1278,1283,1288,1292,1296,1300,1304,1308,1312,1316,1321,1326,1331,1335,1340,1345],{"type":42,"tag":125,"props":1279,"children":1280},{"style":159},[1281],{"type":48,"value":1282},"COMMIT_SHA",{"type":42,"tag":125,"props":1284,"children":1285},{"style":170},[1286],{"type":48,"value":1287},"=$(",{"type":42,"tag":125,"props":1289,"children":1290},{"style":142},[1291],{"type":48,"value":145},{"type":42,"tag":125,"props":1293,"children":1294},{"style":148},[1295],{"type":48,"value":844},{"type":42,"tag":125,"props":1297,"children":1298},{"style":148},[1299],{"type":48,"value":907},{"type":42,"tag":125,"props":1301,"children":1302},{"style":170},[1303],{"type":48,"value":854},{"type":42,"tag":125,"props":1305,"children":1306},{"style":148},[1307],{"type":48,"value":178},{"type":42,"tag":125,"props":1309,"children":1310},{"style":159},[1311],{"type":48,"value":183},{"type":42,"tag":125,"props":1313,"children":1314},{"style":170},[1315],{"type":48,"value":188},{"type":42,"tag":125,"props":1317,"children":1318},{"style":148},[1319],{"type":48,"value":1320}," --json",{"type":42,"tag":125,"props":1322,"children":1323},{"style":148},[1324],{"type":48,"value":1325}," headRefOid",{"type":42,"tag":125,"props":1327,"children":1328},{"style":148},[1329],{"type":48,"value":1330}," --jq",{"type":42,"tag":125,"props":1332,"children":1333},{"style":170},[1334],{"type":48,"value":417},{"type":42,"tag":125,"props":1336,"children":1337},{"style":148},[1338],{"type":48,"value":1339},".headRefOid",{"type":42,"tag":125,"props":1341,"children":1342},{"style":170},[1343],{"type":48,"value":1344},"'",{"type":42,"tag":125,"props":1346,"children":1347},{"style":170},[1348],{"type":48,"value":1349},")\n",{"type":42,"tag":125,"props":1351,"children":1352},{"class":127,"line":196},[1353],{"type":42,"tag":125,"props":1354,"children":1355},{"emptyLinePlaceholder":200},[1356],{"type":48,"value":203},{"type":42,"tag":125,"props":1358,"children":1359},{"class":127,"line":206},[1360],{"type":42,"tag":125,"props":1361,"children":1362},{"style":132},[1363],{"type":48,"value":1364},"# Create a review comment on a specific position in the diff\n",{"type":42,"tag":125,"props":1366,"children":1367},{"class":127,"line":29},[1368],{"type":42,"tag":125,"props":1369,"children":1370},{"style":132},[1371],{"type":48,"value":1372},"# Note: position is the line number in the diff (not the file), starting from 1\n",{"type":42,"tag":125,"props":1374,"children":1375},{"class":127,"line":945},[1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416],{"type":42,"tag":125,"props":1377,"children":1378},{"style":142},[1379],{"type":48,"value":145},{"type":42,"tag":125,"props":1381,"children":1382},{"style":148},[1383],{"type":48,"value":151},{"type":42,"tag":125,"props":1385,"children":1386},{"style":148},[1387],{"type":48,"value":156},{"type":42,"tag":125,"props":1389,"children":1390},{"style":159},[1391],{"type":48,"value":162},{"type":42,"tag":125,"props":1393,"children":1394},{"style":148},[1395],{"type":48,"value":167},{"type":42,"tag":125,"props":1397,"children":1398},{"style":170},[1399],{"type":48,"value":173},{"type":42,"tag":125,"props":1401,"children":1402},{"style":148},[1403],{"type":48,"value":178},{"type":42,"tag":125,"props":1405,"children":1406},{"style":159},[1407],{"type":48,"value":183},{"type":42,"tag":125,"props":1409,"children":1410},{"style":170},[1411],{"type":48,"value":188},{"type":42,"tag":125,"props":1413,"children":1414},{"style":148},[1415],{"type":48,"value":402},{"type":42,"tag":125,"props":1417,"children":1418},{"style":159},[1419],{"type":48,"value":639},{"type":42,"tag":125,"props":1421,"children":1422},{"class":127,"line":953},[1423,1427,1431],{"type":42,"tag":125,"props":1424,"children":1425},{"style":148},[1426],{"type":48,"value":647},{"type":42,"tag":125,"props":1428,"children":1429},{"style":148},[1430],{"type":48,"value":652},{"type":42,"tag":125,"props":1432,"children":1433},{"style":159},[1434],{"type":48,"value":639},{"type":42,"tag":125,"props":1436,"children":1437},{"class":127,"line":962},[1438,1442,1446,1450,1455,1459],{"type":42,"tag":125,"props":1439,"children":1440},{"style":148},[1441],{"type":48,"value":664},{"type":42,"tag":125,"props":1443,"children":1444},{"style":148},[1445],{"type":48,"value":669},{"type":42,"tag":125,"props":1447,"children":1448},{"style":170},[1449],{"type":48,"value":674},{"type":42,"tag":125,"props":1451,"children":1452},{"style":148},[1453],{"type":48,"value":1454},"Consider using a more descriptive variable name here",{"type":42,"tag":125,"props":1456,"children":1457},{"style":170},[1458],{"type":48,"value":674},{"type":42,"tag":125,"props":1460,"children":1461},{"style":159},[1462],{"type":48,"value":639},{"type":42,"tag":125,"props":1464,"children":1466},{"class":127,"line":1465},9,[1467,1471,1476,1480,1485,1489],{"type":42,"tag":125,"props":1468,"children":1469},{"style":148},[1470],{"type":48,"value":664},{"type":42,"tag":125,"props":1472,"children":1473},{"style":148},[1474],{"type":48,"value":1475}," commit_id=",{"type":42,"tag":125,"props":1477,"children":1478},{"style":170},[1479],{"type":48,"value":674},{"type":42,"tag":125,"props":1481,"children":1482},{"style":159},[1483],{"type":48,"value":1484},"$COMMIT_SHA",{"type":42,"tag":125,"props":1486,"children":1487},{"style":170},[1488],{"type":48,"value":674},{"type":42,"tag":125,"props":1490,"children":1491},{"style":159},[1492],{"type":48,"value":639},{"type":42,"tag":125,"props":1494,"children":1496},{"class":127,"line":1495},10,[1497,1501,1506,1510,1515,1519],{"type":42,"tag":125,"props":1498,"children":1499},{"style":148},[1500],{"type":48,"value":664},{"type":42,"tag":125,"props":1502,"children":1503},{"style":148},[1504],{"type":48,"value":1505}," path=",{"type":42,"tag":125,"props":1507,"children":1508},{"style":170},[1509],{"type":48,"value":674},{"type":42,"tag":125,"props":1511,"children":1512},{"style":148},[1513],{"type":48,"value":1514},"src\u002Fexample.ts",{"type":42,"tag":125,"props":1516,"children":1517},{"style":170},[1518],{"type":48,"value":674},{"type":42,"tag":125,"props":1520,"children":1521},{"style":159},[1522],{"type":48,"value":639},{"type":42,"tag":125,"props":1524,"children":1526},{"class":127,"line":1525},11,[1527,1532,1537],{"type":42,"tag":125,"props":1528,"children":1529},{"style":148},[1530],{"type":48,"value":1531},"  -F",{"type":42,"tag":125,"props":1533,"children":1534},{"style":148},[1535],{"type":48,"value":1536}," position=",{"type":42,"tag":125,"props":1538,"children":1540},{"style":1539},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1541],{"type":48,"value":1542},"10\n",{"type":42,"tag":107,"props":1544,"children":1546},{"id":1545},"key-fields-for-line-comments",[1547],{"type":48,"value":1548},"Key Fields for Line Comments",{"type":42,"tag":64,"props":1550,"children":1551},{},[1552,1563,1573,1584],{"type":42,"tag":68,"props":1553,"children":1554},{},[1555,1561],{"type":42,"tag":74,"props":1556,"children":1558},{"className":1557},[],[1559],{"type":48,"value":1560},"commit_id",{"type":48,"value":1562},": The SHA of the commit to comment on (use latest)",{"type":42,"tag":68,"props":1564,"children":1565},{},[1566,1571],{"type":42,"tag":74,"props":1567,"children":1569},{"className":1568},[],[1570],{"type":48,"value":450},{"type":48,"value":1572},": File path relative to repo root",{"type":42,"tag":68,"props":1574,"children":1575},{},[1576,1582],{"type":42,"tag":74,"props":1577,"children":1579},{"className":1578},[],[1580],{"type":48,"value":1581},"position",{"type":48,"value":1583},": Position in the diff (line number in the diff hunk, starting at 1)",{"type":42,"tag":68,"props":1585,"children":1586},{},[1587,1592],{"type":42,"tag":74,"props":1588,"children":1590},{"className":1589},[],[1591],{"type":48,"value":479},{"type":48,"value":1593},": Your comment text",{"type":42,"tag":51,"props":1595,"children":1596},{},[1597,1602,1604,1609],{"type":42,"tag":524,"props":1598,"children":1599},{},[1600],{"type":48,"value":1601},"Note:",{"type":48,"value":1603}," The ",{"type":42,"tag":74,"props":1605,"children":1607},{"className":1606},[],[1608],{"type":48,"value":1581},{"type":48,"value":1610}," is the line number within the diff, not the line number in the file. Count lines from the start of the diff hunk.",{"type":42,"tag":57,"props":1612,"children":1614},{"id":1613},"iterating-on-changes",[1615],{"type":48,"value":1616},"Iterating on Changes",{"type":42,"tag":51,"props":1618,"children":1619},{},[1620],{"type":48,"value":1621},"When you need to make additional changes after initial feedback:",{"type":42,"tag":114,"props":1623,"children":1625},{"className":116,"code":1624,"language":118,"meta":119,"style":119},"# Ensure you're on the PR branch\ngh pr checkout \u003Cnumber>\n\n# Make changes, then commit\ngit add \u003Cfiles>\ngit commit -m \"fix: address review feedback\"\n\n# Push to update the PR\ngit push origin HEAD\n",[1626],{"type":42,"tag":74,"props":1627,"children":1628},{"__ignoreMap":119},[1629,1637,1669,1676,1684,1714,1744,1751,1759],{"type":42,"tag":125,"props":1630,"children":1631},{"class":127,"line":128},[1632],{"type":42,"tag":125,"props":1633,"children":1634},{"style":132},[1635],{"type":48,"value":1636},"# Ensure you're on the PR branch\n",{"type":42,"tag":125,"props":1638,"children":1639},{"class":127,"line":138},[1640,1644,1648,1653,1657,1661,1665],{"type":42,"tag":125,"props":1641,"children":1642},{"style":142},[1643],{"type":48,"value":145},{"type":42,"tag":125,"props":1645,"children":1646},{"style":148},[1647],{"type":48,"value":844},{"type":42,"tag":125,"props":1649,"children":1650},{"style":148},[1651],{"type":48,"value":1652}," checkout",{"type":42,"tag":125,"props":1654,"children":1655},{"style":170},[1656],{"type":48,"value":854},{"type":42,"tag":125,"props":1658,"children":1659},{"style":148},[1660],{"type":48,"value":178},{"type":42,"tag":125,"props":1662,"children":1663},{"style":159},[1664],{"type":48,"value":183},{"type":42,"tag":125,"props":1666,"children":1667},{"style":170},[1668],{"type":48,"value":717},{"type":42,"tag":125,"props":1670,"children":1671},{"class":127,"line":196},[1672],{"type":42,"tag":125,"props":1673,"children":1674},{"emptyLinePlaceholder":200},[1675],{"type":48,"value":203},{"type":42,"tag":125,"props":1677,"children":1678},{"class":127,"line":206},[1679],{"type":42,"tag":125,"props":1680,"children":1681},{"style":132},[1682],{"type":48,"value":1683},"# Make changes, then commit\n",{"type":42,"tag":125,"props":1685,"children":1686},{"class":127,"line":29},[1687,1691,1696,1700,1705,1710],{"type":42,"tag":125,"props":1688,"children":1689},{"style":142},[1690],{"type":48,"value":968},{"type":42,"tag":125,"props":1692,"children":1693},{"style":148},[1694],{"type":48,"value":1695}," add",{"type":42,"tag":125,"props":1697,"children":1698},{"style":170},[1699],{"type":48,"value":854},{"type":42,"tag":125,"props":1701,"children":1702},{"style":148},[1703],{"type":48,"value":1704},"file",{"type":42,"tag":125,"props":1706,"children":1707},{"style":159},[1708],{"type":48,"value":1709},"s",{"type":42,"tag":125,"props":1711,"children":1712},{"style":170},[1713],{"type":48,"value":717},{"type":42,"tag":125,"props":1715,"children":1716},{"class":127,"line":945},[1717,1721,1726,1731,1735,1740],{"type":42,"tag":125,"props":1718,"children":1719},{"style":142},[1720],{"type":48,"value":968},{"type":42,"tag":125,"props":1722,"children":1723},{"style":148},[1724],{"type":48,"value":1725}," commit",{"type":42,"tag":125,"props":1727,"children":1728},{"style":148},[1729],{"type":48,"value":1730}," -m",{"type":42,"tag":125,"props":1732,"children":1733},{"style":170},[1734],{"type":48,"value":1100},{"type":42,"tag":125,"props":1736,"children":1737},{"style":148},[1738],{"type":48,"value":1739},"fix: address review feedback",{"type":42,"tag":125,"props":1741,"children":1742},{"style":170},[1743],{"type":48,"value":1110},{"type":42,"tag":125,"props":1745,"children":1746},{"class":127,"line":953},[1747],{"type":42,"tag":125,"props":1748,"children":1749},{"emptyLinePlaceholder":200},[1750],{"type":48,"value":203},{"type":42,"tag":125,"props":1752,"children":1753},{"class":127,"line":962},[1754],{"type":42,"tag":125,"props":1755,"children":1756},{"style":132},[1757],{"type":48,"value":1758},"# Push to update the PR\n",{"type":42,"tag":125,"props":1760,"children":1761},{"class":127,"line":1465},[1762,1766,1771,1776],{"type":42,"tag":125,"props":1763,"children":1764},{"style":142},[1765],{"type":48,"value":968},{"type":42,"tag":125,"props":1767,"children":1768},{"style":148},[1769],{"type":48,"value":1770}," push",{"type":42,"tag":125,"props":1772,"children":1773},{"style":148},[1774],{"type":48,"value":1775}," origin",{"type":42,"tag":125,"props":1777,"children":1778},{"style":148},[1779],{"type":48,"value":1780}," HEAD\n",{"type":42,"tag":57,"props":1782,"children":1784},{"id":1783},"important-notes",[1785],{"type":48,"value":1786},"Important Notes",{"type":42,"tag":517,"props":1788,"children":1789},{},[1790,1800,1810,1820],{"type":42,"tag":68,"props":1791,"children":1792},{},[1793,1798],{"type":42,"tag":524,"props":1794,"children":1795},{},[1796],{"type":48,"value":1797},"Read before responding",{"type":48,"value":1799}," - Always read the full review context before making changes",{"type":42,"tag":68,"props":1801,"children":1802},{},[1803,1808],{"type":42,"tag":524,"props":1804,"children":1805},{},[1806],{"type":48,"value":1807},"Address all comments",{"type":48,"value":1809}," - Don't leave feedback unaddressed",{"type":42,"tag":68,"props":1811,"children":1812},{},[1813,1818],{"type":42,"tag":524,"props":1814,"children":1815},{},[1816],{"type":48,"value":1817},"Communicate clearly",{"type":48,"value":1819}," - Update your tracking comment to show what you've addressed",{"type":42,"tag":68,"props":1821,"children":1822},{},[1823,1828],{"type":42,"tag":524,"props":1824,"children":1825},{},[1826],{"type":48,"value":1827},"Test your changes",{"type":48,"value":1829}," - Run tests after making review-requested changes",{"type":42,"tag":1831,"props":1832,"children":1833},"style",{},[1834],{"type":48,"value":1835},"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":1837,"total":138},[1838,1845],{"slug":4,"name":4,"fn":5,"description":6,"org":1839,"tags":1840,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1841,1842,1843,1844],{"name":18,"slug":4,"type":16},{"name":20,"slug":21,"type":16},{"name":14,"slug":15,"type":16},{"name":23,"slug":24,"type":16},{"slug":1846,"name":1846,"fn":1847,"description":1848,"org":1849,"tags":1850,"stars":25,"repoUrl":26,"updatedAt":1858},"github-action","interact with GitHub Actions workflows","Skill for GitHub Actions CI environment. Use when running inside a GitHub Actions workflow to update tracking comments, commit code, and interact with GitHub.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1851,1854,1855],{"name":1852,"slug":1853,"type":16},"CI\u002FCD","ci-cd",{"name":20,"slug":21,"type":16},{"name":1856,"slug":1857,"type":16},"GitHub Actions","github-actions","2026-07-13T06:26:13.20349",{"items":1860,"total":2017},[1861,1877,1892,1904,1916,1930,1942,1951,1963,1979,1990,2002],{"slug":1862,"name":1862,"fn":1863,"description":1864,"org":1865,"tags":1866,"stars":1874,"repoUrl":1875,"updatedAt":1876},"acquiring-skills","discover and install agent skills","Discover and install skills from Hermes, ClawHub, GitHub, and other registries. Load this skill whenever a user asks for a capability you don't already have — image generation, social media, email, calendar, finance, DevOps, search, browser automation, etc.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1867,1870,1873],{"name":1868,"slug":1869,"type":16},"Agents","agents",{"name":1871,"slug":1872,"type":16},"Automation","automation",{"name":14,"slug":15,"type":16},2831,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fletta-code","2026-07-13T06:22:58.45767",{"slug":1878,"name":1879,"fn":1880,"description":1881,"org":1882,"tags":1883,"stars":1874,"repoUrl":1875,"updatedAt":1891},"context-doctor","Context Doctor","repair system prompt and memory degradation","Identify and repair degradation in system prompt, external memory, and skills preventing you from following instructions or remembering information as well as you should.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1884,1885,1888],{"name":1868,"slug":1869,"type":16},{"name":1886,"slug":1887,"type":16},"AI Context","ai-context",{"name":1889,"slug":1890,"type":16},"Debugging","debugging","2026-07-13T06:22:50.151002",{"slug":1893,"name":1893,"fn":1894,"description":1895,"org":1896,"tags":1897,"stars":1874,"repoUrl":1875,"updatedAt":1903},"converting-mcps-to-skills","connect MCP servers to create skills","Connect to MCP (Model Context Protocol) servers and create skills for repeated use. Load when a user wants to use an MCP server, connect to external tools via MCP, or when they mention MCP, model context protocol, or specific MCP servers.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1898,1899,1900],{"name":1868,"slug":1869,"type":16},{"name":1871,"slug":1872,"type":16},{"name":1901,"slug":1902,"type":16},"MCP","mcp","2026-07-13T06:23:37.646079",{"slug":1905,"name":1905,"fn":1906,"description":1907,"org":1908,"tags":1909,"stars":1874,"repoUrl":1875,"updatedAt":1915},"creating-mods","create and edit Letta Code mods","Creates and edits trusted local Letta Code mods, including tools, slash commands, local-only model providers, lifecycle\u002Fturn events, scoped conversation helpers, panels, and capability-gated behavior. Use when asked to make a mod, add an agent-callable tool, add a slash command, add a local provider\u002Fmodel adapter, transform turns, react to app events, or add lightweight mod UI outside the dedicated \u002Fstatusline flow.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1910,1911,1912],{"name":1868,"slug":1869,"type":16},{"name":1871,"slug":1872,"type":16},{"name":1913,"slug":1914,"type":16},"Coding","coding","2026-07-23T05:42:38.133565",{"slug":1917,"name":1917,"fn":1918,"description":1919,"org":1920,"tags":1921,"stars":1874,"repoUrl":1875,"updatedAt":1929},"creating-skills","create and update agent skills","Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Letta Code's capabilities with specialized knowledge, workflows, or tool integrations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1922,1923,1926],{"name":1868,"slug":1869,"type":16},{"name":1924,"slug":1925,"type":16},"Documentation","documentation",{"name":1927,"slug":1928,"type":16},"Plugin Development","plugin-development","2026-07-13T06:22:56.998659",{"slug":1931,"name":1931,"fn":1932,"description":1933,"org":1934,"tags":1935,"stars":1874,"repoUrl":1875,"updatedAt":1941},"customizing-commands","create and manage Letta slash commands","Creates, edits, and enables Letta Code mod-provided slash commands. Use when the user asks to add a custom \u002Fcommand, slash command, command shortcut, scoped conversation-backed command, or command-driven panel behavior.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1936,1937,1938],{"name":1868,"slug":1869,"type":16},{"name":1871,"slug":1872,"type":16},{"name":1939,"slug":1940,"type":16},"CLI","cli","2026-07-13T06:23:18.266798",{"slug":1943,"name":1943,"fn":1944,"description":1945,"org":1946,"tags":1947,"stars":1874,"repoUrl":1875,"updatedAt":1950},"customizing-statusline","customize Letta Code statusline mods","Creates, edits, and migrates Letta Code statusline mods. Use when handling the \u002Fstatusline command or continuing work started by \u002Fstatusline.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1948,1949],{"name":1939,"slug":1940,"type":16},{"name":20,"slug":21,"type":16},"2026-07-13T06:23:27.465985",{"slug":1952,"name":1952,"fn":1953,"description":1954,"org":1955,"tags":1956,"stars":1874,"repoUrl":1875,"updatedAt":1962},"dispatching-coding-agents","dispatch stateless coding agents","Dispatch stateless coding agents (Claude Code or Codex) via Bash. Use when you're stuck, need a second opinion, or need parallel research on a hard problem. They have no memory — you must provide all context.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1957,1958,1959],{"name":1868,"slug":1869,"type":16},{"name":1913,"slug":1914,"type":16},{"name":1960,"slug":1961,"type":16},"Multi-Agent","multi-agent","2026-07-26T05:46:56.388845",{"slug":1964,"name":1964,"fn":1965,"description":1966,"org":1967,"tags":1968,"stars":1874,"repoUrl":1875,"updatedAt":1978},"editing-letta-code-desktop-preferences","edit Letta Code Desktop preferences","Edits Letta Code Desktop (LCD) preferences by safely reading and updating ~\u002F.letta\u002Fdesktop_preferences.json. Use only when the user asks to change current Desktop\u002FLCD settings such as theme, default working directory, remote access preference, or remote environment name via the preferences JSON.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1969,1972,1975],{"name":1970,"slug":1971,"type":16},"Configuration","configuration",{"name":1973,"slug":1974,"type":16},"Desktop","desktop",{"name":1976,"slug":1977,"type":16},"Themes","themes","2026-07-13T06:23:41.407811",{"slug":1980,"name":1980,"fn":1981,"description":1982,"org":1983,"tags":1984,"stars":1874,"repoUrl":1875,"updatedAt":1989},"finding-agents","locate and manage agents on server","Find other agents on the same server. Use when the user asks about other agents, wants to migrate memory from another agent, or needs to find an agent by name or tags.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1985,1986],{"name":1868,"slug":1869,"type":16},{"name":1987,"slug":1988,"type":16},"Management","management","2026-07-16T06:02:17.297841",{"slug":1991,"name":1991,"fn":1992,"description":1993,"org":1994,"tags":1995,"stars":1874,"repoUrl":1875,"updatedAt":2001},"generating-mod-envs","generate Letta mod learning environments","Generates and reviews mod learning env JSON files for Letta Code local mods. Use when asked to teach, learn, or optimize a mod behavior; create, draft, validate, improve, or explain envs for `\u002Fmods learn --env`; or design evaluation scenarios, memory fixtures, requiredResultMarkers, requiredTraceMarkers, negative controls, and candidate diversity hints.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1996,1997,2000],{"name":1868,"slug":1869,"type":16},{"name":1998,"slug":1999,"type":16},"AI Infrastructure","ai-infrastructure",{"name":1970,"slug":1971,"type":16},"2026-07-13T06:23:08.838181",{"slug":2003,"name":2003,"fn":2004,"description":2005,"org":2006,"tags":2007,"stars":1874,"repoUrl":1875,"updatedAt":2016},"image-generation","generate images from text prompts","Generate images from text prompts (and optionally edit\u002Fremix input images). Use when the user asks to create, generate, draw, render, or edit an image, illustration, logo, icon, diagram, or photo.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2008,2011,2014],{"name":2009,"slug":2010,"type":16},"Creative","creative",{"name":2012,"slug":2013,"type":16},"Graphics","graphics",{"name":2015,"slug":2003,"type":16},"Image Generation","2026-07-13T06:23:06.189403",69]