[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-letta-github-action":3,"mdc--rrgbed-key":34,"related-repo-letta-github-action":2031,"related-org-letta-github-action":2055},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":32,"mdContent":33},"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},"letta","Letta","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fletta.png","letta-ai",[13,17,20],{"name":14,"slug":15,"type":16},"GitHub Actions","github-actions","tag",{"name":18,"slug":19,"type":16},"Engineering","engineering",{"name":21,"slug":22,"type":16},"CI\u002FCD","ci-cd",14,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fletta-code-action","2026-07-13T06:26:13.20349",null,5,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":31},[],"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\u002Fgithub-action","---\nname: github-action\ndescription: Skill for GitHub Actions CI environment. Use when running inside a GitHub Actions workflow to update tracking comments, commit code, and interact with GitHub.\n---\n\n# GitHub Action Skill\n\nYou are running inside a GitHub Actions workflow, triggered by a user mentioning @letta-code in a GitHub issue or pull request comment.\n\n## Environment Variables\n\n| Variable            | Description                                             |\n| ------------------- | ------------------------------------------------------- |\n| `GITHUB_TOKEN`      | Auth token for GitHub API (pre-configured for `gh` CLI) |\n| `GITHUB_REPOSITORY` | Owner\u002Frepo (e.g., \"letta-ai\u002Fletta-code\")                |\n| `LETTA_COMMENT_ID`  | ID of your tracking comment to update                   |\n| `BRANCH_NAME`       | Branch to push commits to                               |\n| `BASE_BRANCH`       | Base branch for PRs (e.g., \"main\")                      |\n| `GITHUB_RUN_ID`     | Current workflow run ID                                 |\n| `GITHUB_SERVER_URL` | GitHub server URL (usually \"https:\u002F\u002Fgithub.com\")        |\n\n## Updating Your Tracking Comment\n\nYou have a tracking comment that shows your progress. **Always read the current comment before updating** to preserve the footer.\n\n### How to Update\n\n1. **Read the current comment first:**\n\n```bash\ngh api \u002Frepos\u002F$GITHUB_REPOSITORY\u002Fissues\u002Fcomments\u002F$LETTA_COMMENT_ID\n```\n\n2. **Note the footer** at the bottom of the comment body - it looks like:\n\n```\n---\n🤖 **Agent:** [`agent-xxx`](https:\u002F\u002Fapp.letta.com\u002Fagents\u002Fagent-xxx) • **Model:** opus\n[View in ADE](...) • [View job run](...)\n```\n\n3. **Update with your new content + the same footer:**\n\n```bash\ngh api \u002Frepos\u002F$GITHUB_REPOSITORY\u002Fissues\u002Fcomments\u002F$LETTA_COMMENT_ID \\\n  -X PATCH \\\n  -f body=\"Your new content here\n\n---\n🤖 **Agent:** ... (copy the footer from step 1)\"\n```\n\n**Important:** Always preserve the footer in every update so users can access the ADE and job run links while you're working.\n\n## Git Operations\n\nGit is pre-configured with authentication. Use standard commands:\n\n```bash\n# Stage changes\ngit add \u003Cfiles>\n\n# Commit with descriptive message\ngit commit -m \"feat: description of changes\"\n\n# Push to the working branch\ngit push origin $BRANCH_NAME\n```\n\n### Commit Message Convention\n\nFollow conventional commits:\n\n- `feat:` - New feature\n- `fix:` - Bug fix\n- `docs:` - Documentation changes\n- `refactor:` - Code refactoring\n- `test:` - Adding tests\n- `chore:` - Maintenance tasks\n\n## Creating Pull Requests\n\nIf working on an issue (not already a PR), create a PR after pushing:\n\n```bash\ngh pr create \\\n  --title \"feat: description\" \\\n  --body \"Fixes #\u003Cissue_number>\n\n## Summary\n- What was changed\n\n## Test Plan\n- How to verify\n\n---\nGenerated with [Letta Code](https:\u002F\u002Fletta.com)\" \\\n  --base $BASE_BRANCH \\\n  --head $BRANCH_NAME\n```\n\n**IMPORTANT:** Always include a closing keyword (`Fixes #N`, `Closes #N`, or `Resolves #N`) in the PR body when the PR addresses an issue. This:\n\n1. Links the PR to the issue in GitHub\n2. Automatically closes the issue when the PR is merged\n3. **Enables conversation continuity** - the agent will have access to the full context from the issue discussion when working on the PR\n\n## Checking CI Status\n\nTo check CI status on the current PR:\n\n```bash\ngh pr checks --repo $GITHUB_REPOSITORY\n```\n\n## gh CLI Cheatsheet\n\nThe `gh` CLI is pre-authenticated and available. Here are the most common commands you'll need:\n\n### Working with Pull Requests\n\n```bash\n# List open PRs\ngh pr list --repo $GITHUB_REPOSITORY\n\n# View PR details\ngh pr view \u003Cnumber> --repo $GITHUB_REPOSITORY\n\n# Checkout an existing PR's branch (to push updates to it)\ngh pr checkout \u003Cnumber>\n\n# Check CI status on a PR\ngh pr checks \u003Cnumber> --repo $GITHUB_REPOSITORY\n\n# Add a comment to a PR\ngh pr comment \u003Cnumber> --body \"Your comment\" --repo $GITHUB_REPOSITORY\n\n# View PR diff\ngh pr diff \u003Cnumber> --repo $GITHUB_REPOSITORY\n```\n\n### Working with Issues\n\n```bash\n# List open issues\ngh issue list --repo $GITHUB_REPOSITORY\n\n# View issue details\ngh issue view \u003Cnumber> --repo $GITHUB_REPOSITORY\n\n# Add a comment to an issue\ngh issue comment \u003Cnumber> --body \"Your comment\" --repo $GITHUB_REPOSITORY\n```\n\n### GitHub API (for advanced operations)\n\n```bash\n# Get PR review comments\ngh api repos\u002F$GITHUB_REPOSITORY\u002Fpulls\u002F\u003Cnumber>\u002Fcomments\n\n# Get PR reviews\ngh api repos\u002F$GITHUB_REPOSITORY\u002Fpulls\u002F\u003Cnumber>\u002Freviews\n\n# Get issue comments\ngh api repos\u002F$GITHUB_REPOSITORY\u002Fissues\u002F\u003Cnumber>\u002Fcomments\n```\n\n### Pushing to an Existing PR\n\nIf you need to update an existing PR (not the one you're currently on):\n\n```bash\n# Checkout the PR's branch\ngh pr checkout \u003Cnumber>\n\n# Make your changes, then commit and push\ngit add \u003Cfiles>\ngit commit -m \"fix: description\"\ngit push origin HEAD\n```\n\n### Discovering More Commands\n\nThe `gh` CLI has many more capabilities. Use `--help` to explore:\n\n```bash\ngh --help              # List all commands\ngh pr --help           # PR-specific commands\ngh issue --help        # Issue-specific commands\ngh api --help          # API request help\n```\n\n## Important Notes\n\n1. **Always update the comment** before long operations so users know you're working\n2. **Never force push** - only regular pushes are allowed\n3. **Check for existing changes** before committing with `git status`\n4. **Pull before push** if the branch may have been updated: `git pull origin $BRANCH_NAME`\n5. **Use `gh --help`** to discover additional gh CLI capabilities beyond this cheatsheet\n",{"data":35,"body":36},{"name":4,"description":6},{"type":37,"children":38},"root",[39,48,54,61,227,233,246,253,266,315,329,339,351,460,470,476,481,615,621,626,696,702,707,883,917,940,946,951,984,990,1002,1008,1337,1343,1506,1512,1692,1698,1703,1839,1845,1864,1948,1954,2025],{"type":40,"tag":41,"props":42,"children":44},"element","h1",{"id":43},"github-action-skill",[45],{"type":46,"value":47},"text","GitHub Action Skill",{"type":40,"tag":49,"props":50,"children":51},"p",{},[52],{"type":46,"value":53},"You are running inside a GitHub Actions workflow, triggered by a user mentioning @letta-code in a GitHub issue or pull request comment.",{"type":40,"tag":55,"props":56,"children":58},"h2",{"id":57},"environment-variables",[59],{"type":46,"value":60},"Environment Variables",{"type":40,"tag":62,"props":63,"children":64},"table",{},[65,84],{"type":40,"tag":66,"props":67,"children":68},"thead",{},[69],{"type":40,"tag":70,"props":71,"children":72},"tr",{},[73,79],{"type":40,"tag":74,"props":75,"children":76},"th",{},[77],{"type":46,"value":78},"Variable",{"type":40,"tag":74,"props":80,"children":81},{},[82],{"type":46,"value":83},"Description",{"type":40,"tag":85,"props":86,"children":87},"tbody",{},[88,115,132,149,166,183,200],{"type":40,"tag":70,"props":89,"children":90},{},[91,102],{"type":40,"tag":92,"props":93,"children":94},"td",{},[95],{"type":40,"tag":96,"props":97,"children":99},"code",{"className":98},[],[100],{"type":46,"value":101},"GITHUB_TOKEN",{"type":40,"tag":92,"props":103,"children":104},{},[105,107,113],{"type":46,"value":106},"Auth token for GitHub API (pre-configured for ",{"type":40,"tag":96,"props":108,"children":110},{"className":109},[],[111],{"type":46,"value":112},"gh",{"type":46,"value":114}," CLI)",{"type":40,"tag":70,"props":116,"children":117},{},[118,127],{"type":40,"tag":92,"props":119,"children":120},{},[121],{"type":40,"tag":96,"props":122,"children":124},{"className":123},[],[125],{"type":46,"value":126},"GITHUB_REPOSITORY",{"type":40,"tag":92,"props":128,"children":129},{},[130],{"type":46,"value":131},"Owner\u002Frepo (e.g., \"letta-ai\u002Fletta-code\")",{"type":40,"tag":70,"props":133,"children":134},{},[135,144],{"type":40,"tag":92,"props":136,"children":137},{},[138],{"type":40,"tag":96,"props":139,"children":141},{"className":140},[],[142],{"type":46,"value":143},"LETTA_COMMENT_ID",{"type":40,"tag":92,"props":145,"children":146},{},[147],{"type":46,"value":148},"ID of your tracking comment to update",{"type":40,"tag":70,"props":150,"children":151},{},[152,161],{"type":40,"tag":92,"props":153,"children":154},{},[155],{"type":40,"tag":96,"props":156,"children":158},{"className":157},[],[159],{"type":46,"value":160},"BRANCH_NAME",{"type":40,"tag":92,"props":162,"children":163},{},[164],{"type":46,"value":165},"Branch to push commits to",{"type":40,"tag":70,"props":167,"children":168},{},[169,178],{"type":40,"tag":92,"props":170,"children":171},{},[172],{"type":40,"tag":96,"props":173,"children":175},{"className":174},[],[176],{"type":46,"value":177},"BASE_BRANCH",{"type":40,"tag":92,"props":179,"children":180},{},[181],{"type":46,"value":182},"Base branch for PRs (e.g., \"main\")",{"type":40,"tag":70,"props":184,"children":185},{},[186,195],{"type":40,"tag":92,"props":187,"children":188},{},[189],{"type":40,"tag":96,"props":190,"children":192},{"className":191},[],[193],{"type":46,"value":194},"GITHUB_RUN_ID",{"type":40,"tag":92,"props":196,"children":197},{},[198],{"type":46,"value":199},"Current workflow run ID",{"type":40,"tag":70,"props":201,"children":202},{},[203,212],{"type":40,"tag":92,"props":204,"children":205},{},[206],{"type":40,"tag":96,"props":207,"children":209},{"className":208},[],[210],{"type":46,"value":211},"GITHUB_SERVER_URL",{"type":40,"tag":92,"props":213,"children":214},{},[215,217,225],{"type":46,"value":216},"GitHub server URL (usually \"",{"type":40,"tag":218,"props":219,"children":223},"a",{"href":220,"rel":221},"https:\u002F\u002Fgithub.com",[222],"nofollow",[224],{"type":46,"value":220},{"type":46,"value":226},"\")",{"type":40,"tag":55,"props":228,"children":230},{"id":229},"updating-your-tracking-comment",[231],{"type":46,"value":232},"Updating Your Tracking Comment",{"type":40,"tag":49,"props":234,"children":235},{},[236,238,244],{"type":46,"value":237},"You have a tracking comment that shows your progress. ",{"type":40,"tag":239,"props":240,"children":241},"strong",{},[242],{"type":46,"value":243},"Always read the current comment before updating",{"type":46,"value":245}," to preserve the footer.",{"type":40,"tag":247,"props":248,"children":250},"h3",{"id":249},"how-to-update",[251],{"type":46,"value":252},"How to Update",{"type":40,"tag":254,"props":255,"children":256},"ol",{},[257],{"type":40,"tag":258,"props":259,"children":260},"li",{},[261],{"type":40,"tag":239,"props":262,"children":263},{},[264],{"type":46,"value":265},"Read the current comment first:",{"type":40,"tag":267,"props":268,"children":273},"pre",{"className":269,"code":270,"language":271,"meta":272,"style":272},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","gh api \u002Frepos\u002F$GITHUB_REPOSITORY\u002Fissues\u002Fcomments\u002F$LETTA_COMMENT_ID\n","bash","",[274],{"type":40,"tag":96,"props":275,"children":276},{"__ignoreMap":272},[277],{"type":40,"tag":278,"props":279,"children":282},"span",{"class":280,"line":281},"line",1,[283,288,294,299,305,310],{"type":40,"tag":278,"props":284,"children":286},{"style":285},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[287],{"type":46,"value":112},{"type":40,"tag":278,"props":289,"children":291},{"style":290},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[292],{"type":46,"value":293}," api",{"type":40,"tag":278,"props":295,"children":296},{"style":290},[297],{"type":46,"value":298}," \u002Frepos\u002F",{"type":40,"tag":278,"props":300,"children":302},{"style":301},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[303],{"type":46,"value":304},"$GITHUB_REPOSITORY",{"type":40,"tag":278,"props":306,"children":307},{"style":290},[308],{"type":46,"value":309},"\u002Fissues\u002Fcomments\u002F",{"type":40,"tag":278,"props":311,"children":312},{"style":301},[313],{"type":46,"value":314},"$LETTA_COMMENT_ID\n",{"type":40,"tag":254,"props":316,"children":318},{"start":317},2,[319],{"type":40,"tag":258,"props":320,"children":321},{},[322,327],{"type":40,"tag":239,"props":323,"children":324},{},[325],{"type":46,"value":326},"Note the footer",{"type":46,"value":328}," at the bottom of the comment body - it looks like:",{"type":40,"tag":267,"props":330,"children":334},{"className":331,"code":333,"language":46},[332],"language-text","---\n🤖 **Agent:** [`agent-xxx`](https:\u002F\u002Fapp.letta.com\u002Fagents\u002Fagent-xxx) • **Model:** opus\n[View in ADE](...) • [View job run](...)\n",[335],{"type":40,"tag":96,"props":336,"children":337},{"__ignoreMap":272},[338],{"type":46,"value":333},{"type":40,"tag":254,"props":340,"children":342},{"start":341},3,[343],{"type":40,"tag":258,"props":344,"children":345},{},[346],{"type":40,"tag":239,"props":347,"children":348},{},[349],{"type":46,"value":350},"Update with your new content + the same footer:",{"type":40,"tag":267,"props":352,"children":354},{"className":269,"code":353,"language":271,"meta":272,"style":272},"gh api \u002Frepos\u002F$GITHUB_REPOSITORY\u002Fissues\u002Fcomments\u002F$LETTA_COMMENT_ID \\\n  -X PATCH \\\n  -f body=\"Your new content here\n\n---\n🤖 **Agent:** ... (copy the footer from step 1)\"\n",[355],{"type":40,"tag":96,"props":356,"children":357},{"__ignoreMap":272},[358,386,404,428,438,446],{"type":40,"tag":278,"props":359,"children":360},{"class":280,"line":281},[361,365,369,373,377,381],{"type":40,"tag":278,"props":362,"children":363},{"style":285},[364],{"type":46,"value":112},{"type":40,"tag":278,"props":366,"children":367},{"style":290},[368],{"type":46,"value":293},{"type":40,"tag":278,"props":370,"children":371},{"style":290},[372],{"type":46,"value":298},{"type":40,"tag":278,"props":374,"children":375},{"style":301},[376],{"type":46,"value":304},{"type":40,"tag":278,"props":378,"children":379},{"style":290},[380],{"type":46,"value":309},{"type":40,"tag":278,"props":382,"children":383},{"style":301},[384],{"type":46,"value":385},"$LETTA_COMMENT_ID \\\n",{"type":40,"tag":278,"props":387,"children":388},{"class":280,"line":317},[389,394,399],{"type":40,"tag":278,"props":390,"children":391},{"style":290},[392],{"type":46,"value":393},"  -X",{"type":40,"tag":278,"props":395,"children":396},{"style":290},[397],{"type":46,"value":398}," PATCH",{"type":40,"tag":278,"props":400,"children":401},{"style":301},[402],{"type":46,"value":403}," \\\n",{"type":40,"tag":278,"props":405,"children":406},{"class":280,"line":341},[407,412,417,423],{"type":40,"tag":278,"props":408,"children":409},{"style":290},[410],{"type":46,"value":411},"  -f",{"type":40,"tag":278,"props":413,"children":414},{"style":290},[415],{"type":46,"value":416}," body=",{"type":40,"tag":278,"props":418,"children":420},{"style":419},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[421],{"type":46,"value":422},"\"",{"type":40,"tag":278,"props":424,"children":425},{"style":290},[426],{"type":46,"value":427},"Your new content here\n",{"type":40,"tag":278,"props":429,"children":431},{"class":280,"line":430},4,[432],{"type":40,"tag":278,"props":433,"children":435},{"emptyLinePlaceholder":434},true,[436],{"type":46,"value":437},"\n",{"type":40,"tag":278,"props":439,"children":440},{"class":280,"line":27},[441],{"type":40,"tag":278,"props":442,"children":443},{"style":290},[444],{"type":46,"value":445},"---\n",{"type":40,"tag":278,"props":447,"children":449},{"class":280,"line":448},6,[450,455],{"type":40,"tag":278,"props":451,"children":452},{"style":290},[453],{"type":46,"value":454},"🤖 **Agent:** ... (copy the footer from step 1)",{"type":40,"tag":278,"props":456,"children":457},{"style":419},[458],{"type":46,"value":459},"\"\n",{"type":40,"tag":49,"props":461,"children":462},{},[463,468],{"type":40,"tag":239,"props":464,"children":465},{},[466],{"type":46,"value":467},"Important:",{"type":46,"value":469}," Always preserve the footer in every update so users can access the ADE and job run links while you're working.",{"type":40,"tag":55,"props":471,"children":473},{"id":472},"git-operations",[474],{"type":46,"value":475},"Git Operations",{"type":40,"tag":49,"props":477,"children":478},{},[479],{"type":46,"value":480},"Git is pre-configured with authentication. Use standard commands:",{"type":40,"tag":267,"props":482,"children":484},{"className":269,"code":483,"language":271,"meta":272,"style":272},"# Stage changes\ngit add \u003Cfiles>\n\n# Commit with descriptive message\ngit commit -m \"feat: description of changes\"\n\n# Push to the working branch\ngit push origin $BRANCH_NAME\n",[485],{"type":40,"tag":96,"props":486,"children":487},{"__ignoreMap":272},[488,497,530,537,545,576,583,592],{"type":40,"tag":278,"props":489,"children":490},{"class":280,"line":281},[491],{"type":40,"tag":278,"props":492,"children":494},{"style":493},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[495],{"type":46,"value":496},"# Stage changes\n",{"type":40,"tag":278,"props":498,"children":499},{"class":280,"line":317},[500,505,510,515,520,525],{"type":40,"tag":278,"props":501,"children":502},{"style":285},[503],{"type":46,"value":504},"git",{"type":40,"tag":278,"props":506,"children":507},{"style":290},[508],{"type":46,"value":509}," add",{"type":40,"tag":278,"props":511,"children":512},{"style":419},[513],{"type":46,"value":514}," \u003C",{"type":40,"tag":278,"props":516,"children":517},{"style":290},[518],{"type":46,"value":519},"file",{"type":40,"tag":278,"props":521,"children":522},{"style":301},[523],{"type":46,"value":524},"s",{"type":40,"tag":278,"props":526,"children":527},{"style":419},[528],{"type":46,"value":529},">\n",{"type":40,"tag":278,"props":531,"children":532},{"class":280,"line":341},[533],{"type":40,"tag":278,"props":534,"children":535},{"emptyLinePlaceholder":434},[536],{"type":46,"value":437},{"type":40,"tag":278,"props":538,"children":539},{"class":280,"line":430},[540],{"type":40,"tag":278,"props":541,"children":542},{"style":493},[543],{"type":46,"value":544},"# Commit with descriptive message\n",{"type":40,"tag":278,"props":546,"children":547},{"class":280,"line":27},[548,552,557,562,567,572],{"type":40,"tag":278,"props":549,"children":550},{"style":285},[551],{"type":46,"value":504},{"type":40,"tag":278,"props":553,"children":554},{"style":290},[555],{"type":46,"value":556}," commit",{"type":40,"tag":278,"props":558,"children":559},{"style":290},[560],{"type":46,"value":561}," -m",{"type":40,"tag":278,"props":563,"children":564},{"style":419},[565],{"type":46,"value":566}," \"",{"type":40,"tag":278,"props":568,"children":569},{"style":290},[570],{"type":46,"value":571},"feat: description of changes",{"type":40,"tag":278,"props":573,"children":574},{"style":419},[575],{"type":46,"value":459},{"type":40,"tag":278,"props":577,"children":578},{"class":280,"line":448},[579],{"type":40,"tag":278,"props":580,"children":581},{"emptyLinePlaceholder":434},[582],{"type":46,"value":437},{"type":40,"tag":278,"props":584,"children":586},{"class":280,"line":585},7,[587],{"type":40,"tag":278,"props":588,"children":589},{"style":493},[590],{"type":46,"value":591},"# Push to the working branch\n",{"type":40,"tag":278,"props":593,"children":595},{"class":280,"line":594},8,[596,600,605,610],{"type":40,"tag":278,"props":597,"children":598},{"style":285},[599],{"type":46,"value":504},{"type":40,"tag":278,"props":601,"children":602},{"style":290},[603],{"type":46,"value":604}," push",{"type":40,"tag":278,"props":606,"children":607},{"style":290},[608],{"type":46,"value":609}," origin",{"type":40,"tag":278,"props":611,"children":612},{"style":301},[613],{"type":46,"value":614}," $BRANCH_NAME\n",{"type":40,"tag":247,"props":616,"children":618},{"id":617},"commit-message-convention",[619],{"type":46,"value":620},"Commit Message Convention",{"type":40,"tag":49,"props":622,"children":623},{},[624],{"type":46,"value":625},"Follow conventional commits:",{"type":40,"tag":627,"props":628,"children":629},"ul",{},[630,641,652,663,674,685],{"type":40,"tag":258,"props":631,"children":632},{},[633,639],{"type":40,"tag":96,"props":634,"children":636},{"className":635},[],[637],{"type":46,"value":638},"feat:",{"type":46,"value":640}," - New feature",{"type":40,"tag":258,"props":642,"children":643},{},[644,650],{"type":40,"tag":96,"props":645,"children":647},{"className":646},[],[648],{"type":46,"value":649},"fix:",{"type":46,"value":651}," - Bug fix",{"type":40,"tag":258,"props":653,"children":654},{},[655,661],{"type":40,"tag":96,"props":656,"children":658},{"className":657},[],[659],{"type":46,"value":660},"docs:",{"type":46,"value":662}," - Documentation changes",{"type":40,"tag":258,"props":664,"children":665},{},[666,672],{"type":40,"tag":96,"props":667,"children":669},{"className":668},[],[670],{"type":46,"value":671},"refactor:",{"type":46,"value":673}," - Code refactoring",{"type":40,"tag":258,"props":675,"children":676},{},[677,683],{"type":40,"tag":96,"props":678,"children":680},{"className":679},[],[681],{"type":46,"value":682},"test:",{"type":46,"value":684}," - Adding tests",{"type":40,"tag":258,"props":686,"children":687},{},[688,694],{"type":40,"tag":96,"props":689,"children":691},{"className":690},[],[692],{"type":46,"value":693},"chore:",{"type":46,"value":695}," - Maintenance tasks",{"type":40,"tag":55,"props":697,"children":699},{"id":698},"creating-pull-requests",[700],{"type":46,"value":701},"Creating Pull Requests",{"type":40,"tag":49,"props":703,"children":704},{},[705],{"type":46,"value":706},"If working on an issue (not already a PR), create a PR after pushing:",{"type":40,"tag":267,"props":708,"children":710},{"className":269,"code":709,"language":271,"meta":272,"style":272},"gh pr create \\\n  --title \"feat: description\" \\\n  --body \"Fixes #\u003Cissue_number>\n\n## Summary\n- What was changed\n\n## Test Plan\n- How to verify\n\n---\nGenerated with [Letta Code](https:\u002F\u002Fletta.com)\" \\\n  --base $BASE_BRANCH \\\n  --head $BRANCH_NAME\n",[711],{"type":40,"tag":96,"props":712,"children":713},{"__ignoreMap":272},[714,735,760,777,784,792,800,807,815,824,832,840,857,871],{"type":40,"tag":278,"props":715,"children":716},{"class":280,"line":281},[717,721,726,731],{"type":40,"tag":278,"props":718,"children":719},{"style":285},[720],{"type":46,"value":112},{"type":40,"tag":278,"props":722,"children":723},{"style":290},[724],{"type":46,"value":725}," pr",{"type":40,"tag":278,"props":727,"children":728},{"style":290},[729],{"type":46,"value":730}," create",{"type":40,"tag":278,"props":732,"children":733},{"style":301},[734],{"type":46,"value":403},{"type":40,"tag":278,"props":736,"children":737},{"class":280,"line":317},[738,743,747,752,756],{"type":40,"tag":278,"props":739,"children":740},{"style":290},[741],{"type":46,"value":742},"  --title",{"type":40,"tag":278,"props":744,"children":745},{"style":419},[746],{"type":46,"value":566},{"type":40,"tag":278,"props":748,"children":749},{"style":290},[750],{"type":46,"value":751},"feat: description",{"type":40,"tag":278,"props":753,"children":754},{"style":419},[755],{"type":46,"value":422},{"type":40,"tag":278,"props":757,"children":758},{"style":301},[759],{"type":46,"value":403},{"type":40,"tag":278,"props":761,"children":762},{"class":280,"line":341},[763,768,772],{"type":40,"tag":278,"props":764,"children":765},{"style":290},[766],{"type":46,"value":767},"  --body",{"type":40,"tag":278,"props":769,"children":770},{"style":419},[771],{"type":46,"value":566},{"type":40,"tag":278,"props":773,"children":774},{"style":290},[775],{"type":46,"value":776},"Fixes #\u003Cissue_number>\n",{"type":40,"tag":278,"props":778,"children":779},{"class":280,"line":430},[780],{"type":40,"tag":278,"props":781,"children":782},{"emptyLinePlaceholder":434},[783],{"type":46,"value":437},{"type":40,"tag":278,"props":785,"children":786},{"class":280,"line":27},[787],{"type":40,"tag":278,"props":788,"children":789},{"style":290},[790],{"type":46,"value":791},"## Summary\n",{"type":40,"tag":278,"props":793,"children":794},{"class":280,"line":448},[795],{"type":40,"tag":278,"props":796,"children":797},{"style":290},[798],{"type":46,"value":799},"- What was changed\n",{"type":40,"tag":278,"props":801,"children":802},{"class":280,"line":585},[803],{"type":40,"tag":278,"props":804,"children":805},{"emptyLinePlaceholder":434},[806],{"type":46,"value":437},{"type":40,"tag":278,"props":808,"children":809},{"class":280,"line":594},[810],{"type":40,"tag":278,"props":811,"children":812},{"style":290},[813],{"type":46,"value":814},"## Test Plan\n",{"type":40,"tag":278,"props":816,"children":818},{"class":280,"line":817},9,[819],{"type":40,"tag":278,"props":820,"children":821},{"style":290},[822],{"type":46,"value":823},"- How to verify\n",{"type":40,"tag":278,"props":825,"children":827},{"class":280,"line":826},10,[828],{"type":40,"tag":278,"props":829,"children":830},{"emptyLinePlaceholder":434},[831],{"type":46,"value":437},{"type":40,"tag":278,"props":833,"children":835},{"class":280,"line":834},11,[836],{"type":40,"tag":278,"props":837,"children":838},{"style":290},[839],{"type":46,"value":445},{"type":40,"tag":278,"props":841,"children":843},{"class":280,"line":842},12,[844,849,853],{"type":40,"tag":278,"props":845,"children":846},{"style":290},[847],{"type":46,"value":848},"Generated with [Letta Code](https:\u002F\u002Fletta.com)",{"type":40,"tag":278,"props":850,"children":851},{"style":419},[852],{"type":46,"value":422},{"type":40,"tag":278,"props":854,"children":855},{"style":301},[856],{"type":46,"value":403},{"type":40,"tag":278,"props":858,"children":860},{"class":280,"line":859},13,[861,866],{"type":40,"tag":278,"props":862,"children":863},{"style":290},[864],{"type":46,"value":865},"  --base",{"type":40,"tag":278,"props":867,"children":868},{"style":301},[869],{"type":46,"value":870}," $BASE_BRANCH \\\n",{"type":40,"tag":278,"props":872,"children":873},{"class":280,"line":23},[874,879],{"type":40,"tag":278,"props":875,"children":876},{"style":290},[877],{"type":46,"value":878},"  --head",{"type":40,"tag":278,"props":880,"children":881},{"style":301},[882],{"type":46,"value":614},{"type":40,"tag":49,"props":884,"children":885},{},[886,891,893,899,901,907,909,915],{"type":40,"tag":239,"props":887,"children":888},{},[889],{"type":46,"value":890},"IMPORTANT:",{"type":46,"value":892}," Always include a closing keyword (",{"type":40,"tag":96,"props":894,"children":896},{"className":895},[],[897],{"type":46,"value":898},"Fixes #N",{"type":46,"value":900},", ",{"type":40,"tag":96,"props":902,"children":904},{"className":903},[],[905],{"type":46,"value":906},"Closes #N",{"type":46,"value":908},", or ",{"type":40,"tag":96,"props":910,"children":912},{"className":911},[],[913],{"type":46,"value":914},"Resolves #N",{"type":46,"value":916},") in the PR body when the PR addresses an issue. This:",{"type":40,"tag":254,"props":918,"children":919},{},[920,925,930],{"type":40,"tag":258,"props":921,"children":922},{},[923],{"type":46,"value":924},"Links the PR to the issue in GitHub",{"type":40,"tag":258,"props":926,"children":927},{},[928],{"type":46,"value":929},"Automatically closes the issue when the PR is merged",{"type":40,"tag":258,"props":931,"children":932},{},[933,938],{"type":40,"tag":239,"props":934,"children":935},{},[936],{"type":46,"value":937},"Enables conversation continuity",{"type":46,"value":939}," - the agent will have access to the full context from the issue discussion when working on the PR",{"type":40,"tag":55,"props":941,"children":943},{"id":942},"checking-ci-status",[944],{"type":46,"value":945},"Checking CI Status",{"type":40,"tag":49,"props":947,"children":948},{},[949],{"type":46,"value":950},"To check CI status on the current PR:",{"type":40,"tag":267,"props":952,"children":954},{"className":269,"code":953,"language":271,"meta":272,"style":272},"gh pr checks --repo $GITHUB_REPOSITORY\n",[955],{"type":40,"tag":96,"props":956,"children":957},{"__ignoreMap":272},[958],{"type":40,"tag":278,"props":959,"children":960},{"class":280,"line":281},[961,965,969,974,979],{"type":40,"tag":278,"props":962,"children":963},{"style":285},[964],{"type":46,"value":112},{"type":40,"tag":278,"props":966,"children":967},{"style":290},[968],{"type":46,"value":725},{"type":40,"tag":278,"props":970,"children":971},{"style":290},[972],{"type":46,"value":973}," checks",{"type":40,"tag":278,"props":975,"children":976},{"style":290},[977],{"type":46,"value":978}," --repo",{"type":40,"tag":278,"props":980,"children":981},{"style":301},[982],{"type":46,"value":983}," $GITHUB_REPOSITORY\n",{"type":40,"tag":55,"props":985,"children":987},{"id":986},"gh-cli-cheatsheet",[988],{"type":46,"value":989},"gh CLI Cheatsheet",{"type":40,"tag":49,"props":991,"children":992},{},[993,995,1000],{"type":46,"value":994},"The ",{"type":40,"tag":96,"props":996,"children":998},{"className":997},[],[999],{"type":46,"value":112},{"type":46,"value":1001}," CLI is pre-authenticated and available. Here are the most common commands you'll need:",{"type":40,"tag":247,"props":1003,"children":1005},{"id":1004},"working-with-pull-requests",[1006],{"type":46,"value":1007},"Working with Pull Requests",{"type":40,"tag":267,"props":1009,"children":1011},{"className":269,"code":1010,"language":271,"meta":272,"style":272},"# List open PRs\ngh pr list --repo $GITHUB_REPOSITORY\n\n# View PR details\ngh pr view \u003Cnumber> --repo $GITHUB_REPOSITORY\n\n# Checkout an existing PR's branch (to push updates to it)\ngh pr checkout \u003Cnumber>\n\n# Check CI status on a PR\ngh pr checks \u003Cnumber> --repo $GITHUB_REPOSITORY\n\n# Add a comment to a PR\ngh pr comment \u003Cnumber> --body \"Your comment\" --repo $GITHUB_REPOSITORY\n\n# View PR diff\ngh pr diff \u003Cnumber> --repo $GITHUB_REPOSITORY\n",[1012],{"type":40,"tag":96,"props":1013,"children":1014},{"__ignoreMap":272},[1015,1023,1047,1054,1062,1105,1112,1120,1152,1159,1167,1206,1213,1221,1279,1287,1296],{"type":40,"tag":278,"props":1016,"children":1017},{"class":280,"line":281},[1018],{"type":40,"tag":278,"props":1019,"children":1020},{"style":493},[1021],{"type":46,"value":1022},"# List open PRs\n",{"type":40,"tag":278,"props":1024,"children":1025},{"class":280,"line":317},[1026,1030,1034,1039,1043],{"type":40,"tag":278,"props":1027,"children":1028},{"style":285},[1029],{"type":46,"value":112},{"type":40,"tag":278,"props":1031,"children":1032},{"style":290},[1033],{"type":46,"value":725},{"type":40,"tag":278,"props":1035,"children":1036},{"style":290},[1037],{"type":46,"value":1038}," list",{"type":40,"tag":278,"props":1040,"children":1041},{"style":290},[1042],{"type":46,"value":978},{"type":40,"tag":278,"props":1044,"children":1045},{"style":301},[1046],{"type":46,"value":983},{"type":40,"tag":278,"props":1048,"children":1049},{"class":280,"line":341},[1050],{"type":40,"tag":278,"props":1051,"children":1052},{"emptyLinePlaceholder":434},[1053],{"type":46,"value":437},{"type":40,"tag":278,"props":1055,"children":1056},{"class":280,"line":430},[1057],{"type":40,"tag":278,"props":1058,"children":1059},{"style":493},[1060],{"type":46,"value":1061},"# View PR details\n",{"type":40,"tag":278,"props":1063,"children":1064},{"class":280,"line":27},[1065,1069,1073,1078,1082,1087,1092,1097,1101],{"type":40,"tag":278,"props":1066,"children":1067},{"style":285},[1068],{"type":46,"value":112},{"type":40,"tag":278,"props":1070,"children":1071},{"style":290},[1072],{"type":46,"value":725},{"type":40,"tag":278,"props":1074,"children":1075},{"style":290},[1076],{"type":46,"value":1077}," view",{"type":40,"tag":278,"props":1079,"children":1080},{"style":419},[1081],{"type":46,"value":514},{"type":40,"tag":278,"props":1083,"children":1084},{"style":290},[1085],{"type":46,"value":1086},"numbe",{"type":40,"tag":278,"props":1088,"children":1089},{"style":301},[1090],{"type":46,"value":1091},"r",{"type":40,"tag":278,"props":1093,"children":1094},{"style":419},[1095],{"type":46,"value":1096},">",{"type":40,"tag":278,"props":1098,"children":1099},{"style":290},[1100],{"type":46,"value":978},{"type":40,"tag":278,"props":1102,"children":1103},{"style":301},[1104],{"type":46,"value":983},{"type":40,"tag":278,"props":1106,"children":1107},{"class":280,"line":448},[1108],{"type":40,"tag":278,"props":1109,"children":1110},{"emptyLinePlaceholder":434},[1111],{"type":46,"value":437},{"type":40,"tag":278,"props":1113,"children":1114},{"class":280,"line":585},[1115],{"type":40,"tag":278,"props":1116,"children":1117},{"style":493},[1118],{"type":46,"value":1119},"# Checkout an existing PR's branch (to push updates to it)\n",{"type":40,"tag":278,"props":1121,"children":1122},{"class":280,"line":594},[1123,1127,1131,1136,1140,1144,1148],{"type":40,"tag":278,"props":1124,"children":1125},{"style":285},[1126],{"type":46,"value":112},{"type":40,"tag":278,"props":1128,"children":1129},{"style":290},[1130],{"type":46,"value":725},{"type":40,"tag":278,"props":1132,"children":1133},{"style":290},[1134],{"type":46,"value":1135}," checkout",{"type":40,"tag":278,"props":1137,"children":1138},{"style":419},[1139],{"type":46,"value":514},{"type":40,"tag":278,"props":1141,"children":1142},{"style":290},[1143],{"type":46,"value":1086},{"type":40,"tag":278,"props":1145,"children":1146},{"style":301},[1147],{"type":46,"value":1091},{"type":40,"tag":278,"props":1149,"children":1150},{"style":419},[1151],{"type":46,"value":529},{"type":40,"tag":278,"props":1153,"children":1154},{"class":280,"line":817},[1155],{"type":40,"tag":278,"props":1156,"children":1157},{"emptyLinePlaceholder":434},[1158],{"type":46,"value":437},{"type":40,"tag":278,"props":1160,"children":1161},{"class":280,"line":826},[1162],{"type":40,"tag":278,"props":1163,"children":1164},{"style":493},[1165],{"type":46,"value":1166},"# Check CI status on a PR\n",{"type":40,"tag":278,"props":1168,"children":1169},{"class":280,"line":834},[1170,1174,1178,1182,1186,1190,1194,1198,1202],{"type":40,"tag":278,"props":1171,"children":1172},{"style":285},[1173],{"type":46,"value":112},{"type":40,"tag":278,"props":1175,"children":1176},{"style":290},[1177],{"type":46,"value":725},{"type":40,"tag":278,"props":1179,"children":1180},{"style":290},[1181],{"type":46,"value":973},{"type":40,"tag":278,"props":1183,"children":1184},{"style":419},[1185],{"type":46,"value":514},{"type":40,"tag":278,"props":1187,"children":1188},{"style":290},[1189],{"type":46,"value":1086},{"type":40,"tag":278,"props":1191,"children":1192},{"style":301},[1193],{"type":46,"value":1091},{"type":40,"tag":278,"props":1195,"children":1196},{"style":419},[1197],{"type":46,"value":1096},{"type":40,"tag":278,"props":1199,"children":1200},{"style":290},[1201],{"type":46,"value":978},{"type":40,"tag":278,"props":1203,"children":1204},{"style":301},[1205],{"type":46,"value":983},{"type":40,"tag":278,"props":1207,"children":1208},{"class":280,"line":842},[1209],{"type":40,"tag":278,"props":1210,"children":1211},{"emptyLinePlaceholder":434},[1212],{"type":46,"value":437},{"type":40,"tag":278,"props":1214,"children":1215},{"class":280,"line":859},[1216],{"type":40,"tag":278,"props":1217,"children":1218},{"style":493},[1219],{"type":46,"value":1220},"# Add a comment to a PR\n",{"type":40,"tag":278,"props":1222,"children":1223},{"class":280,"line":23},[1224,1228,1232,1237,1241,1245,1249,1253,1258,1262,1267,1271,1275],{"type":40,"tag":278,"props":1225,"children":1226},{"style":285},[1227],{"type":46,"value":112},{"type":40,"tag":278,"props":1229,"children":1230},{"style":290},[1231],{"type":46,"value":725},{"type":40,"tag":278,"props":1233,"children":1234},{"style":290},[1235],{"type":46,"value":1236}," comment",{"type":40,"tag":278,"props":1238,"children":1239},{"style":419},[1240],{"type":46,"value":514},{"type":40,"tag":278,"props":1242,"children":1243},{"style":290},[1244],{"type":46,"value":1086},{"type":40,"tag":278,"props":1246,"children":1247},{"style":301},[1248],{"type":46,"value":1091},{"type":40,"tag":278,"props":1250,"children":1251},{"style":419},[1252],{"type":46,"value":1096},{"type":40,"tag":278,"props":1254,"children":1255},{"style":290},[1256],{"type":46,"value":1257}," --body",{"type":40,"tag":278,"props":1259,"children":1260},{"style":419},[1261],{"type":46,"value":566},{"type":40,"tag":278,"props":1263,"children":1264},{"style":290},[1265],{"type":46,"value":1266},"Your comment",{"type":40,"tag":278,"props":1268,"children":1269},{"style":419},[1270],{"type":46,"value":422},{"type":40,"tag":278,"props":1272,"children":1273},{"style":290},[1274],{"type":46,"value":978},{"type":40,"tag":278,"props":1276,"children":1277},{"style":301},[1278],{"type":46,"value":983},{"type":40,"tag":278,"props":1280,"children":1282},{"class":280,"line":1281},15,[1283],{"type":40,"tag":278,"props":1284,"children":1285},{"emptyLinePlaceholder":434},[1286],{"type":46,"value":437},{"type":40,"tag":278,"props":1288,"children":1290},{"class":280,"line":1289},16,[1291],{"type":40,"tag":278,"props":1292,"children":1293},{"style":493},[1294],{"type":46,"value":1295},"# View PR diff\n",{"type":40,"tag":278,"props":1297,"children":1299},{"class":280,"line":1298},17,[1300,1304,1308,1313,1317,1321,1325,1329,1333],{"type":40,"tag":278,"props":1301,"children":1302},{"style":285},[1303],{"type":46,"value":112},{"type":40,"tag":278,"props":1305,"children":1306},{"style":290},[1307],{"type":46,"value":725},{"type":40,"tag":278,"props":1309,"children":1310},{"style":290},[1311],{"type":46,"value":1312}," diff",{"type":40,"tag":278,"props":1314,"children":1315},{"style":419},[1316],{"type":46,"value":514},{"type":40,"tag":278,"props":1318,"children":1319},{"style":290},[1320],{"type":46,"value":1086},{"type":40,"tag":278,"props":1322,"children":1323},{"style":301},[1324],{"type":46,"value":1091},{"type":40,"tag":278,"props":1326,"children":1327},{"style":419},[1328],{"type":46,"value":1096},{"type":40,"tag":278,"props":1330,"children":1331},{"style":290},[1332],{"type":46,"value":978},{"type":40,"tag":278,"props":1334,"children":1335},{"style":301},[1336],{"type":46,"value":983},{"type":40,"tag":247,"props":1338,"children":1340},{"id":1339},"working-with-issues",[1341],{"type":46,"value":1342},"Working with Issues",{"type":40,"tag":267,"props":1344,"children":1346},{"className":269,"code":1345,"language":271,"meta":272,"style":272},"# List open issues\ngh issue list --repo $GITHUB_REPOSITORY\n\n# View issue details\ngh issue view \u003Cnumber> --repo $GITHUB_REPOSITORY\n\n# Add a comment to an issue\ngh issue comment \u003Cnumber> --body \"Your comment\" --repo $GITHUB_REPOSITORY\n",[1347],{"type":40,"tag":96,"props":1348,"children":1349},{"__ignoreMap":272},[1350,1358,1382,1389,1397,1436,1443,1451],{"type":40,"tag":278,"props":1351,"children":1352},{"class":280,"line":281},[1353],{"type":40,"tag":278,"props":1354,"children":1355},{"style":493},[1356],{"type":46,"value":1357},"# List open issues\n",{"type":40,"tag":278,"props":1359,"children":1360},{"class":280,"line":317},[1361,1365,1370,1374,1378],{"type":40,"tag":278,"props":1362,"children":1363},{"style":285},[1364],{"type":46,"value":112},{"type":40,"tag":278,"props":1366,"children":1367},{"style":290},[1368],{"type":46,"value":1369}," issue",{"type":40,"tag":278,"props":1371,"children":1372},{"style":290},[1373],{"type":46,"value":1038},{"type":40,"tag":278,"props":1375,"children":1376},{"style":290},[1377],{"type":46,"value":978},{"type":40,"tag":278,"props":1379,"children":1380},{"style":301},[1381],{"type":46,"value":983},{"type":40,"tag":278,"props":1383,"children":1384},{"class":280,"line":341},[1385],{"type":40,"tag":278,"props":1386,"children":1387},{"emptyLinePlaceholder":434},[1388],{"type":46,"value":437},{"type":40,"tag":278,"props":1390,"children":1391},{"class":280,"line":430},[1392],{"type":40,"tag":278,"props":1393,"children":1394},{"style":493},[1395],{"type":46,"value":1396},"# View issue details\n",{"type":40,"tag":278,"props":1398,"children":1399},{"class":280,"line":27},[1400,1404,1408,1412,1416,1420,1424,1428,1432],{"type":40,"tag":278,"props":1401,"children":1402},{"style":285},[1403],{"type":46,"value":112},{"type":40,"tag":278,"props":1405,"children":1406},{"style":290},[1407],{"type":46,"value":1369},{"type":40,"tag":278,"props":1409,"children":1410},{"style":290},[1411],{"type":46,"value":1077},{"type":40,"tag":278,"props":1413,"children":1414},{"style":419},[1415],{"type":46,"value":514},{"type":40,"tag":278,"props":1417,"children":1418},{"style":290},[1419],{"type":46,"value":1086},{"type":40,"tag":278,"props":1421,"children":1422},{"style":301},[1423],{"type":46,"value":1091},{"type":40,"tag":278,"props":1425,"children":1426},{"style":419},[1427],{"type":46,"value":1096},{"type":40,"tag":278,"props":1429,"children":1430},{"style":290},[1431],{"type":46,"value":978},{"type":40,"tag":278,"props":1433,"children":1434},{"style":301},[1435],{"type":46,"value":983},{"type":40,"tag":278,"props":1437,"children":1438},{"class":280,"line":448},[1439],{"type":40,"tag":278,"props":1440,"children":1441},{"emptyLinePlaceholder":434},[1442],{"type":46,"value":437},{"type":40,"tag":278,"props":1444,"children":1445},{"class":280,"line":585},[1446],{"type":40,"tag":278,"props":1447,"children":1448},{"style":493},[1449],{"type":46,"value":1450},"# Add a comment to an issue\n",{"type":40,"tag":278,"props":1452,"children":1453},{"class":280,"line":594},[1454,1458,1462,1466,1470,1474,1478,1482,1486,1490,1494,1498,1502],{"type":40,"tag":278,"props":1455,"children":1456},{"style":285},[1457],{"type":46,"value":112},{"type":40,"tag":278,"props":1459,"children":1460},{"style":290},[1461],{"type":46,"value":1369},{"type":40,"tag":278,"props":1463,"children":1464},{"style":290},[1465],{"type":46,"value":1236},{"type":40,"tag":278,"props":1467,"children":1468},{"style":419},[1469],{"type":46,"value":514},{"type":40,"tag":278,"props":1471,"children":1472},{"style":290},[1473],{"type":46,"value":1086},{"type":40,"tag":278,"props":1475,"children":1476},{"style":301},[1477],{"type":46,"value":1091},{"type":40,"tag":278,"props":1479,"children":1480},{"style":419},[1481],{"type":46,"value":1096},{"type":40,"tag":278,"props":1483,"children":1484},{"style":290},[1485],{"type":46,"value":1257},{"type":40,"tag":278,"props":1487,"children":1488},{"style":419},[1489],{"type":46,"value":566},{"type":40,"tag":278,"props":1491,"children":1492},{"style":290},[1493],{"type":46,"value":1266},{"type":40,"tag":278,"props":1495,"children":1496},{"style":419},[1497],{"type":46,"value":422},{"type":40,"tag":278,"props":1499,"children":1500},{"style":290},[1501],{"type":46,"value":978},{"type":40,"tag":278,"props":1503,"children":1504},{"style":301},[1505],{"type":46,"value":983},{"type":40,"tag":247,"props":1507,"children":1509},{"id":1508},"github-api-for-advanced-operations",[1510],{"type":46,"value":1511},"GitHub API (for advanced operations)",{"type":40,"tag":267,"props":1513,"children":1515},{"className":269,"code":1514,"language":271,"meta":272,"style":272},"# Get PR review comments\ngh api repos\u002F$GITHUB_REPOSITORY\u002Fpulls\u002F\u003Cnumber>\u002Fcomments\n\n# Get PR reviews\ngh api repos\u002F$GITHUB_REPOSITORY\u002Fpulls\u002F\u003Cnumber>\u002Freviews\n\n# Get issue comments\ngh api repos\u002F$GITHUB_REPOSITORY\u002Fissues\u002F\u003Cnumber>\u002Fcomments\n",[1516],{"type":40,"tag":96,"props":1517,"children":1518},{"__ignoreMap":272},[1519,1527,1574,1581,1589,1633,1640,1648],{"type":40,"tag":278,"props":1520,"children":1521},{"class":280,"line":281},[1522],{"type":40,"tag":278,"props":1523,"children":1524},{"style":493},[1525],{"type":46,"value":1526},"# Get PR review comments\n",{"type":40,"tag":278,"props":1528,"children":1529},{"class":280,"line":317},[1530,1534,1538,1543,1547,1552,1557,1561,1565,1569],{"type":40,"tag":278,"props":1531,"children":1532},{"style":285},[1533],{"type":46,"value":112},{"type":40,"tag":278,"props":1535,"children":1536},{"style":290},[1537],{"type":46,"value":293},{"type":40,"tag":278,"props":1539,"children":1540},{"style":290},[1541],{"type":46,"value":1542}," repos\u002F",{"type":40,"tag":278,"props":1544,"children":1545},{"style":301},[1546],{"type":46,"value":304},{"type":40,"tag":278,"props":1548,"children":1549},{"style":290},[1550],{"type":46,"value":1551},"\u002Fpulls\u002F",{"type":40,"tag":278,"props":1553,"children":1554},{"style":419},[1555],{"type":46,"value":1556},"\u003C",{"type":40,"tag":278,"props":1558,"children":1559},{"style":290},[1560],{"type":46,"value":1086},{"type":40,"tag":278,"props":1562,"children":1563},{"style":301},[1564],{"type":46,"value":1091},{"type":40,"tag":278,"props":1566,"children":1567},{"style":419},[1568],{"type":46,"value":1096},{"type":40,"tag":278,"props":1570,"children":1571},{"style":290},[1572],{"type":46,"value":1573},"\u002Fcomments\n",{"type":40,"tag":278,"props":1575,"children":1576},{"class":280,"line":341},[1577],{"type":40,"tag":278,"props":1578,"children":1579},{"emptyLinePlaceholder":434},[1580],{"type":46,"value":437},{"type":40,"tag":278,"props":1582,"children":1583},{"class":280,"line":430},[1584],{"type":40,"tag":278,"props":1585,"children":1586},{"style":493},[1587],{"type":46,"value":1588},"# Get PR reviews\n",{"type":40,"tag":278,"props":1590,"children":1591},{"class":280,"line":27},[1592,1596,1600,1604,1608,1612,1616,1620,1624,1628],{"type":40,"tag":278,"props":1593,"children":1594},{"style":285},[1595],{"type":46,"value":112},{"type":40,"tag":278,"props":1597,"children":1598},{"style":290},[1599],{"type":46,"value":293},{"type":40,"tag":278,"props":1601,"children":1602},{"style":290},[1603],{"type":46,"value":1542},{"type":40,"tag":278,"props":1605,"children":1606},{"style":301},[1607],{"type":46,"value":304},{"type":40,"tag":278,"props":1609,"children":1610},{"style":290},[1611],{"type":46,"value":1551},{"type":40,"tag":278,"props":1613,"children":1614},{"style":419},[1615],{"type":46,"value":1556},{"type":40,"tag":278,"props":1617,"children":1618},{"style":290},[1619],{"type":46,"value":1086},{"type":40,"tag":278,"props":1621,"children":1622},{"style":301},[1623],{"type":46,"value":1091},{"type":40,"tag":278,"props":1625,"children":1626},{"style":419},[1627],{"type":46,"value":1096},{"type":40,"tag":278,"props":1629,"children":1630},{"style":290},[1631],{"type":46,"value":1632},"\u002Freviews\n",{"type":40,"tag":278,"props":1634,"children":1635},{"class":280,"line":448},[1636],{"type":40,"tag":278,"props":1637,"children":1638},{"emptyLinePlaceholder":434},[1639],{"type":46,"value":437},{"type":40,"tag":278,"props":1641,"children":1642},{"class":280,"line":585},[1643],{"type":40,"tag":278,"props":1644,"children":1645},{"style":493},[1646],{"type":46,"value":1647},"# Get issue comments\n",{"type":40,"tag":278,"props":1649,"children":1650},{"class":280,"line":594},[1651,1655,1659,1663,1667,1672,1676,1680,1684,1688],{"type":40,"tag":278,"props":1652,"children":1653},{"style":285},[1654],{"type":46,"value":112},{"type":40,"tag":278,"props":1656,"children":1657},{"style":290},[1658],{"type":46,"value":293},{"type":40,"tag":278,"props":1660,"children":1661},{"style":290},[1662],{"type":46,"value":1542},{"type":40,"tag":278,"props":1664,"children":1665},{"style":301},[1666],{"type":46,"value":304},{"type":40,"tag":278,"props":1668,"children":1669},{"style":290},[1670],{"type":46,"value":1671},"\u002Fissues\u002F",{"type":40,"tag":278,"props":1673,"children":1674},{"style":419},[1675],{"type":46,"value":1556},{"type":40,"tag":278,"props":1677,"children":1678},{"style":290},[1679],{"type":46,"value":1086},{"type":40,"tag":278,"props":1681,"children":1682},{"style":301},[1683],{"type":46,"value":1091},{"type":40,"tag":278,"props":1685,"children":1686},{"style":419},[1687],{"type":46,"value":1096},{"type":40,"tag":278,"props":1689,"children":1690},{"style":290},[1691],{"type":46,"value":1573},{"type":40,"tag":247,"props":1693,"children":1695},{"id":1694},"pushing-to-an-existing-pr",[1696],{"type":46,"value":1697},"Pushing to an Existing PR",{"type":40,"tag":49,"props":1699,"children":1700},{},[1701],{"type":46,"value":1702},"If you need to update an existing PR (not the one you're currently on):",{"type":40,"tag":267,"props":1704,"children":1706},{"className":269,"code":1705,"language":271,"meta":272,"style":272},"# Checkout the PR's branch\ngh pr checkout \u003Cnumber>\n\n# Make your changes, then commit and push\ngit add \u003Cfiles>\ngit commit -m \"fix: description\"\ngit push origin HEAD\n",[1707],{"type":40,"tag":96,"props":1708,"children":1709},{"__ignoreMap":272},[1710,1718,1749,1756,1764,1791,1819],{"type":40,"tag":278,"props":1711,"children":1712},{"class":280,"line":281},[1713],{"type":40,"tag":278,"props":1714,"children":1715},{"style":493},[1716],{"type":46,"value":1717},"# Checkout the PR's branch\n",{"type":40,"tag":278,"props":1719,"children":1720},{"class":280,"line":317},[1721,1725,1729,1733,1737,1741,1745],{"type":40,"tag":278,"props":1722,"children":1723},{"style":285},[1724],{"type":46,"value":112},{"type":40,"tag":278,"props":1726,"children":1727},{"style":290},[1728],{"type":46,"value":725},{"type":40,"tag":278,"props":1730,"children":1731},{"style":290},[1732],{"type":46,"value":1135},{"type":40,"tag":278,"props":1734,"children":1735},{"style":419},[1736],{"type":46,"value":514},{"type":40,"tag":278,"props":1738,"children":1739},{"style":290},[1740],{"type":46,"value":1086},{"type":40,"tag":278,"props":1742,"children":1743},{"style":301},[1744],{"type":46,"value":1091},{"type":40,"tag":278,"props":1746,"children":1747},{"style":419},[1748],{"type":46,"value":529},{"type":40,"tag":278,"props":1750,"children":1751},{"class":280,"line":341},[1752],{"type":40,"tag":278,"props":1753,"children":1754},{"emptyLinePlaceholder":434},[1755],{"type":46,"value":437},{"type":40,"tag":278,"props":1757,"children":1758},{"class":280,"line":430},[1759],{"type":40,"tag":278,"props":1760,"children":1761},{"style":493},[1762],{"type":46,"value":1763},"# Make your changes, then commit and push\n",{"type":40,"tag":278,"props":1765,"children":1766},{"class":280,"line":27},[1767,1771,1775,1779,1783,1787],{"type":40,"tag":278,"props":1768,"children":1769},{"style":285},[1770],{"type":46,"value":504},{"type":40,"tag":278,"props":1772,"children":1773},{"style":290},[1774],{"type":46,"value":509},{"type":40,"tag":278,"props":1776,"children":1777},{"style":419},[1778],{"type":46,"value":514},{"type":40,"tag":278,"props":1780,"children":1781},{"style":290},[1782],{"type":46,"value":519},{"type":40,"tag":278,"props":1784,"children":1785},{"style":301},[1786],{"type":46,"value":524},{"type":40,"tag":278,"props":1788,"children":1789},{"style":419},[1790],{"type":46,"value":529},{"type":40,"tag":278,"props":1792,"children":1793},{"class":280,"line":448},[1794,1798,1802,1806,1810,1815],{"type":40,"tag":278,"props":1795,"children":1796},{"style":285},[1797],{"type":46,"value":504},{"type":40,"tag":278,"props":1799,"children":1800},{"style":290},[1801],{"type":46,"value":556},{"type":40,"tag":278,"props":1803,"children":1804},{"style":290},[1805],{"type":46,"value":561},{"type":40,"tag":278,"props":1807,"children":1808},{"style":419},[1809],{"type":46,"value":566},{"type":40,"tag":278,"props":1811,"children":1812},{"style":290},[1813],{"type":46,"value":1814},"fix: description",{"type":40,"tag":278,"props":1816,"children":1817},{"style":419},[1818],{"type":46,"value":459},{"type":40,"tag":278,"props":1820,"children":1821},{"class":280,"line":585},[1822,1826,1830,1834],{"type":40,"tag":278,"props":1823,"children":1824},{"style":285},[1825],{"type":46,"value":504},{"type":40,"tag":278,"props":1827,"children":1828},{"style":290},[1829],{"type":46,"value":604},{"type":40,"tag":278,"props":1831,"children":1832},{"style":290},[1833],{"type":46,"value":609},{"type":40,"tag":278,"props":1835,"children":1836},{"style":290},[1837],{"type":46,"value":1838}," HEAD\n",{"type":40,"tag":247,"props":1840,"children":1842},{"id":1841},"discovering-more-commands",[1843],{"type":46,"value":1844},"Discovering More Commands",{"type":40,"tag":49,"props":1846,"children":1847},{},[1848,1849,1854,1856,1862],{"type":46,"value":994},{"type":40,"tag":96,"props":1850,"children":1852},{"className":1851},[],[1853],{"type":46,"value":112},{"type":46,"value":1855}," CLI has many more capabilities. Use ",{"type":40,"tag":96,"props":1857,"children":1859},{"className":1858},[],[1860],{"type":46,"value":1861},"--help",{"type":46,"value":1863}," to explore:",{"type":40,"tag":267,"props":1865,"children":1867},{"className":269,"code":1866,"language":271,"meta":272,"style":272},"gh --help              # List all commands\ngh pr --help           # PR-specific commands\ngh issue --help        # Issue-specific commands\ngh api --help          # API request help\n",[1868],{"type":40,"tag":96,"props":1869,"children":1870},{"__ignoreMap":272},[1871,1888,1908,1928],{"type":40,"tag":278,"props":1872,"children":1873},{"class":280,"line":281},[1874,1878,1883],{"type":40,"tag":278,"props":1875,"children":1876},{"style":285},[1877],{"type":46,"value":112},{"type":40,"tag":278,"props":1879,"children":1880},{"style":290},[1881],{"type":46,"value":1882}," --help",{"type":40,"tag":278,"props":1884,"children":1885},{"style":493},[1886],{"type":46,"value":1887},"              # List all commands\n",{"type":40,"tag":278,"props":1889,"children":1890},{"class":280,"line":317},[1891,1895,1899,1903],{"type":40,"tag":278,"props":1892,"children":1893},{"style":285},[1894],{"type":46,"value":112},{"type":40,"tag":278,"props":1896,"children":1897},{"style":290},[1898],{"type":46,"value":725},{"type":40,"tag":278,"props":1900,"children":1901},{"style":290},[1902],{"type":46,"value":1882},{"type":40,"tag":278,"props":1904,"children":1905},{"style":493},[1906],{"type":46,"value":1907},"           # PR-specific commands\n",{"type":40,"tag":278,"props":1909,"children":1910},{"class":280,"line":341},[1911,1915,1919,1923],{"type":40,"tag":278,"props":1912,"children":1913},{"style":285},[1914],{"type":46,"value":112},{"type":40,"tag":278,"props":1916,"children":1917},{"style":290},[1918],{"type":46,"value":1369},{"type":40,"tag":278,"props":1920,"children":1921},{"style":290},[1922],{"type":46,"value":1882},{"type":40,"tag":278,"props":1924,"children":1925},{"style":493},[1926],{"type":46,"value":1927},"        # Issue-specific commands\n",{"type":40,"tag":278,"props":1929,"children":1930},{"class":280,"line":430},[1931,1935,1939,1943],{"type":40,"tag":278,"props":1932,"children":1933},{"style":285},[1934],{"type":46,"value":112},{"type":40,"tag":278,"props":1936,"children":1937},{"style":290},[1938],{"type":46,"value":293},{"type":40,"tag":278,"props":1940,"children":1941},{"style":290},[1942],{"type":46,"value":1882},{"type":40,"tag":278,"props":1944,"children":1945},{"style":493},[1946],{"type":46,"value":1947},"          # API request help\n",{"type":40,"tag":55,"props":1949,"children":1951},{"id":1950},"important-notes",[1952],{"type":46,"value":1953},"Important Notes",{"type":40,"tag":254,"props":1955,"children":1956},{},[1957,1967,1977,1993,2009],{"type":40,"tag":258,"props":1958,"children":1959},{},[1960,1965],{"type":40,"tag":239,"props":1961,"children":1962},{},[1963],{"type":46,"value":1964},"Always update the comment",{"type":46,"value":1966}," before long operations so users know you're working",{"type":40,"tag":258,"props":1968,"children":1969},{},[1970,1975],{"type":40,"tag":239,"props":1971,"children":1972},{},[1973],{"type":46,"value":1974},"Never force push",{"type":46,"value":1976}," - only regular pushes are allowed",{"type":40,"tag":258,"props":1978,"children":1979},{},[1980,1985,1987],{"type":40,"tag":239,"props":1981,"children":1982},{},[1983],{"type":46,"value":1984},"Check for existing changes",{"type":46,"value":1986}," before committing with ",{"type":40,"tag":96,"props":1988,"children":1990},{"className":1989},[],[1991],{"type":46,"value":1992},"git status",{"type":40,"tag":258,"props":1994,"children":1995},{},[1996,2001,2003],{"type":40,"tag":239,"props":1997,"children":1998},{},[1999],{"type":46,"value":2000},"Pull before push",{"type":46,"value":2002}," if the branch may have been updated: ",{"type":40,"tag":96,"props":2004,"children":2006},{"className":2005},[],[2007],{"type":46,"value":2008},"git pull origin $BRANCH_NAME",{"type":40,"tag":258,"props":2010,"children":2011},{},[2012,2023],{"type":40,"tag":239,"props":2013,"children":2014},{},[2015,2017],{"type":46,"value":2016},"Use ",{"type":40,"tag":96,"props":2018,"children":2020},{"className":2019},[],[2021],{"type":46,"value":2022},"gh --help",{"type":46,"value":2024}," to discover additional gh CLI capabilities beyond this cheatsheet",{"type":40,"tag":2026,"props":2027,"children":2028},"style",{},[2029],{"type":46,"value":2030},"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":2032,"total":317},[2033,2049],{"slug":2034,"name":2034,"fn":2035,"description":2036,"org":2037,"tags":2038,"stars":23,"repoUrl":24,"updatedAt":2048},"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},[2039,2041,2042,2045],{"name":2040,"slug":2034,"type":16},"Code Review",{"name":18,"slug":19,"type":16},{"name":2043,"slug":2044,"type":16},"GitHub","github",{"name":2046,"slug":2047,"type":16},"Pull Requests","pull-requests","2026-07-13T06:26:11.459799",{"slug":4,"name":4,"fn":5,"description":6,"org":2050,"tags":2051,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2052,2053,2054],{"name":21,"slug":22,"type":16},{"name":18,"slug":19,"type":16},{"name":14,"slug":15,"type":16},{"items":2056,"total":2213},[2057,2073,2088,2100,2112,2126,2138,2147,2159,2175,2186,2198],{"slug":2058,"name":2058,"fn":2059,"description":2060,"org":2061,"tags":2062,"stars":2070,"repoUrl":2071,"updatedAt":2072},"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},[2063,2066,2069],{"name":2064,"slug":2065,"type":16},"Agents","agents",{"name":2067,"slug":2068,"type":16},"Automation","automation",{"name":2043,"slug":2044,"type":16},2831,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fletta-code","2026-07-13T06:22:58.45767",{"slug":2074,"name":2075,"fn":2076,"description":2077,"org":2078,"tags":2079,"stars":2070,"repoUrl":2071,"updatedAt":2087},"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},[2080,2081,2084],{"name":2064,"slug":2065,"type":16},{"name":2082,"slug":2083,"type":16},"AI Context","ai-context",{"name":2085,"slug":2086,"type":16},"Debugging","debugging","2026-07-13T06:22:50.151002",{"slug":2089,"name":2089,"fn":2090,"description":2091,"org":2092,"tags":2093,"stars":2070,"repoUrl":2071,"updatedAt":2099},"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},[2094,2095,2096],{"name":2064,"slug":2065,"type":16},{"name":2067,"slug":2068,"type":16},{"name":2097,"slug":2098,"type":16},"MCP","mcp","2026-07-13T06:23:37.646079",{"slug":2101,"name":2101,"fn":2102,"description":2103,"org":2104,"tags":2105,"stars":2070,"repoUrl":2071,"updatedAt":2111},"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},[2106,2107,2108],{"name":2064,"slug":2065,"type":16},{"name":2067,"slug":2068,"type":16},{"name":2109,"slug":2110,"type":16},"Coding","coding","2026-07-23T05:42:38.133565",{"slug":2113,"name":2113,"fn":2114,"description":2115,"org":2116,"tags":2117,"stars":2070,"repoUrl":2071,"updatedAt":2125},"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},[2118,2119,2122],{"name":2064,"slug":2065,"type":16},{"name":2120,"slug":2121,"type":16},"Documentation","documentation",{"name":2123,"slug":2124,"type":16},"Plugin Development","plugin-development","2026-07-13T06:22:56.998659",{"slug":2127,"name":2127,"fn":2128,"description":2129,"org":2130,"tags":2131,"stars":2070,"repoUrl":2071,"updatedAt":2137},"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},[2132,2133,2134],{"name":2064,"slug":2065,"type":16},{"name":2067,"slug":2068,"type":16},{"name":2135,"slug":2136,"type":16},"CLI","cli","2026-07-13T06:23:18.266798",{"slug":2139,"name":2139,"fn":2140,"description":2141,"org":2142,"tags":2143,"stars":2070,"repoUrl":2071,"updatedAt":2146},"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},[2144,2145],{"name":2135,"slug":2136,"type":16},{"name":18,"slug":19,"type":16},"2026-07-13T06:23:27.465985",{"slug":2148,"name":2148,"fn":2149,"description":2150,"org":2151,"tags":2152,"stars":2070,"repoUrl":2071,"updatedAt":2158},"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},[2153,2154,2155],{"name":2064,"slug":2065,"type":16},{"name":2109,"slug":2110,"type":16},{"name":2156,"slug":2157,"type":16},"Multi-Agent","multi-agent","2026-07-26T05:46:56.388845",{"slug":2160,"name":2160,"fn":2161,"description":2162,"org":2163,"tags":2164,"stars":2070,"repoUrl":2071,"updatedAt":2174},"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},[2165,2168,2171],{"name":2166,"slug":2167,"type":16},"Configuration","configuration",{"name":2169,"slug":2170,"type":16},"Desktop","desktop",{"name":2172,"slug":2173,"type":16},"Themes","themes","2026-07-13T06:23:41.407811",{"slug":2176,"name":2176,"fn":2177,"description":2178,"org":2179,"tags":2180,"stars":2070,"repoUrl":2071,"updatedAt":2185},"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},[2181,2182],{"name":2064,"slug":2065,"type":16},{"name":2183,"slug":2184,"type":16},"Management","management","2026-07-16T06:02:17.297841",{"slug":2187,"name":2187,"fn":2188,"description":2189,"org":2190,"tags":2191,"stars":2070,"repoUrl":2071,"updatedAt":2197},"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},[2192,2193,2196],{"name":2064,"slug":2065,"type":16},{"name":2194,"slug":2195,"type":16},"AI Infrastructure","ai-infrastructure",{"name":2166,"slug":2167,"type":16},"2026-07-13T06:23:08.838181",{"slug":2199,"name":2199,"fn":2200,"description":2201,"org":2202,"tags":2203,"stars":2070,"repoUrl":2071,"updatedAt":2212},"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},[2204,2207,2210],{"name":2205,"slug":2206,"type":16},"Creative","creative",{"name":2208,"slug":2209,"type":16},"Graphics","graphics",{"name":2211,"slug":2199,"type":16},"Image Generation","2026-07-13T06:23:06.189403",69]