[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-letta-github":3,"mdc-gvj7lo-key":39,"related-repo-letta-github":1546,"related-org-letta-github":1664},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":28,"repoUrl":29,"updatedAt":30,"license":31,"forks":32,"topics":33,"repo":34,"sourceUrl":37,"mdContent":38},"github","perform GitHub operations via CLI","GitHub operations via `gh` CLI: issues, PRs, CI runs, code review, API queries. Use when: (1) checking PR status or CI, (2) creating\u002Fcommenting on issues, (3) listing\u002Ffiltering PRs or issues, (4) viewing run logs. NOT for: complex web UI interactions requiring manual browser flows (use browser tooling when available), bulk operations across many repos (script with gh api), or when gh auth is not configured.",{"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,16,19,22,25],{"name":14,"slug":4,"type":15},"GitHub","tag",{"name":17,"slug":18,"type":15},"Code Review","code-review",{"name":20,"slug":21,"type":15},"CLI","cli",{"name":23,"slug":24,"type":15},"Engineering","engineering",{"name":26,"slug":27,"type":15},"Pull Requests","pull-requests",127,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fskills","2026-07-13T06:24:13.767129",null,20,[],{"repoUrl":29,"stars":28,"forks":32,"topics":35,"description":36},[],"A shared repository for skills. Intended to be used with Letta Code, Claude Code, Codex CLI, and other agents that support skills.","https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fskills\u002Ftree\u002FHEAD\u002Ftools\u002Fgithub","---\nname: github\ndescription: \"GitHub operations via `gh` CLI: issues, PRs, CI runs, code review, API queries. Use when: (1) checking PR status or CI, (2) creating\u002Fcommenting on issues, (3) listing\u002Ffiltering PRs or issues, (4) viewing run logs. NOT for: complex web UI interactions requiring manual browser flows (use browser tooling when available), bulk operations across many repos (script with gh api), or when gh auth is not configured.\"\n\n---\n\n# GitHub Skill\n\nUse the `gh` CLI to interact with GitHub repositories, issues, PRs, and CI.\n\n## When to Use\n\n✅ **USE this skill when:**\n\n- Checking PR status, reviews, or merge readiness\n- Viewing CI\u002Fworkflow run status and logs\n- Creating, closing, or commenting on issues\n- Creating or merging pull requests\n- Querying GitHub API for repository data\n- Listing repos, releases, or collaborators\n\n## When NOT to Use\n\n❌ **DON'T use this skill when:**\n\n- Local git operations (commit, push, pull, branch) → use `git` directly\n- Non-GitHub repos (GitLab, Bitbucket, self-hosted) → different CLIs\n- Cloning repositories → use `git clone`\n- Reviewing actual code changes → use `coding-agent` skill\n- Complex multi-file diffs → use `coding-agent` or read files directly\n\n## Setup\n\n```bash\n# Authenticate (one-time)\ngh auth login\n\n# Verify\ngh auth status\n```\n\n## Common Commands\n\n### Pull Requests\n\n```bash\n# List PRs\ngh pr list --repo owner\u002Frepo\n\n# Check CI status\ngh pr checks 55 --repo owner\u002Frepo\n\n# View PR details\ngh pr view 55 --repo owner\u002Frepo\n\n# Create PR\ngh pr create --title \"feat: add feature\" --body \"Description\"\n\n# Merge PR\ngh pr merge 55 --squash --repo owner\u002Frepo\n```\n\n### Issues\n\n```bash\n# List issues\ngh issue list --repo owner\u002Frepo --state open\n\n# Create issue\ngh issue create --title \"Bug: something broken\" --body \"Details...\"\n\n# Close issue\ngh issue close 42 --repo owner\u002Frepo\n```\n\n### CI\u002FWorkflow Runs\n\n```bash\n# List recent runs\ngh run list --repo owner\u002Frepo --limit 10\n\n# View specific run\ngh run view \u003Crun-id> --repo owner\u002Frepo\n\n# View failed step logs only\ngh run view \u003Crun-id> --repo owner\u002Frepo --log-failed\n\n# Re-run failed jobs\ngh run rerun \u003Crun-id> --failed --repo owner\u002Frepo\n```\n\n### API Queries\n\n```bash\n# Get PR with specific fields\ngh api repos\u002Fowner\u002Frepo\u002Fpulls\u002F55 --jq '.title, .state, .user.login'\n\n# List all labels\ngh api repos\u002Fowner\u002Frepo\u002Flabels --jq '.[].name'\n\n# Get repo stats\ngh api repos\u002Fowner\u002Frepo --jq '{stars: .stargazers_count, forks: .forks_count}'\n```\n\n## JSON Output\n\nMost commands support `--json` for structured output with `--jq` filtering:\n\n```bash\ngh issue list --repo owner\u002Frepo --json number,title --jq '.[] | \"\\(.number): \\(.title)\"'\ngh pr list --json number,title,state,mergeable --jq '.[] | select(.mergeable == \"MERGEABLE\")'\n```\n\n## Templates\n\n### PR Review Summary\n\n```bash\n# Get PR overview for review\nPR=55 REPO=owner\u002Frepo\necho \"## PR #$PR Summary\"\ngh pr view $PR --repo $REPO --json title,body,author,additions,deletions,changedFiles \\\n  --jq '\"**\\(.title)** by @\\(.author.login)\\n\\n\\(.body)\\n\\n📊 +\\(.additions) -\\(.deletions) across \\(.changedFiles) files\"'\ngh pr checks $PR --repo $REPO\n```\n\n### Issue Triage\n\n```bash\n# Quick issue triage view\ngh issue list --repo owner\u002Frepo --state open --json number,title,labels,createdAt \\\n  --jq '.[] | \"[\\(.number)] \\(.title) - \\([.labels[].name] | join(\", \")) (\\(.createdAt[:10]))\"'\n```\n\n## Notes\n\n- Always specify `--repo owner\u002Frepo` when not in a git directory\n- Use URLs directly: `gh pr view https:\u002F\u002Fgithub.com\u002Fowner\u002Frepo\u002Fpull\u002F55`\n- Rate limits apply; use `gh api --cache 1h` for repeated queries\n",{"data":40,"body":41},{"name":4,"description":6},{"type":42,"children":43},"root",[44,53,68,75,86,121,127,137,194,200,279,285,290,548,554,712,718,945,951,1099,1105,1126,1224,1230,1236,1408,1414,1494,1500,1540],{"type":45,"tag":46,"props":47,"children":49},"element","h1",{"id":48},"github-skill",[50],{"type":51,"value":52},"text","GitHub Skill",{"type":45,"tag":54,"props":55,"children":56},"p",{},[57,59,66],{"type":51,"value":58},"Use the ",{"type":45,"tag":60,"props":61,"children":63},"code",{"className":62},[],[64],{"type":51,"value":65},"gh",{"type":51,"value":67}," CLI to interact with GitHub repositories, issues, PRs, and CI.",{"type":45,"tag":69,"props":70,"children":72},"h2",{"id":71},"when-to-use",[73],{"type":51,"value":74},"When to Use",{"type":45,"tag":54,"props":76,"children":77},{},[78,80],{"type":51,"value":79},"✅ ",{"type":45,"tag":81,"props":82,"children":83},"strong",{},[84],{"type":51,"value":85},"USE this skill when:",{"type":45,"tag":87,"props":88,"children":89},"ul",{},[90,96,101,106,111,116],{"type":45,"tag":91,"props":92,"children":93},"li",{},[94],{"type":51,"value":95},"Checking PR status, reviews, or merge readiness",{"type":45,"tag":91,"props":97,"children":98},{},[99],{"type":51,"value":100},"Viewing CI\u002Fworkflow run status and logs",{"type":45,"tag":91,"props":102,"children":103},{},[104],{"type":51,"value":105},"Creating, closing, or commenting on issues",{"type":45,"tag":91,"props":107,"children":108},{},[109],{"type":51,"value":110},"Creating or merging pull requests",{"type":45,"tag":91,"props":112,"children":113},{},[114],{"type":51,"value":115},"Querying GitHub API for repository data",{"type":45,"tag":91,"props":117,"children":118},{},[119],{"type":51,"value":120},"Listing repos, releases, or collaborators",{"type":45,"tag":69,"props":122,"children":124},{"id":123},"when-not-to-use",[125],{"type":51,"value":126},"When NOT to Use",{"type":45,"tag":54,"props":128,"children":129},{},[130,132],{"type":51,"value":131},"❌ ",{"type":45,"tag":81,"props":133,"children":134},{},[135],{"type":51,"value":136},"DON'T use this skill when:",{"type":45,"tag":87,"props":138,"children":139},{},[140,153,158,169,182],{"type":45,"tag":91,"props":141,"children":142},{},[143,145,151],{"type":51,"value":144},"Local git operations (commit, push, pull, branch) → use ",{"type":45,"tag":60,"props":146,"children":148},{"className":147},[],[149],{"type":51,"value":150},"git",{"type":51,"value":152}," directly",{"type":45,"tag":91,"props":154,"children":155},{},[156],{"type":51,"value":157},"Non-GitHub repos (GitLab, Bitbucket, self-hosted) → different CLIs",{"type":45,"tag":91,"props":159,"children":160},{},[161,163],{"type":51,"value":162},"Cloning repositories → use ",{"type":45,"tag":60,"props":164,"children":166},{"className":165},[],[167],{"type":51,"value":168},"git clone",{"type":45,"tag":91,"props":170,"children":171},{},[172,174,180],{"type":51,"value":173},"Reviewing actual code changes → use ",{"type":45,"tag":60,"props":175,"children":177},{"className":176},[],[178],{"type":51,"value":179},"coding-agent",{"type":51,"value":181}," skill",{"type":45,"tag":91,"props":183,"children":184},{},[185,187,192],{"type":51,"value":186},"Complex multi-file diffs → use ",{"type":45,"tag":60,"props":188,"children":190},{"className":189},[],[191],{"type":51,"value":179},{"type":51,"value":193}," or read files directly",{"type":45,"tag":69,"props":195,"children":197},{"id":196},"setup",[198],{"type":51,"value":199},"Setup",{"type":45,"tag":201,"props":202,"children":207},"pre",{"className":203,"code":204,"language":205,"meta":206,"style":206},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Authenticate (one-time)\ngh auth login\n\n# Verify\ngh auth status\n","bash","",[208],{"type":45,"tag":60,"props":209,"children":210},{"__ignoreMap":206},[211,223,243,253,262],{"type":45,"tag":212,"props":213,"children":216},"span",{"class":214,"line":215},"line",1,[217],{"type":45,"tag":212,"props":218,"children":220},{"style":219},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[221],{"type":51,"value":222},"# Authenticate (one-time)\n",{"type":45,"tag":212,"props":224,"children":226},{"class":214,"line":225},2,[227,232,238],{"type":45,"tag":212,"props":228,"children":230},{"style":229},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[231],{"type":51,"value":65},{"type":45,"tag":212,"props":233,"children":235},{"style":234},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[236],{"type":51,"value":237}," auth",{"type":45,"tag":212,"props":239,"children":240},{"style":234},[241],{"type":51,"value":242}," login\n",{"type":45,"tag":212,"props":244,"children":246},{"class":214,"line":245},3,[247],{"type":45,"tag":212,"props":248,"children":250},{"emptyLinePlaceholder":249},true,[251],{"type":51,"value":252},"\n",{"type":45,"tag":212,"props":254,"children":256},{"class":214,"line":255},4,[257],{"type":45,"tag":212,"props":258,"children":259},{"style":219},[260],{"type":51,"value":261},"# Verify\n",{"type":45,"tag":212,"props":263,"children":265},{"class":214,"line":264},5,[266,270,274],{"type":45,"tag":212,"props":267,"children":268},{"style":229},[269],{"type":51,"value":65},{"type":45,"tag":212,"props":271,"children":272},{"style":234},[273],{"type":51,"value":237},{"type":45,"tag":212,"props":275,"children":276},{"style":234},[277],{"type":51,"value":278}," status\n",{"type":45,"tag":69,"props":280,"children":282},{"id":281},"common-commands",[283],{"type":51,"value":284},"Common Commands",{"type":45,"tag":286,"props":287,"children":288},"h3",{"id":27},[289],{"type":51,"value":26},{"type":45,"tag":201,"props":291,"children":293},{"className":203,"code":292,"language":205,"meta":206,"style":206},"# List PRs\ngh pr list --repo owner\u002Frepo\n\n# Check CI status\ngh pr checks 55 --repo owner\u002Frepo\n\n# View PR details\ngh pr view 55 --repo owner\u002Frepo\n\n# Create PR\ngh pr create --title \"feat: add feature\" --body \"Description\"\n\n# Merge PR\ngh pr merge 55 --squash --repo owner\u002Frepo\n",[294],{"type":45,"tag":60,"props":295,"children":296},{"__ignoreMap":206},[297,305,332,339,347,377,385,394,423,431,440,497,505,514],{"type":45,"tag":212,"props":298,"children":299},{"class":214,"line":215},[300],{"type":45,"tag":212,"props":301,"children":302},{"style":219},[303],{"type":51,"value":304},"# List PRs\n",{"type":45,"tag":212,"props":306,"children":307},{"class":214,"line":225},[308,312,317,322,327],{"type":45,"tag":212,"props":309,"children":310},{"style":229},[311],{"type":51,"value":65},{"type":45,"tag":212,"props":313,"children":314},{"style":234},[315],{"type":51,"value":316}," pr",{"type":45,"tag":212,"props":318,"children":319},{"style":234},[320],{"type":51,"value":321}," list",{"type":45,"tag":212,"props":323,"children":324},{"style":234},[325],{"type":51,"value":326}," --repo",{"type":45,"tag":212,"props":328,"children":329},{"style":234},[330],{"type":51,"value":331}," owner\u002Frepo\n",{"type":45,"tag":212,"props":333,"children":334},{"class":214,"line":245},[335],{"type":45,"tag":212,"props":336,"children":337},{"emptyLinePlaceholder":249},[338],{"type":51,"value":252},{"type":45,"tag":212,"props":340,"children":341},{"class":214,"line":255},[342],{"type":45,"tag":212,"props":343,"children":344},{"style":219},[345],{"type":51,"value":346},"# Check CI status\n",{"type":45,"tag":212,"props":348,"children":349},{"class":214,"line":264},[350,354,358,363,369,373],{"type":45,"tag":212,"props":351,"children":352},{"style":229},[353],{"type":51,"value":65},{"type":45,"tag":212,"props":355,"children":356},{"style":234},[357],{"type":51,"value":316},{"type":45,"tag":212,"props":359,"children":360},{"style":234},[361],{"type":51,"value":362}," checks",{"type":45,"tag":212,"props":364,"children":366},{"style":365},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[367],{"type":51,"value":368}," 55",{"type":45,"tag":212,"props":370,"children":371},{"style":234},[372],{"type":51,"value":326},{"type":45,"tag":212,"props":374,"children":375},{"style":234},[376],{"type":51,"value":331},{"type":45,"tag":212,"props":378,"children":380},{"class":214,"line":379},6,[381],{"type":45,"tag":212,"props":382,"children":383},{"emptyLinePlaceholder":249},[384],{"type":51,"value":252},{"type":45,"tag":212,"props":386,"children":388},{"class":214,"line":387},7,[389],{"type":45,"tag":212,"props":390,"children":391},{"style":219},[392],{"type":51,"value":393},"# View PR details\n",{"type":45,"tag":212,"props":395,"children":397},{"class":214,"line":396},8,[398,402,406,411,415,419],{"type":45,"tag":212,"props":399,"children":400},{"style":229},[401],{"type":51,"value":65},{"type":45,"tag":212,"props":403,"children":404},{"style":234},[405],{"type":51,"value":316},{"type":45,"tag":212,"props":407,"children":408},{"style":234},[409],{"type":51,"value":410}," view",{"type":45,"tag":212,"props":412,"children":413},{"style":365},[414],{"type":51,"value":368},{"type":45,"tag":212,"props":416,"children":417},{"style":234},[418],{"type":51,"value":326},{"type":45,"tag":212,"props":420,"children":421},{"style":234},[422],{"type":51,"value":331},{"type":45,"tag":212,"props":424,"children":426},{"class":214,"line":425},9,[427],{"type":45,"tag":212,"props":428,"children":429},{"emptyLinePlaceholder":249},[430],{"type":51,"value":252},{"type":45,"tag":212,"props":432,"children":434},{"class":214,"line":433},10,[435],{"type":45,"tag":212,"props":436,"children":437},{"style":219},[438],{"type":51,"value":439},"# Create PR\n",{"type":45,"tag":212,"props":441,"children":443},{"class":214,"line":442},11,[444,448,452,457,462,468,473,478,483,487,492],{"type":45,"tag":212,"props":445,"children":446},{"style":229},[447],{"type":51,"value":65},{"type":45,"tag":212,"props":449,"children":450},{"style":234},[451],{"type":51,"value":316},{"type":45,"tag":212,"props":453,"children":454},{"style":234},[455],{"type":51,"value":456}," create",{"type":45,"tag":212,"props":458,"children":459},{"style":234},[460],{"type":51,"value":461}," --title",{"type":45,"tag":212,"props":463,"children":465},{"style":464},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[466],{"type":51,"value":467}," \"",{"type":45,"tag":212,"props":469,"children":470},{"style":234},[471],{"type":51,"value":472},"feat: add feature",{"type":45,"tag":212,"props":474,"children":475},{"style":464},[476],{"type":51,"value":477},"\"",{"type":45,"tag":212,"props":479,"children":480},{"style":234},[481],{"type":51,"value":482}," --body",{"type":45,"tag":212,"props":484,"children":485},{"style":464},[486],{"type":51,"value":467},{"type":45,"tag":212,"props":488,"children":489},{"style":234},[490],{"type":51,"value":491},"Description",{"type":45,"tag":212,"props":493,"children":494},{"style":464},[495],{"type":51,"value":496},"\"\n",{"type":45,"tag":212,"props":498,"children":500},{"class":214,"line":499},12,[501],{"type":45,"tag":212,"props":502,"children":503},{"emptyLinePlaceholder":249},[504],{"type":51,"value":252},{"type":45,"tag":212,"props":506,"children":508},{"class":214,"line":507},13,[509],{"type":45,"tag":212,"props":510,"children":511},{"style":219},[512],{"type":51,"value":513},"# Merge PR\n",{"type":45,"tag":212,"props":515,"children":517},{"class":214,"line":516},14,[518,522,526,531,535,540,544],{"type":45,"tag":212,"props":519,"children":520},{"style":229},[521],{"type":51,"value":65},{"type":45,"tag":212,"props":523,"children":524},{"style":234},[525],{"type":51,"value":316},{"type":45,"tag":212,"props":527,"children":528},{"style":234},[529],{"type":51,"value":530}," merge",{"type":45,"tag":212,"props":532,"children":533},{"style":365},[534],{"type":51,"value":368},{"type":45,"tag":212,"props":536,"children":537},{"style":234},[538],{"type":51,"value":539}," --squash",{"type":45,"tag":212,"props":541,"children":542},{"style":234},[543],{"type":51,"value":326},{"type":45,"tag":212,"props":545,"children":546},{"style":234},[547],{"type":51,"value":331},{"type":45,"tag":286,"props":549,"children":551},{"id":550},"issues",[552],{"type":51,"value":553},"Issues",{"type":45,"tag":201,"props":555,"children":557},{"className":203,"code":556,"language":205,"meta":206,"style":206},"# List issues\ngh issue list --repo owner\u002Frepo --state open\n\n# Create issue\ngh issue create --title \"Bug: something broken\" --body \"Details...\"\n\n# Close issue\ngh issue close 42 --repo owner\u002Frepo\n",[558],{"type":45,"tag":60,"props":559,"children":560},{"__ignoreMap":206},[561,569,604,611,619,668,675,683],{"type":45,"tag":212,"props":562,"children":563},{"class":214,"line":215},[564],{"type":45,"tag":212,"props":565,"children":566},{"style":219},[567],{"type":51,"value":568},"# List issues\n",{"type":45,"tag":212,"props":570,"children":571},{"class":214,"line":225},[572,576,581,585,589,594,599],{"type":45,"tag":212,"props":573,"children":574},{"style":229},[575],{"type":51,"value":65},{"type":45,"tag":212,"props":577,"children":578},{"style":234},[579],{"type":51,"value":580}," issue",{"type":45,"tag":212,"props":582,"children":583},{"style":234},[584],{"type":51,"value":321},{"type":45,"tag":212,"props":586,"children":587},{"style":234},[588],{"type":51,"value":326},{"type":45,"tag":212,"props":590,"children":591},{"style":234},[592],{"type":51,"value":593}," owner\u002Frepo",{"type":45,"tag":212,"props":595,"children":596},{"style":234},[597],{"type":51,"value":598}," --state",{"type":45,"tag":212,"props":600,"children":601},{"style":234},[602],{"type":51,"value":603}," open\n",{"type":45,"tag":212,"props":605,"children":606},{"class":214,"line":245},[607],{"type":45,"tag":212,"props":608,"children":609},{"emptyLinePlaceholder":249},[610],{"type":51,"value":252},{"type":45,"tag":212,"props":612,"children":613},{"class":214,"line":255},[614],{"type":45,"tag":212,"props":615,"children":616},{"style":219},[617],{"type":51,"value":618},"# Create issue\n",{"type":45,"tag":212,"props":620,"children":621},{"class":214,"line":264},[622,626,630,634,638,642,647,651,655,659,664],{"type":45,"tag":212,"props":623,"children":624},{"style":229},[625],{"type":51,"value":65},{"type":45,"tag":212,"props":627,"children":628},{"style":234},[629],{"type":51,"value":580},{"type":45,"tag":212,"props":631,"children":632},{"style":234},[633],{"type":51,"value":456},{"type":45,"tag":212,"props":635,"children":636},{"style":234},[637],{"type":51,"value":461},{"type":45,"tag":212,"props":639,"children":640},{"style":464},[641],{"type":51,"value":467},{"type":45,"tag":212,"props":643,"children":644},{"style":234},[645],{"type":51,"value":646},"Bug: something broken",{"type":45,"tag":212,"props":648,"children":649},{"style":464},[650],{"type":51,"value":477},{"type":45,"tag":212,"props":652,"children":653},{"style":234},[654],{"type":51,"value":482},{"type":45,"tag":212,"props":656,"children":657},{"style":464},[658],{"type":51,"value":467},{"type":45,"tag":212,"props":660,"children":661},{"style":234},[662],{"type":51,"value":663},"Details...",{"type":45,"tag":212,"props":665,"children":666},{"style":464},[667],{"type":51,"value":496},{"type":45,"tag":212,"props":669,"children":670},{"class":214,"line":379},[671],{"type":45,"tag":212,"props":672,"children":673},{"emptyLinePlaceholder":249},[674],{"type":51,"value":252},{"type":45,"tag":212,"props":676,"children":677},{"class":214,"line":387},[678],{"type":45,"tag":212,"props":679,"children":680},{"style":219},[681],{"type":51,"value":682},"# Close issue\n",{"type":45,"tag":212,"props":684,"children":685},{"class":214,"line":396},[686,690,694,699,704,708],{"type":45,"tag":212,"props":687,"children":688},{"style":229},[689],{"type":51,"value":65},{"type":45,"tag":212,"props":691,"children":692},{"style":234},[693],{"type":51,"value":580},{"type":45,"tag":212,"props":695,"children":696},{"style":234},[697],{"type":51,"value":698}," close",{"type":45,"tag":212,"props":700,"children":701},{"style":365},[702],{"type":51,"value":703}," 42",{"type":45,"tag":212,"props":705,"children":706},{"style":234},[707],{"type":51,"value":326},{"type":45,"tag":212,"props":709,"children":710},{"style":234},[711],{"type":51,"value":331},{"type":45,"tag":286,"props":713,"children":715},{"id":714},"ciworkflow-runs",[716],{"type":51,"value":717},"CI\u002FWorkflow Runs",{"type":45,"tag":201,"props":719,"children":721},{"className":203,"code":720,"language":205,"meta":206,"style":206},"# List recent runs\ngh run list --repo owner\u002Frepo --limit 10\n\n# View specific run\ngh run view \u003Crun-id> --repo owner\u002Frepo\n\n# View failed step logs only\ngh run view \u003Crun-id> --repo owner\u002Frepo --log-failed\n\n# Re-run failed jobs\ngh run rerun \u003Crun-id> --failed --repo owner\u002Frepo\n",[722],{"type":45,"tag":60,"props":723,"children":724},{"__ignoreMap":206},[725,733,767,774,782,826,833,841,885,892,900],{"type":45,"tag":212,"props":726,"children":727},{"class":214,"line":215},[728],{"type":45,"tag":212,"props":729,"children":730},{"style":219},[731],{"type":51,"value":732},"# List recent runs\n",{"type":45,"tag":212,"props":734,"children":735},{"class":214,"line":225},[736,740,745,749,753,757,762],{"type":45,"tag":212,"props":737,"children":738},{"style":229},[739],{"type":51,"value":65},{"type":45,"tag":212,"props":741,"children":742},{"style":234},[743],{"type":51,"value":744}," run",{"type":45,"tag":212,"props":746,"children":747},{"style":234},[748],{"type":51,"value":321},{"type":45,"tag":212,"props":750,"children":751},{"style":234},[752],{"type":51,"value":326},{"type":45,"tag":212,"props":754,"children":755},{"style":234},[756],{"type":51,"value":593},{"type":45,"tag":212,"props":758,"children":759},{"style":234},[760],{"type":51,"value":761}," --limit",{"type":45,"tag":212,"props":763,"children":764},{"style":365},[765],{"type":51,"value":766}," 10\n",{"type":45,"tag":212,"props":768,"children":769},{"class":214,"line":245},[770],{"type":45,"tag":212,"props":771,"children":772},{"emptyLinePlaceholder":249},[773],{"type":51,"value":252},{"type":45,"tag":212,"props":775,"children":776},{"class":214,"line":255},[777],{"type":45,"tag":212,"props":778,"children":779},{"style":219},[780],{"type":51,"value":781},"# View specific run\n",{"type":45,"tag":212,"props":783,"children":784},{"class":214,"line":264},[785,789,793,797,802,807,813,818,822],{"type":45,"tag":212,"props":786,"children":787},{"style":229},[788],{"type":51,"value":65},{"type":45,"tag":212,"props":790,"children":791},{"style":234},[792],{"type":51,"value":744},{"type":45,"tag":212,"props":794,"children":795},{"style":234},[796],{"type":51,"value":410},{"type":45,"tag":212,"props":798,"children":799},{"style":464},[800],{"type":51,"value":801}," \u003C",{"type":45,"tag":212,"props":803,"children":804},{"style":234},[805],{"type":51,"value":806},"run-i",{"type":45,"tag":212,"props":808,"children":810},{"style":809},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[811],{"type":51,"value":812},"d",{"type":45,"tag":212,"props":814,"children":815},{"style":464},[816],{"type":51,"value":817},">",{"type":45,"tag":212,"props":819,"children":820},{"style":234},[821],{"type":51,"value":326},{"type":45,"tag":212,"props":823,"children":824},{"style":234},[825],{"type":51,"value":331},{"type":45,"tag":212,"props":827,"children":828},{"class":214,"line":379},[829],{"type":45,"tag":212,"props":830,"children":831},{"emptyLinePlaceholder":249},[832],{"type":51,"value":252},{"type":45,"tag":212,"props":834,"children":835},{"class":214,"line":387},[836],{"type":45,"tag":212,"props":837,"children":838},{"style":219},[839],{"type":51,"value":840},"# View failed step logs only\n",{"type":45,"tag":212,"props":842,"children":843},{"class":214,"line":396},[844,848,852,856,860,864,868,872,876,880],{"type":45,"tag":212,"props":845,"children":846},{"style":229},[847],{"type":51,"value":65},{"type":45,"tag":212,"props":849,"children":850},{"style":234},[851],{"type":51,"value":744},{"type":45,"tag":212,"props":853,"children":854},{"style":234},[855],{"type":51,"value":410},{"type":45,"tag":212,"props":857,"children":858},{"style":464},[859],{"type":51,"value":801},{"type":45,"tag":212,"props":861,"children":862},{"style":234},[863],{"type":51,"value":806},{"type":45,"tag":212,"props":865,"children":866},{"style":809},[867],{"type":51,"value":812},{"type":45,"tag":212,"props":869,"children":870},{"style":464},[871],{"type":51,"value":817},{"type":45,"tag":212,"props":873,"children":874},{"style":234},[875],{"type":51,"value":326},{"type":45,"tag":212,"props":877,"children":878},{"style":234},[879],{"type":51,"value":593},{"type":45,"tag":212,"props":881,"children":882},{"style":234},[883],{"type":51,"value":884}," --log-failed\n",{"type":45,"tag":212,"props":886,"children":887},{"class":214,"line":425},[888],{"type":45,"tag":212,"props":889,"children":890},{"emptyLinePlaceholder":249},[891],{"type":51,"value":252},{"type":45,"tag":212,"props":893,"children":894},{"class":214,"line":433},[895],{"type":45,"tag":212,"props":896,"children":897},{"style":219},[898],{"type":51,"value":899},"# Re-run failed jobs\n",{"type":45,"tag":212,"props":901,"children":902},{"class":214,"line":442},[903,907,911,916,920,924,928,932,937,941],{"type":45,"tag":212,"props":904,"children":905},{"style":229},[906],{"type":51,"value":65},{"type":45,"tag":212,"props":908,"children":909},{"style":234},[910],{"type":51,"value":744},{"type":45,"tag":212,"props":912,"children":913},{"style":234},[914],{"type":51,"value":915}," rerun",{"type":45,"tag":212,"props":917,"children":918},{"style":464},[919],{"type":51,"value":801},{"type":45,"tag":212,"props":921,"children":922},{"style":234},[923],{"type":51,"value":806},{"type":45,"tag":212,"props":925,"children":926},{"style":809},[927],{"type":51,"value":812},{"type":45,"tag":212,"props":929,"children":930},{"style":464},[931],{"type":51,"value":817},{"type":45,"tag":212,"props":933,"children":934},{"style":234},[935],{"type":51,"value":936}," --failed",{"type":45,"tag":212,"props":938,"children":939},{"style":234},[940],{"type":51,"value":326},{"type":45,"tag":212,"props":942,"children":943},{"style":234},[944],{"type":51,"value":331},{"type":45,"tag":286,"props":946,"children":948},{"id":947},"api-queries",[949],{"type":51,"value":950},"API Queries",{"type":45,"tag":201,"props":952,"children":954},{"className":203,"code":953,"language":205,"meta":206,"style":206},"# Get PR with specific fields\ngh api repos\u002Fowner\u002Frepo\u002Fpulls\u002F55 --jq '.title, .state, .user.login'\n\n# List all labels\ngh api repos\u002Fowner\u002Frepo\u002Flabels --jq '.[].name'\n\n# Get repo stats\ngh api repos\u002Fowner\u002Frepo --jq '{stars: .stargazers_count, forks: .forks_count}'\n",[955],{"type":45,"tag":60,"props":956,"children":957},{"__ignoreMap":206},[958,966,1003,1010,1018,1051,1058,1066],{"type":45,"tag":212,"props":959,"children":960},{"class":214,"line":215},[961],{"type":45,"tag":212,"props":962,"children":963},{"style":219},[964],{"type":51,"value":965},"# Get PR with specific fields\n",{"type":45,"tag":212,"props":967,"children":968},{"class":214,"line":225},[969,973,978,983,988,993,998],{"type":45,"tag":212,"props":970,"children":971},{"style":229},[972],{"type":51,"value":65},{"type":45,"tag":212,"props":974,"children":975},{"style":234},[976],{"type":51,"value":977}," api",{"type":45,"tag":212,"props":979,"children":980},{"style":234},[981],{"type":51,"value":982}," repos\u002Fowner\u002Frepo\u002Fpulls\u002F55",{"type":45,"tag":212,"props":984,"children":985},{"style":234},[986],{"type":51,"value":987}," --jq",{"type":45,"tag":212,"props":989,"children":990},{"style":464},[991],{"type":51,"value":992}," '",{"type":45,"tag":212,"props":994,"children":995},{"style":234},[996],{"type":51,"value":997},".title, .state, .user.login",{"type":45,"tag":212,"props":999,"children":1000},{"style":464},[1001],{"type":51,"value":1002},"'\n",{"type":45,"tag":212,"props":1004,"children":1005},{"class":214,"line":245},[1006],{"type":45,"tag":212,"props":1007,"children":1008},{"emptyLinePlaceholder":249},[1009],{"type":51,"value":252},{"type":45,"tag":212,"props":1011,"children":1012},{"class":214,"line":255},[1013],{"type":45,"tag":212,"props":1014,"children":1015},{"style":219},[1016],{"type":51,"value":1017},"# List all labels\n",{"type":45,"tag":212,"props":1019,"children":1020},{"class":214,"line":264},[1021,1025,1029,1034,1038,1042,1047],{"type":45,"tag":212,"props":1022,"children":1023},{"style":229},[1024],{"type":51,"value":65},{"type":45,"tag":212,"props":1026,"children":1027},{"style":234},[1028],{"type":51,"value":977},{"type":45,"tag":212,"props":1030,"children":1031},{"style":234},[1032],{"type":51,"value":1033}," repos\u002Fowner\u002Frepo\u002Flabels",{"type":45,"tag":212,"props":1035,"children":1036},{"style":234},[1037],{"type":51,"value":987},{"type":45,"tag":212,"props":1039,"children":1040},{"style":464},[1041],{"type":51,"value":992},{"type":45,"tag":212,"props":1043,"children":1044},{"style":234},[1045],{"type":51,"value":1046},".[].name",{"type":45,"tag":212,"props":1048,"children":1049},{"style":464},[1050],{"type":51,"value":1002},{"type":45,"tag":212,"props":1052,"children":1053},{"class":214,"line":379},[1054],{"type":45,"tag":212,"props":1055,"children":1056},{"emptyLinePlaceholder":249},[1057],{"type":51,"value":252},{"type":45,"tag":212,"props":1059,"children":1060},{"class":214,"line":387},[1061],{"type":45,"tag":212,"props":1062,"children":1063},{"style":219},[1064],{"type":51,"value":1065},"# Get repo stats\n",{"type":45,"tag":212,"props":1067,"children":1068},{"class":214,"line":396},[1069,1073,1077,1082,1086,1090,1095],{"type":45,"tag":212,"props":1070,"children":1071},{"style":229},[1072],{"type":51,"value":65},{"type":45,"tag":212,"props":1074,"children":1075},{"style":234},[1076],{"type":51,"value":977},{"type":45,"tag":212,"props":1078,"children":1079},{"style":234},[1080],{"type":51,"value":1081}," repos\u002Fowner\u002Frepo",{"type":45,"tag":212,"props":1083,"children":1084},{"style":234},[1085],{"type":51,"value":987},{"type":45,"tag":212,"props":1087,"children":1088},{"style":464},[1089],{"type":51,"value":992},{"type":45,"tag":212,"props":1091,"children":1092},{"style":234},[1093],{"type":51,"value":1094},"{stars: .stargazers_count, forks: .forks_count}",{"type":45,"tag":212,"props":1096,"children":1097},{"style":464},[1098],{"type":51,"value":1002},{"type":45,"tag":69,"props":1100,"children":1102},{"id":1101},"json-output",[1103],{"type":51,"value":1104},"JSON Output",{"type":45,"tag":54,"props":1106,"children":1107},{},[1108,1110,1116,1118,1124],{"type":51,"value":1109},"Most commands support ",{"type":45,"tag":60,"props":1111,"children":1113},{"className":1112},[],[1114],{"type":51,"value":1115},"--json",{"type":51,"value":1117}," for structured output with ",{"type":45,"tag":60,"props":1119,"children":1121},{"className":1120},[],[1122],{"type":51,"value":1123},"--jq",{"type":51,"value":1125}," filtering:",{"type":45,"tag":201,"props":1127,"children":1129},{"className":203,"code":1128,"language":205,"meta":206,"style":206},"gh issue list --repo owner\u002Frepo --json number,title --jq '.[] | \"\\(.number): \\(.title)\"'\ngh pr list --json number,title,state,mergeable --jq '.[] | select(.mergeable == \"MERGEABLE\")'\n",[1130],{"type":45,"tag":60,"props":1131,"children":1132},{"__ignoreMap":206},[1133,1183],{"type":45,"tag":212,"props":1134,"children":1135},{"class":214,"line":215},[1136,1140,1144,1148,1152,1156,1161,1166,1170,1174,1179],{"type":45,"tag":212,"props":1137,"children":1138},{"style":229},[1139],{"type":51,"value":65},{"type":45,"tag":212,"props":1141,"children":1142},{"style":234},[1143],{"type":51,"value":580},{"type":45,"tag":212,"props":1145,"children":1146},{"style":234},[1147],{"type":51,"value":321},{"type":45,"tag":212,"props":1149,"children":1150},{"style":234},[1151],{"type":51,"value":326},{"type":45,"tag":212,"props":1153,"children":1154},{"style":234},[1155],{"type":51,"value":593},{"type":45,"tag":212,"props":1157,"children":1158},{"style":234},[1159],{"type":51,"value":1160}," --json",{"type":45,"tag":212,"props":1162,"children":1163},{"style":234},[1164],{"type":51,"value":1165}," number,title",{"type":45,"tag":212,"props":1167,"children":1168},{"style":234},[1169],{"type":51,"value":987},{"type":45,"tag":212,"props":1171,"children":1172},{"style":464},[1173],{"type":51,"value":992},{"type":45,"tag":212,"props":1175,"children":1176},{"style":234},[1177],{"type":51,"value":1178},".[] | \"\\(.number): \\(.title)\"",{"type":45,"tag":212,"props":1180,"children":1181},{"style":464},[1182],{"type":51,"value":1002},{"type":45,"tag":212,"props":1184,"children":1185},{"class":214,"line":225},[1186,1190,1194,1198,1202,1207,1211,1215,1220],{"type":45,"tag":212,"props":1187,"children":1188},{"style":229},[1189],{"type":51,"value":65},{"type":45,"tag":212,"props":1191,"children":1192},{"style":234},[1193],{"type":51,"value":316},{"type":45,"tag":212,"props":1195,"children":1196},{"style":234},[1197],{"type":51,"value":321},{"type":45,"tag":212,"props":1199,"children":1200},{"style":234},[1201],{"type":51,"value":1160},{"type":45,"tag":212,"props":1203,"children":1204},{"style":234},[1205],{"type":51,"value":1206}," number,title,state,mergeable",{"type":45,"tag":212,"props":1208,"children":1209},{"style":234},[1210],{"type":51,"value":987},{"type":45,"tag":212,"props":1212,"children":1213},{"style":464},[1214],{"type":51,"value":992},{"type":45,"tag":212,"props":1216,"children":1217},{"style":234},[1218],{"type":51,"value":1219},".[] | select(.mergeable == \"MERGEABLE\")",{"type":45,"tag":212,"props":1221,"children":1222},{"style":464},[1223],{"type":51,"value":1002},{"type":45,"tag":69,"props":1225,"children":1227},{"id":1226},"templates",[1228],{"type":51,"value":1229},"Templates",{"type":45,"tag":286,"props":1231,"children":1233},{"id":1232},"pr-review-summary",[1234],{"type":51,"value":1235},"PR Review Summary",{"type":45,"tag":201,"props":1237,"children":1239},{"className":203,"code":1238,"language":205,"meta":206,"style":206},"# Get PR overview for review\nPR=55 REPO=owner\u002Frepo\necho \"## PR #$PR Summary\"\ngh pr view $PR --repo $REPO --json title,body,author,additions,deletions,changedFiles \\\n  --jq '\"**\\(.title)** by @\\(.author.login)\\n\\n\\(.body)\\n\\n📊 +\\(.additions) -\\(.deletions) across \\(.changedFiles) files\"'\ngh pr checks $PR --repo $REPO\n",[1240],{"type":45,"tag":60,"props":1241,"children":1242},{"__ignoreMap":206},[1243,1251,1283,1315,1359,1380],{"type":45,"tag":212,"props":1244,"children":1245},{"class":214,"line":215},[1246],{"type":45,"tag":212,"props":1247,"children":1248},{"style":219},[1249],{"type":51,"value":1250},"# Get PR overview for review\n",{"type":45,"tag":212,"props":1252,"children":1253},{"class":214,"line":225},[1254,1259,1264,1269,1274,1278],{"type":45,"tag":212,"props":1255,"children":1256},{"style":809},[1257],{"type":51,"value":1258},"PR",{"type":45,"tag":212,"props":1260,"children":1261},{"style":464},[1262],{"type":51,"value":1263},"=",{"type":45,"tag":212,"props":1265,"children":1266},{"style":234},[1267],{"type":51,"value":1268},"55",{"type":45,"tag":212,"props":1270,"children":1271},{"style":809},[1272],{"type":51,"value":1273}," REPO",{"type":45,"tag":212,"props":1275,"children":1276},{"style":464},[1277],{"type":51,"value":1263},{"type":45,"tag":212,"props":1279,"children":1280},{"style":234},[1281],{"type":51,"value":1282},"owner\u002Frepo\n",{"type":45,"tag":212,"props":1284,"children":1285},{"class":214,"line":245},[1286,1292,1296,1301,1306,1311],{"type":45,"tag":212,"props":1287,"children":1289},{"style":1288},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[1290],{"type":51,"value":1291},"echo",{"type":45,"tag":212,"props":1293,"children":1294},{"style":464},[1295],{"type":51,"value":467},{"type":45,"tag":212,"props":1297,"children":1298},{"style":234},[1299],{"type":51,"value":1300},"## PR #",{"type":45,"tag":212,"props":1302,"children":1303},{"style":809},[1304],{"type":51,"value":1305},"$PR",{"type":45,"tag":212,"props":1307,"children":1308},{"style":234},[1309],{"type":51,"value":1310}," Summary",{"type":45,"tag":212,"props":1312,"children":1313},{"style":464},[1314],{"type":51,"value":496},{"type":45,"tag":212,"props":1316,"children":1317},{"class":214,"line":255},[1318,1322,1326,1330,1335,1340,1345,1349,1354],{"type":45,"tag":212,"props":1319,"children":1320},{"style":229},[1321],{"type":51,"value":65},{"type":45,"tag":212,"props":1323,"children":1324},{"style":234},[1325],{"type":51,"value":316},{"type":45,"tag":212,"props":1327,"children":1328},{"style":234},[1329],{"type":51,"value":410},{"type":45,"tag":212,"props":1331,"children":1332},{"style":809},[1333],{"type":51,"value":1334}," $PR ",{"type":45,"tag":212,"props":1336,"children":1337},{"style":234},[1338],{"type":51,"value":1339},"--repo",{"type":45,"tag":212,"props":1341,"children":1342},{"style":809},[1343],{"type":51,"value":1344}," $REPO ",{"type":45,"tag":212,"props":1346,"children":1347},{"style":234},[1348],{"type":51,"value":1115},{"type":45,"tag":212,"props":1350,"children":1351},{"style":234},[1352],{"type":51,"value":1353}," title,body,author,additions,deletions,changedFiles",{"type":45,"tag":212,"props":1355,"children":1356},{"style":809},[1357],{"type":51,"value":1358}," \\\n",{"type":45,"tag":212,"props":1360,"children":1361},{"class":214,"line":264},[1362,1367,1371,1376],{"type":45,"tag":212,"props":1363,"children":1364},{"style":234},[1365],{"type":51,"value":1366},"  --jq",{"type":45,"tag":212,"props":1368,"children":1369},{"style":464},[1370],{"type":51,"value":992},{"type":45,"tag":212,"props":1372,"children":1373},{"style":234},[1374],{"type":51,"value":1375},"\"**\\(.title)** by @\\(.author.login)\\n\\n\\(.body)\\n\\n📊 +\\(.additions) -\\(.deletions) across \\(.changedFiles) files\"",{"type":45,"tag":212,"props":1377,"children":1378},{"style":464},[1379],{"type":51,"value":1002},{"type":45,"tag":212,"props":1381,"children":1382},{"class":214,"line":379},[1383,1387,1391,1395,1399,1403],{"type":45,"tag":212,"props":1384,"children":1385},{"style":229},[1386],{"type":51,"value":65},{"type":45,"tag":212,"props":1388,"children":1389},{"style":234},[1390],{"type":51,"value":316},{"type":45,"tag":212,"props":1392,"children":1393},{"style":234},[1394],{"type":51,"value":362},{"type":45,"tag":212,"props":1396,"children":1397},{"style":809},[1398],{"type":51,"value":1334},{"type":45,"tag":212,"props":1400,"children":1401},{"style":234},[1402],{"type":51,"value":1339},{"type":45,"tag":212,"props":1404,"children":1405},{"style":809},[1406],{"type":51,"value":1407}," $REPO\n",{"type":45,"tag":286,"props":1409,"children":1411},{"id":1410},"issue-triage",[1412],{"type":51,"value":1413},"Issue Triage",{"type":45,"tag":201,"props":1415,"children":1417},{"className":203,"code":1416,"language":205,"meta":206,"style":206},"# Quick issue triage view\ngh issue list --repo owner\u002Frepo --state open --json number,title,labels,createdAt \\\n  --jq '.[] | \"[\\(.number)] \\(.title) - \\([.labels[].name] | join(\", \")) (\\(.createdAt[:10]))\"'\n",[1418],{"type":45,"tag":60,"props":1419,"children":1420},{"__ignoreMap":206},[1421,1429,1474],{"type":45,"tag":212,"props":1422,"children":1423},{"class":214,"line":215},[1424],{"type":45,"tag":212,"props":1425,"children":1426},{"style":219},[1427],{"type":51,"value":1428},"# Quick issue triage view\n",{"type":45,"tag":212,"props":1430,"children":1431},{"class":214,"line":225},[1432,1436,1440,1444,1448,1452,1456,1461,1465,1470],{"type":45,"tag":212,"props":1433,"children":1434},{"style":229},[1435],{"type":51,"value":65},{"type":45,"tag":212,"props":1437,"children":1438},{"style":234},[1439],{"type":51,"value":580},{"type":45,"tag":212,"props":1441,"children":1442},{"style":234},[1443],{"type":51,"value":321},{"type":45,"tag":212,"props":1445,"children":1446},{"style":234},[1447],{"type":51,"value":326},{"type":45,"tag":212,"props":1449,"children":1450},{"style":234},[1451],{"type":51,"value":593},{"type":45,"tag":212,"props":1453,"children":1454},{"style":234},[1455],{"type":51,"value":598},{"type":45,"tag":212,"props":1457,"children":1458},{"style":234},[1459],{"type":51,"value":1460}," open",{"type":45,"tag":212,"props":1462,"children":1463},{"style":234},[1464],{"type":51,"value":1160},{"type":45,"tag":212,"props":1466,"children":1467},{"style":234},[1468],{"type":51,"value":1469}," number,title,labels,createdAt",{"type":45,"tag":212,"props":1471,"children":1472},{"style":809},[1473],{"type":51,"value":1358},{"type":45,"tag":212,"props":1475,"children":1476},{"class":214,"line":245},[1477,1481,1485,1490],{"type":45,"tag":212,"props":1478,"children":1479},{"style":234},[1480],{"type":51,"value":1366},{"type":45,"tag":212,"props":1482,"children":1483},{"style":464},[1484],{"type":51,"value":992},{"type":45,"tag":212,"props":1486,"children":1487},{"style":234},[1488],{"type":51,"value":1489},".[] | \"[\\(.number)] \\(.title) - \\([.labels[].name] | join(\", \")) (\\(.createdAt[:10]))\"",{"type":45,"tag":212,"props":1491,"children":1492},{"style":464},[1493],{"type":51,"value":1002},{"type":45,"tag":69,"props":1495,"children":1497},{"id":1496},"notes",[1498],{"type":51,"value":1499},"Notes",{"type":45,"tag":87,"props":1501,"children":1502},{},[1503,1516,1527],{"type":45,"tag":91,"props":1504,"children":1505},{},[1506,1508,1514],{"type":51,"value":1507},"Always specify ",{"type":45,"tag":60,"props":1509,"children":1511},{"className":1510},[],[1512],{"type":51,"value":1513},"--repo owner\u002Frepo",{"type":51,"value":1515}," when not in a git directory",{"type":45,"tag":91,"props":1517,"children":1518},{},[1519,1521],{"type":51,"value":1520},"Use URLs directly: ",{"type":45,"tag":60,"props":1522,"children":1524},{"className":1523},[],[1525],{"type":51,"value":1526},"gh pr view https:\u002F\u002Fgithub.com\u002Fowner\u002Frepo\u002Fpull\u002F55",{"type":45,"tag":91,"props":1528,"children":1529},{},[1530,1532,1538],{"type":51,"value":1531},"Rate limits apply; use ",{"type":45,"tag":60,"props":1533,"children":1535},{"className":1534},[],[1536],{"type":51,"value":1537},"gh api --cache 1h",{"type":51,"value":1539}," for repeated queries",{"type":45,"tag":1541,"props":1542,"children":1543},"style",{},[1544],{"type":51,"value":1545},"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":1547,"total":1663},[1548,1562,1579,1598,1613,1634,1644],{"slug":1549,"name":1549,"fn":1550,"description":1551,"org":1552,"tags":1553,"stars":28,"repoUrl":29,"updatedAt":1561},"1password","manage secrets with 1Password CLI","Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in (single or multi-account), or reading\u002Finjecting\u002Frunning secrets via op.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1554,1557,1558],{"name":1555,"slug":1556,"type":15},"Authentication","authentication",{"name":20,"slug":21,"type":15},{"name":1559,"slug":1560,"type":15},"Security","security","2026-07-13T06:24:39.504387",{"slug":1563,"name":1563,"fn":1564,"description":1565,"org":1566,"tags":1567,"stars":28,"repoUrl":29,"updatedAt":1578},"agent-slack","automate Slack messaging and workflows","Slack automation CLI — read\u002Fsend\u002Fsearch messages, browse threads and channels, manage channels, download attachments, look up users, and run workflows.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1568,1571,1572,1575],{"name":1569,"slug":1570,"type":15},"Automation","automation",{"name":20,"slug":21,"type":15},{"name":1573,"slug":1574,"type":15},"Messaging","messaging",{"name":1576,"slug":1577,"type":15},"Slack","slack","2026-07-13T06:23:51.908511",{"slug":1580,"name":1580,"fn":1581,"description":1582,"org":1583,"tags":1584,"stars":28,"repoUrl":29,"updatedAt":1597},"ai-news","fetch and summarize AI news","Fetch and summarize recent AI news from curated RSS feeds (Hugging Face, VentureBeat, The Verge, OpenAI, Anthropic, DeepMind, etc.) and YouTube channels (Yannic Kilcher, Two Minute Papers, AI Explained, etc.). Also fetches full transcripts for specific YouTube videos. Use when the user asks about recent AI news, what's happened in AI lately, summaries of AI research or product announcements, or wants a digest of what's going on in the AI space.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1585,1588,1591,1594],{"name":1586,"slug":1587,"type":15},"Communications","communications",{"name":1589,"slug":1590,"type":15},"LLM","llm",{"name":1592,"slug":1593,"type":15},"Research","research",{"name":1595,"slug":1596,"type":15},"Summarization","summarization","2026-07-13T06:24:20.520223",{"slug":1599,"name":1599,"fn":1600,"description":1601,"org":1602,"tags":1603,"stars":28,"repoUrl":29,"updatedAt":1612},"creating-letta-code-channels","build and debug Letta Code channels","Builds and debugs Letta Code channels, including first-party channel adapters and dynamic user channel plugins under ~\u002F.letta\u002Fchannels. Use when adding Telegram, WhatsApp, Bluesky, Slack, Discord, or custom channel support; testing channel routing, pairing, MessageChannel, runtime dependencies, or channel plugin manifests.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1604,1607,1610,1611],{"name":1605,"slug":1606,"type":15},"Agents","agents",{"name":1608,"slug":1609,"type":15},"API Development","api-development",{"name":1573,"slug":1574,"type":15},{"name":1576,"slug":1577,"type":15},"2026-07-13T06:25:55.843495",{"slug":1614,"name":1614,"fn":1615,"description":1616,"org":1617,"tags":1618,"stars":28,"repoUrl":29,"updatedAt":1633},"datadog","query Datadog observability data","Query Datadog observability data (logs, metrics, monitors, dashboards, hosts) via direct API. Use when investigating production issues, checking monitors, searching logs, or accessing Datadog data.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1619,1621,1624,1627,1630],{"name":1620,"slug":1614,"type":15},"Datadog",{"name":1622,"slug":1623,"type":15},"Logs","logs",{"name":1625,"slug":1626,"type":15},"Metrics","metrics",{"name":1628,"slug":1629,"type":15},"Monitoring","monitoring",{"name":1631,"slug":1632,"type":15},"Observability","observability","2026-07-13T06:24:27.990605",{"slug":1635,"name":1635,"fn":1636,"description":1637,"org":1638,"tags":1639,"stars":28,"repoUrl":29,"updatedAt":1643},"discord","automate Discord server and channel tasks","Discord automation CLI — send\u002Fread\u002Fsearch messages, manage channels and servers, react, create threads, pin messages, and look up users.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1640,1641,1642],{"name":1569,"slug":1570,"type":15},{"name":20,"slug":21,"type":15},{"name":1573,"slug":1574,"type":15},"2026-07-13T06:24:26.62387",{"slug":1645,"name":1645,"fn":1646,"description":1647,"org":1648,"tags":1649,"stars":28,"repoUrl":29,"updatedAt":1662},"doc","create and edit Word documents","Use when the task involves reading, creating, or editing `.docx` documents, especially when formatting or layout fidelity matters; prefer `python-docx` plus the bundled `scripts\u002Frender_docx.py` for visual checks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1650,1653,1656,1659],{"name":1651,"slug":1652,"type":15},"Documents","documents",{"name":1654,"slug":1655,"type":15},"DOCX","docx",{"name":1657,"slug":1658,"type":15},"Office","office",{"name":1660,"slug":1661,"type":15},"Word","word","2026-07-13T06:23:44.299568",45,{"items":1665,"total":1816},[1666,1678,1693,1705,1717,1731,1741,1750,1762,1778,1789,1801],{"slug":1667,"name":1667,"fn":1668,"description":1669,"org":1670,"tags":1671,"stars":1675,"repoUrl":1676,"updatedAt":1677},"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},[1672,1673,1674],{"name":1605,"slug":1606,"type":15},{"name":1569,"slug":1570,"type":15},{"name":14,"slug":4,"type":15},2831,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fletta-code","2026-07-13T06:22:58.45767",{"slug":1679,"name":1680,"fn":1681,"description":1682,"org":1683,"tags":1684,"stars":1675,"repoUrl":1676,"updatedAt":1692},"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},[1685,1686,1689],{"name":1605,"slug":1606,"type":15},{"name":1687,"slug":1688,"type":15},"AI Context","ai-context",{"name":1690,"slug":1691,"type":15},"Debugging","debugging","2026-07-13T06:22:50.151002",{"slug":1694,"name":1694,"fn":1695,"description":1696,"org":1697,"tags":1698,"stars":1675,"repoUrl":1676,"updatedAt":1704},"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},[1699,1700,1701],{"name":1605,"slug":1606,"type":15},{"name":1569,"slug":1570,"type":15},{"name":1702,"slug":1703,"type":15},"MCP","mcp","2026-07-13T06:23:37.646079",{"slug":1706,"name":1706,"fn":1707,"description":1708,"org":1709,"tags":1710,"stars":1675,"repoUrl":1676,"updatedAt":1716},"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},[1711,1712,1713],{"name":1605,"slug":1606,"type":15},{"name":1569,"slug":1570,"type":15},{"name":1714,"slug":1715,"type":15},"Coding","coding","2026-07-23T05:42:38.133565",{"slug":1718,"name":1718,"fn":1719,"description":1720,"org":1721,"tags":1722,"stars":1675,"repoUrl":1676,"updatedAt":1730},"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},[1723,1724,1727],{"name":1605,"slug":1606,"type":15},{"name":1725,"slug":1726,"type":15},"Documentation","documentation",{"name":1728,"slug":1729,"type":15},"Plugin Development","plugin-development","2026-07-13T06:22:56.998659",{"slug":1732,"name":1732,"fn":1733,"description":1734,"org":1735,"tags":1736,"stars":1675,"repoUrl":1676,"updatedAt":1740},"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},[1737,1738,1739],{"name":1605,"slug":1606,"type":15},{"name":1569,"slug":1570,"type":15},{"name":20,"slug":21,"type":15},"2026-07-13T06:23:18.266798",{"slug":1742,"name":1742,"fn":1743,"description":1744,"org":1745,"tags":1746,"stars":1675,"repoUrl":1676,"updatedAt":1749},"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},[1747,1748],{"name":20,"slug":21,"type":15},{"name":23,"slug":24,"type":15},"2026-07-13T06:23:27.465985",{"slug":1751,"name":1751,"fn":1752,"description":1753,"org":1754,"tags":1755,"stars":1675,"repoUrl":1676,"updatedAt":1761},"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},[1756,1757,1758],{"name":1605,"slug":1606,"type":15},{"name":1714,"slug":1715,"type":15},{"name":1759,"slug":1760,"type":15},"Multi-Agent","multi-agent","2026-07-26T05:46:56.388845",{"slug":1763,"name":1763,"fn":1764,"description":1765,"org":1766,"tags":1767,"stars":1675,"repoUrl":1676,"updatedAt":1777},"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},[1768,1771,1774],{"name":1769,"slug":1770,"type":15},"Configuration","configuration",{"name":1772,"slug":1773,"type":15},"Desktop","desktop",{"name":1775,"slug":1776,"type":15},"Themes","themes","2026-07-13T06:23:41.407811",{"slug":1779,"name":1779,"fn":1780,"description":1781,"org":1782,"tags":1783,"stars":1675,"repoUrl":1676,"updatedAt":1788},"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},[1784,1785],{"name":1605,"slug":1606,"type":15},{"name":1786,"slug":1787,"type":15},"Management","management","2026-07-16T06:02:17.297841",{"slug":1790,"name":1790,"fn":1791,"description":1792,"org":1793,"tags":1794,"stars":1675,"repoUrl":1676,"updatedAt":1800},"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},[1795,1796,1799],{"name":1605,"slug":1606,"type":15},{"name":1797,"slug":1798,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1769,"slug":1770,"type":15},"2026-07-13T06:23:08.838181",{"slug":1802,"name":1802,"fn":1803,"description":1804,"org":1805,"tags":1806,"stars":1675,"repoUrl":1676,"updatedAt":1815},"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},[1807,1810,1813],{"name":1808,"slug":1809,"type":15},"Creative","creative",{"name":1811,"slug":1812,"type":15},"Graphics","graphics",{"name":1814,"slug":1802,"type":15},"Image Generation","2026-07-13T06:23:06.189403",69]