[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-letta-linear-cli":3,"mdc--e9g9zy-key":37,"related-org-letta-linear-cli":1233,"related-repo-letta-linear-cli":1392},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":35,"mdContent":36},"linear-cli","manage Linear issues via CLI","Manage Linear issues from the command line using the linear cli. This skill allows automating linear management.",{"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,23],{"name":14,"slug":15,"type":16},"Linear","linear","tag",{"name":18,"slug":19,"type":16},"Automation","automation",{"name":21,"slug":22,"type":16},"CLI","cli",{"name":24,"slug":25,"type":16},"Task Management","task-management",127,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fskills","2026-07-13T06:24:19.223928",null,20,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":34},[],"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\u002Flinear","---\nname: linear-cli\ndescription: Manage Linear issues from the command line using the linear cli. This skill allows automating linear management.\n---\n\n# Linear CLI\n\nA CLI to manage Linear issues from the command line, with git and jj integration.\n\n## Prerequisites\n\nThe `linear` command must be available on PATH. To check:\n\n```bash\nlinear --version\n```\n\nIf not installed, follow the instructions at:\nhttps:\u002F\u002Fgithub.com\u002Fschpet\u002Flinear-cli?tab=readme-ov-file#install\n\n## Best Practices for Markdown Content\n\nWhen working with issue descriptions or comment bodies that contain markdown, **always prefer using file-based flags** instead of passing content as command-line arguments:\n\n- Use `--description-file` for `issue create` and `issue update` commands\n- Use `--body-file` for `comment add` and `comment update` commands\n\n**Why use file-based flags:**\n\n- Ensures proper formatting in the Linear web UI\n- Avoids shell escaping issues with newlines and special characters\n- Prevents literal `\\n` sequences from appearing in markdown\n- Makes it easier to work with multi-line content\n\n**Example workflow:**\n\n```bash\n# Write markdown to a temporary file\ncat > \u002Ftmp\u002Fdescription.md \u003C\u003C'EOF'\n## Summary\n\n- First item\n- Second item\n\n## Details\n\nThis is a detailed description with proper formatting.\nEOF\n\n# Create issue using the file\nlinear issue create --title \"My Issue\" --description-file \u002Ftmp\u002Fdescription.md\n\n# Or for comments\nlinear issue comment add ENG-123 --body-file \u002Ftmp\u002Fcomment.md\n```\n\n**Only use inline flags** (`--description`, `--body`) for simple, single-line content.\n\n## Available Commands\n\n```\nlinear auth               # Manage Linear authentication\nlinear issue              # Manage Linear issues\nlinear team               # Manage Linear teams\nlinear project            # Manage Linear projects\nlinear project-update     # Manage project status updates\nlinear cycle              # Manage Linear team cycles\nlinear milestone          # Manage Linear project milestones\nlinear initiative         # Manage Linear initiatives\nlinear initiative-update  # Manage initiative status updates (timeline posts)\nlinear label              # Manage Linear issue labels\nlinear document           # Manage Linear documents\nlinear config             # Interactively generate .linear.toml configuration\nlinear schema             # Print the GraphQL schema to stdout\nlinear api                # Make a raw GraphQL API request\n```\n\n## Discovering Options\n\nTo see available subcommands and flags, run `--help` on any command:\n\n```bash\nlinear --help\nlinear issue --help\nlinear issue list --help\nlinear issue create --help\n```\n\nEach command has detailed help output describing all available flags and options.\n\n## Using the Linear GraphQL API Directly\n\n**Prefer the CLI for all supported operations.** The `api` command should only be used as a fallback for queries not covered by the CLI.\n\n### Check the schema for available types and fields\n\nWrite the schema to a tempfile, then search it:\n\n```bash\nlinear schema -o \"${TMPDIR:-\u002Ftmp}\u002Flinear-schema.graphql\"\ngrep -i \"cycle\" \"${TMPDIR:-\u002Ftmp}\u002Flinear-schema.graphql\"\ngrep -A 30 \"^type Issue \" \"${TMPDIR:-\u002Ftmp}\u002Flinear-schema.graphql\"\n```\n\n### Make a GraphQL request\n\n**Important:** GraphQL queries containing non-null type markers (e.g. `String` followed by an exclamation mark) must be passed via heredoc stdin to avoid escaping issues. Simple queries without those markers can be passed inline.\n\n```bash\n# Simple query (no type markers, so inline is fine)\nlinear api '{ viewer { id name email } }'\n\n# Query with variables — use heredoc to avoid escaping issues\nlinear api --variable teamId=abc123 \u003C\u003C'GRAPHQL'\nquery($teamId: String!) { team(id: $teamId) { name } }\nGRAPHQL\n\n# Search issues by text\nlinear api --variable term=onboarding \u003C\u003C'GRAPHQL'\nquery($term: String!) { searchIssues(term: $term, first: 20) { nodes { identifier title state { name } } } }\nGRAPHQL\n\n# Pipe to jq for filtering\nlinear api '{ issues(first: 5) { nodes { identifier title } } }' | jq '.data.issues.nodes[].title'\n```\n\n### Advanced: Using curl directly\n\nFor cases where you need full HTTP control, use `linear auth token`:\n\n```bash\ncurl -s -X POST https:\u002F\u002Fapi.linear.app\u002Fgraphql \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -H \"Authorization: $(linear auth token)\" \\\n  -d '{\"query\": \"{ viewer { id } }\"}'\n```\n",{"data":38,"body":39},{"name":4,"description":6},{"type":40,"children":41},"root",[42,50,56,63,76,104,117,123,136,195,203,234,242,487,513,519,529,535,548,621,626,632,650,657,662,835,841,859,1083,1089,1102,1227],{"type":43,"tag":44,"props":45,"children":46},"element","h1",{"id":4},[47],{"type":48,"value":49},"text","Linear CLI",{"type":43,"tag":51,"props":52,"children":53},"p",{},[54],{"type":48,"value":55},"A CLI to manage Linear issues from the command line, with git and jj integration.",{"type":43,"tag":57,"props":58,"children":60},"h2",{"id":59},"prerequisites",[61],{"type":48,"value":62},"Prerequisites",{"type":43,"tag":51,"props":64,"children":65},{},[66,68,74],{"type":48,"value":67},"The ",{"type":43,"tag":69,"props":70,"children":72},"code",{"className":71},[],[73],{"type":48,"value":15},{"type":48,"value":75}," command must be available on PATH. To check:",{"type":43,"tag":77,"props":78,"children":83},"pre",{"className":79,"code":80,"language":81,"meta":82,"style":82},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","linear --version\n","bash","",[84],{"type":43,"tag":69,"props":85,"children":86},{"__ignoreMap":82},[87],{"type":43,"tag":88,"props":89,"children":92},"span",{"class":90,"line":91},"line",1,[93,98],{"type":43,"tag":88,"props":94,"children":96},{"style":95},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[97],{"type":48,"value":15},{"type":43,"tag":88,"props":99,"children":101},{"style":100},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[102],{"type":48,"value":103}," --version\n",{"type":43,"tag":51,"props":105,"children":106},{},[107,109],{"type":48,"value":108},"If not installed, follow the instructions at:\n",{"type":43,"tag":110,"props":111,"children":115},"a",{"href":112,"rel":113},"https:\u002F\u002Fgithub.com\u002Fschpet\u002Flinear-cli?tab=readme-ov-file#install",[114],"nofollow",[116],{"type":48,"value":112},{"type":43,"tag":57,"props":118,"children":120},{"id":119},"best-practices-for-markdown-content",[121],{"type":48,"value":122},"Best Practices for Markdown Content",{"type":43,"tag":51,"props":124,"children":125},{},[126,128,134],{"type":48,"value":127},"When working with issue descriptions or comment bodies that contain markdown, ",{"type":43,"tag":129,"props":130,"children":131},"strong",{},[132],{"type":48,"value":133},"always prefer using file-based flags",{"type":48,"value":135}," instead of passing content as command-line arguments:",{"type":43,"tag":137,"props":138,"children":139},"ul",{},[140,170],{"type":43,"tag":141,"props":142,"children":143},"li",{},[144,146,152,154,160,162,168],{"type":48,"value":145},"Use ",{"type":43,"tag":69,"props":147,"children":149},{"className":148},[],[150],{"type":48,"value":151},"--description-file",{"type":48,"value":153}," for ",{"type":43,"tag":69,"props":155,"children":157},{"className":156},[],[158],{"type":48,"value":159},"issue create",{"type":48,"value":161}," and ",{"type":43,"tag":69,"props":163,"children":165},{"className":164},[],[166],{"type":48,"value":167},"issue update",{"type":48,"value":169}," commands",{"type":43,"tag":141,"props":171,"children":172},{},[173,174,180,181,187,188,194],{"type":48,"value":145},{"type":43,"tag":69,"props":175,"children":177},{"className":176},[],[178],{"type":48,"value":179},"--body-file",{"type":48,"value":153},{"type":43,"tag":69,"props":182,"children":184},{"className":183},[],[185],{"type":48,"value":186},"comment add",{"type":48,"value":161},{"type":43,"tag":69,"props":189,"children":191},{"className":190},[],[192],{"type":48,"value":193},"comment update",{"type":48,"value":169},{"type":43,"tag":51,"props":196,"children":197},{},[198],{"type":43,"tag":129,"props":199,"children":200},{},[201],{"type":48,"value":202},"Why use file-based flags:",{"type":43,"tag":137,"props":204,"children":205},{},[206,211,216,229],{"type":43,"tag":141,"props":207,"children":208},{},[209],{"type":48,"value":210},"Ensures proper formatting in the Linear web UI",{"type":43,"tag":141,"props":212,"children":213},{},[214],{"type":48,"value":215},"Avoids shell escaping issues with newlines and special characters",{"type":43,"tag":141,"props":217,"children":218},{},[219,221,227],{"type":48,"value":220},"Prevents literal ",{"type":43,"tag":69,"props":222,"children":224},{"className":223},[],[225],{"type":48,"value":226},"\\n",{"type":48,"value":228}," sequences from appearing in markdown",{"type":43,"tag":141,"props":230,"children":231},{},[232],{"type":48,"value":233},"Makes it easier to work with multi-line content",{"type":43,"tag":51,"props":235,"children":236},{},[237],{"type":43,"tag":129,"props":238,"children":239},{},[240],{"type":48,"value":241},"Example workflow:",{"type":43,"tag":77,"props":243,"children":245},{"className":79,"code":244,"language":81,"meta":82,"style":82},"# Write markdown to a temporary file\ncat > \u002Ftmp\u002Fdescription.md \u003C\u003C'EOF'\n## Summary\n\n- First item\n- Second item\n\n## Details\n\nThis is a detailed description with proper formatting.\nEOF\n\n# Create issue using the file\nlinear issue create --title \"My Issue\" --description-file \u002Ftmp\u002Fdescription.md\n\n# Or for comments\nlinear issue comment add ENG-123 --body-file \u002Ftmp\u002Fcomment.md\n",[246],{"type":43,"tag":69,"props":247,"children":248},{"__ignoreMap":82},[249,258,288,297,307,316,325,333,342,350,359,368,376,385,433,441,450],{"type":43,"tag":88,"props":250,"children":251},{"class":90,"line":91},[252],{"type":43,"tag":88,"props":253,"children":255},{"style":254},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[256],{"type":48,"value":257},"# Write markdown to a temporary file\n",{"type":43,"tag":88,"props":259,"children":261},{"class":90,"line":260},2,[262,267,273,278,283],{"type":43,"tag":88,"props":263,"children":264},{"style":95},[265],{"type":48,"value":266},"cat",{"type":43,"tag":88,"props":268,"children":270},{"style":269},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[271],{"type":48,"value":272}," >",{"type":43,"tag":88,"props":274,"children":275},{"style":100},[276],{"type":48,"value":277}," \u002Ftmp\u002Fdescription.md",{"type":43,"tag":88,"props":279,"children":280},{"style":269},[281],{"type":48,"value":282}," \u003C\u003C",{"type":43,"tag":88,"props":284,"children":285},{"style":269},[286],{"type":48,"value":287},"'EOF'\n",{"type":43,"tag":88,"props":289,"children":291},{"class":90,"line":290},3,[292],{"type":43,"tag":88,"props":293,"children":294},{"style":100},[295],{"type":48,"value":296},"## Summary\n",{"type":43,"tag":88,"props":298,"children":300},{"class":90,"line":299},4,[301],{"type":43,"tag":88,"props":302,"children":304},{"emptyLinePlaceholder":303},true,[305],{"type":48,"value":306},"\n",{"type":43,"tag":88,"props":308,"children":310},{"class":90,"line":309},5,[311],{"type":43,"tag":88,"props":312,"children":313},{"style":100},[314],{"type":48,"value":315},"- First item\n",{"type":43,"tag":88,"props":317,"children":319},{"class":90,"line":318},6,[320],{"type":43,"tag":88,"props":321,"children":322},{"style":100},[323],{"type":48,"value":324},"- Second item\n",{"type":43,"tag":88,"props":326,"children":328},{"class":90,"line":327},7,[329],{"type":43,"tag":88,"props":330,"children":331},{"emptyLinePlaceholder":303},[332],{"type":48,"value":306},{"type":43,"tag":88,"props":334,"children":336},{"class":90,"line":335},8,[337],{"type":43,"tag":88,"props":338,"children":339},{"style":100},[340],{"type":48,"value":341},"## Details\n",{"type":43,"tag":88,"props":343,"children":345},{"class":90,"line":344},9,[346],{"type":43,"tag":88,"props":347,"children":348},{"emptyLinePlaceholder":303},[349],{"type":48,"value":306},{"type":43,"tag":88,"props":351,"children":353},{"class":90,"line":352},10,[354],{"type":43,"tag":88,"props":355,"children":356},{"style":100},[357],{"type":48,"value":358},"This is a detailed description with proper formatting.\n",{"type":43,"tag":88,"props":360,"children":362},{"class":90,"line":361},11,[363],{"type":43,"tag":88,"props":364,"children":365},{"style":269},[366],{"type":48,"value":367},"EOF\n",{"type":43,"tag":88,"props":369,"children":371},{"class":90,"line":370},12,[372],{"type":43,"tag":88,"props":373,"children":374},{"emptyLinePlaceholder":303},[375],{"type":48,"value":306},{"type":43,"tag":88,"props":377,"children":379},{"class":90,"line":378},13,[380],{"type":43,"tag":88,"props":381,"children":382},{"style":254},[383],{"type":48,"value":384},"# Create issue using the file\n",{"type":43,"tag":88,"props":386,"children":388},{"class":90,"line":387},14,[389,393,398,403,408,413,418,423,428],{"type":43,"tag":88,"props":390,"children":391},{"style":95},[392],{"type":48,"value":15},{"type":43,"tag":88,"props":394,"children":395},{"style":100},[396],{"type":48,"value":397}," issue",{"type":43,"tag":88,"props":399,"children":400},{"style":100},[401],{"type":48,"value":402}," create",{"type":43,"tag":88,"props":404,"children":405},{"style":100},[406],{"type":48,"value":407}," --title",{"type":43,"tag":88,"props":409,"children":410},{"style":269},[411],{"type":48,"value":412}," \"",{"type":43,"tag":88,"props":414,"children":415},{"style":100},[416],{"type":48,"value":417},"My Issue",{"type":43,"tag":88,"props":419,"children":420},{"style":269},[421],{"type":48,"value":422},"\"",{"type":43,"tag":88,"props":424,"children":425},{"style":100},[426],{"type":48,"value":427}," --description-file",{"type":43,"tag":88,"props":429,"children":430},{"style":100},[431],{"type":48,"value":432}," \u002Ftmp\u002Fdescription.md\n",{"type":43,"tag":88,"props":434,"children":436},{"class":90,"line":435},15,[437],{"type":43,"tag":88,"props":438,"children":439},{"emptyLinePlaceholder":303},[440],{"type":48,"value":306},{"type":43,"tag":88,"props":442,"children":444},{"class":90,"line":443},16,[445],{"type":43,"tag":88,"props":446,"children":447},{"style":254},[448],{"type":48,"value":449},"# Or for comments\n",{"type":43,"tag":88,"props":451,"children":453},{"class":90,"line":452},17,[454,458,462,467,472,477,482],{"type":43,"tag":88,"props":455,"children":456},{"style":95},[457],{"type":48,"value":15},{"type":43,"tag":88,"props":459,"children":460},{"style":100},[461],{"type":48,"value":397},{"type":43,"tag":88,"props":463,"children":464},{"style":100},[465],{"type":48,"value":466}," comment",{"type":43,"tag":88,"props":468,"children":469},{"style":100},[470],{"type":48,"value":471}," add",{"type":43,"tag":88,"props":473,"children":474},{"style":100},[475],{"type":48,"value":476}," ENG-123",{"type":43,"tag":88,"props":478,"children":479},{"style":100},[480],{"type":48,"value":481}," --body-file",{"type":43,"tag":88,"props":483,"children":484},{"style":100},[485],{"type":48,"value":486}," \u002Ftmp\u002Fcomment.md\n",{"type":43,"tag":51,"props":488,"children":489},{},[490,495,497,503,505,511],{"type":43,"tag":129,"props":491,"children":492},{},[493],{"type":48,"value":494},"Only use inline flags",{"type":48,"value":496}," (",{"type":43,"tag":69,"props":498,"children":500},{"className":499},[],[501],{"type":48,"value":502},"--description",{"type":48,"value":504},", ",{"type":43,"tag":69,"props":506,"children":508},{"className":507},[],[509],{"type":48,"value":510},"--body",{"type":48,"value":512},") for simple, single-line content.",{"type":43,"tag":57,"props":514,"children":516},{"id":515},"available-commands",[517],{"type":48,"value":518},"Available Commands",{"type":43,"tag":77,"props":520,"children":524},{"className":521,"code":523,"language":48},[522],"language-text","linear auth               # Manage Linear authentication\nlinear issue              # Manage Linear issues\nlinear team               # Manage Linear teams\nlinear project            # Manage Linear projects\nlinear project-update     # Manage project status updates\nlinear cycle              # Manage Linear team cycles\nlinear milestone          # Manage Linear project milestones\nlinear initiative         # Manage Linear initiatives\nlinear initiative-update  # Manage initiative status updates (timeline posts)\nlinear label              # Manage Linear issue labels\nlinear document           # Manage Linear documents\nlinear config             # Interactively generate .linear.toml configuration\nlinear schema             # Print the GraphQL schema to stdout\nlinear api                # Make a raw GraphQL API request\n",[525],{"type":43,"tag":69,"props":526,"children":527},{"__ignoreMap":82},[528],{"type":48,"value":523},{"type":43,"tag":57,"props":530,"children":532},{"id":531},"discovering-options",[533],{"type":48,"value":534},"Discovering Options",{"type":43,"tag":51,"props":536,"children":537},{},[538,540,546],{"type":48,"value":539},"To see available subcommands and flags, run ",{"type":43,"tag":69,"props":541,"children":543},{"className":542},[],[544],{"type":48,"value":545},"--help",{"type":48,"value":547}," on any command:",{"type":43,"tag":77,"props":549,"children":551},{"className":79,"code":550,"language":81,"meta":82,"style":82},"linear --help\nlinear issue --help\nlinear issue list --help\nlinear issue create --help\n",[552],{"type":43,"tag":69,"props":553,"children":554},{"__ignoreMap":82},[555,567,582,602],{"type":43,"tag":88,"props":556,"children":557},{"class":90,"line":91},[558,562],{"type":43,"tag":88,"props":559,"children":560},{"style":95},[561],{"type":48,"value":15},{"type":43,"tag":88,"props":563,"children":564},{"style":100},[565],{"type":48,"value":566}," --help\n",{"type":43,"tag":88,"props":568,"children":569},{"class":90,"line":260},[570,574,578],{"type":43,"tag":88,"props":571,"children":572},{"style":95},[573],{"type":48,"value":15},{"type":43,"tag":88,"props":575,"children":576},{"style":100},[577],{"type":48,"value":397},{"type":43,"tag":88,"props":579,"children":580},{"style":100},[581],{"type":48,"value":566},{"type":43,"tag":88,"props":583,"children":584},{"class":90,"line":290},[585,589,593,598],{"type":43,"tag":88,"props":586,"children":587},{"style":95},[588],{"type":48,"value":15},{"type":43,"tag":88,"props":590,"children":591},{"style":100},[592],{"type":48,"value":397},{"type":43,"tag":88,"props":594,"children":595},{"style":100},[596],{"type":48,"value":597}," list",{"type":43,"tag":88,"props":599,"children":600},{"style":100},[601],{"type":48,"value":566},{"type":43,"tag":88,"props":603,"children":604},{"class":90,"line":299},[605,609,613,617],{"type":43,"tag":88,"props":606,"children":607},{"style":95},[608],{"type":48,"value":15},{"type":43,"tag":88,"props":610,"children":611},{"style":100},[612],{"type":48,"value":397},{"type":43,"tag":88,"props":614,"children":615},{"style":100},[616],{"type":48,"value":402},{"type":43,"tag":88,"props":618,"children":619},{"style":100},[620],{"type":48,"value":566},{"type":43,"tag":51,"props":622,"children":623},{},[624],{"type":48,"value":625},"Each command has detailed help output describing all available flags and options.",{"type":43,"tag":57,"props":627,"children":629},{"id":628},"using-the-linear-graphql-api-directly",[630],{"type":48,"value":631},"Using the Linear GraphQL API Directly",{"type":43,"tag":51,"props":633,"children":634},{},[635,640,642,648],{"type":43,"tag":129,"props":636,"children":637},{},[638],{"type":48,"value":639},"Prefer the CLI for all supported operations.",{"type":48,"value":641}," The ",{"type":43,"tag":69,"props":643,"children":645},{"className":644},[],[646],{"type":48,"value":647},"api",{"type":48,"value":649}," command should only be used as a fallback for queries not covered by the CLI.",{"type":43,"tag":651,"props":652,"children":654},"h3",{"id":653},"check-the-schema-for-available-types-and-fields",[655],{"type":48,"value":656},"Check the schema for available types and fields",{"type":43,"tag":51,"props":658,"children":659},{},[660],{"type":48,"value":661},"Write the schema to a tempfile, then search it:",{"type":43,"tag":77,"props":663,"children":665},{"className":79,"code":664,"language":81,"meta":82,"style":82},"linear schema -o \"${TMPDIR:-\u002Ftmp}\u002Flinear-schema.graphql\"\ngrep -i \"cycle\" \"${TMPDIR:-\u002Ftmp}\u002Flinear-schema.graphql\"\ngrep -A 30 \"^type Issue \" \"${TMPDIR:-\u002Ftmp}\u002Flinear-schema.graphql\"\n",[666],{"type":43,"tag":69,"props":667,"children":668},{"__ignoreMap":82},[669,722,776],{"type":43,"tag":88,"props":670,"children":671},{"class":90,"line":91},[672,676,681,686,691,697,702,707,712,717],{"type":43,"tag":88,"props":673,"children":674},{"style":95},[675],{"type":48,"value":15},{"type":43,"tag":88,"props":677,"children":678},{"style":100},[679],{"type":48,"value":680}," schema",{"type":43,"tag":88,"props":682,"children":683},{"style":100},[684],{"type":48,"value":685}," -o",{"type":43,"tag":88,"props":687,"children":688},{"style":269},[689],{"type":48,"value":690}," \"${",{"type":43,"tag":88,"props":692,"children":694},{"style":693},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[695],{"type":48,"value":696},"TMPDIR",{"type":43,"tag":88,"props":698,"children":699},{"style":269},[700],{"type":48,"value":701},":-\u002F",{"type":43,"tag":88,"props":703,"children":704},{"style":693},[705],{"type":48,"value":706},"tmp",{"type":43,"tag":88,"props":708,"children":709},{"style":269},[710],{"type":48,"value":711},"}",{"type":43,"tag":88,"props":713,"children":714},{"style":100},[715],{"type":48,"value":716},"\u002Flinear-schema.graphql",{"type":43,"tag":88,"props":718,"children":719},{"style":269},[720],{"type":48,"value":721},"\"\n",{"type":43,"tag":88,"props":723,"children":724},{"class":90,"line":260},[725,730,735,739,744,748,752,756,760,764,768,772],{"type":43,"tag":88,"props":726,"children":727},{"style":95},[728],{"type":48,"value":729},"grep",{"type":43,"tag":88,"props":731,"children":732},{"style":100},[733],{"type":48,"value":734}," -i",{"type":43,"tag":88,"props":736,"children":737},{"style":269},[738],{"type":48,"value":412},{"type":43,"tag":88,"props":740,"children":741},{"style":100},[742],{"type":48,"value":743},"cycle",{"type":43,"tag":88,"props":745,"children":746},{"style":269},[747],{"type":48,"value":422},{"type":43,"tag":88,"props":749,"children":750},{"style":269},[751],{"type":48,"value":690},{"type":43,"tag":88,"props":753,"children":754},{"style":693},[755],{"type":48,"value":696},{"type":43,"tag":88,"props":757,"children":758},{"style":269},[759],{"type":48,"value":701},{"type":43,"tag":88,"props":761,"children":762},{"style":693},[763],{"type":48,"value":706},{"type":43,"tag":88,"props":765,"children":766},{"style":269},[767],{"type":48,"value":711},{"type":43,"tag":88,"props":769,"children":770},{"style":100},[771],{"type":48,"value":716},{"type":43,"tag":88,"props":773,"children":774},{"style":269},[775],{"type":48,"value":721},{"type":43,"tag":88,"props":777,"children":778},{"class":90,"line":290},[779,783,788,794,798,803,807,811,815,819,823,827,831],{"type":43,"tag":88,"props":780,"children":781},{"style":95},[782],{"type":48,"value":729},{"type":43,"tag":88,"props":784,"children":785},{"style":100},[786],{"type":48,"value":787}," -A",{"type":43,"tag":88,"props":789,"children":791},{"style":790},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[792],{"type":48,"value":793}," 30",{"type":43,"tag":88,"props":795,"children":796},{"style":269},[797],{"type":48,"value":412},{"type":43,"tag":88,"props":799,"children":800},{"style":100},[801],{"type":48,"value":802},"^type Issue ",{"type":43,"tag":88,"props":804,"children":805},{"style":269},[806],{"type":48,"value":422},{"type":43,"tag":88,"props":808,"children":809},{"style":269},[810],{"type":48,"value":690},{"type":43,"tag":88,"props":812,"children":813},{"style":693},[814],{"type":48,"value":696},{"type":43,"tag":88,"props":816,"children":817},{"style":269},[818],{"type":48,"value":701},{"type":43,"tag":88,"props":820,"children":821},{"style":693},[822],{"type":48,"value":706},{"type":43,"tag":88,"props":824,"children":825},{"style":269},[826],{"type":48,"value":711},{"type":43,"tag":88,"props":828,"children":829},{"style":100},[830],{"type":48,"value":716},{"type":43,"tag":88,"props":832,"children":833},{"style":269},[834],{"type":48,"value":721},{"type":43,"tag":651,"props":836,"children":838},{"id":837},"make-a-graphql-request",[839],{"type":48,"value":840},"Make a GraphQL request",{"type":43,"tag":51,"props":842,"children":843},{},[844,849,851,857],{"type":43,"tag":129,"props":845,"children":846},{},[847],{"type":48,"value":848},"Important:",{"type":48,"value":850}," GraphQL queries containing non-null type markers (e.g. ",{"type":43,"tag":69,"props":852,"children":854},{"className":853},[],[855],{"type":48,"value":856},"String",{"type":48,"value":858}," followed by an exclamation mark) must be passed via heredoc stdin to avoid escaping issues. Simple queries without those markers can be passed inline.",{"type":43,"tag":77,"props":860,"children":862},{"className":79,"code":861,"language":81,"meta":82,"style":82},"# Simple query (no type markers, so inline is fine)\nlinear api '{ viewer { id name email } }'\n\n# Query with variables — use heredoc to avoid escaping issues\nlinear api --variable teamId=abc123 \u003C\u003C'GRAPHQL'\nquery($teamId: String!) { team(id: $teamId) { name } }\nGRAPHQL\n\n# Search issues by text\nlinear api --variable term=onboarding \u003C\u003C'GRAPHQL'\nquery($term: String!) { searchIssues(term: $term, first: 20) { nodes { identifier title state { name } } } }\nGRAPHQL\n\n# Pipe to jq for filtering\nlinear api '{ issues(first: 5) { nodes { identifier title } } }' | jq '.data.issues.nodes[].title'\n",[863],{"type":43,"tag":69,"props":864,"children":865},{"__ignoreMap":82},[866,874,901,908,916,946,954,962,969,977,1005,1013,1020,1027,1035],{"type":43,"tag":88,"props":867,"children":868},{"class":90,"line":91},[869],{"type":43,"tag":88,"props":870,"children":871},{"style":254},[872],{"type":48,"value":873},"# Simple query (no type markers, so inline is fine)\n",{"type":43,"tag":88,"props":875,"children":876},{"class":90,"line":260},[877,881,886,891,896],{"type":43,"tag":88,"props":878,"children":879},{"style":95},[880],{"type":48,"value":15},{"type":43,"tag":88,"props":882,"children":883},{"style":100},[884],{"type":48,"value":885}," api",{"type":43,"tag":88,"props":887,"children":888},{"style":269},[889],{"type":48,"value":890}," '",{"type":43,"tag":88,"props":892,"children":893},{"style":100},[894],{"type":48,"value":895},"{ viewer { id name email } }",{"type":43,"tag":88,"props":897,"children":898},{"style":269},[899],{"type":48,"value":900},"'\n",{"type":43,"tag":88,"props":902,"children":903},{"class":90,"line":290},[904],{"type":43,"tag":88,"props":905,"children":906},{"emptyLinePlaceholder":303},[907],{"type":48,"value":306},{"type":43,"tag":88,"props":909,"children":910},{"class":90,"line":299},[911],{"type":43,"tag":88,"props":912,"children":913},{"style":254},[914],{"type":48,"value":915},"# Query with variables — use heredoc to avoid escaping issues\n",{"type":43,"tag":88,"props":917,"children":918},{"class":90,"line":309},[919,923,927,932,937,941],{"type":43,"tag":88,"props":920,"children":921},{"style":95},[922],{"type":48,"value":15},{"type":43,"tag":88,"props":924,"children":925},{"style":100},[926],{"type":48,"value":885},{"type":43,"tag":88,"props":928,"children":929},{"style":100},[930],{"type":48,"value":931}," --variable",{"type":43,"tag":88,"props":933,"children":934},{"style":100},[935],{"type":48,"value":936}," teamId=abc123",{"type":43,"tag":88,"props":938,"children":939},{"style":269},[940],{"type":48,"value":282},{"type":43,"tag":88,"props":942,"children":943},{"style":269},[944],{"type":48,"value":945},"'GRAPHQL'\n",{"type":43,"tag":88,"props":947,"children":948},{"class":90,"line":318},[949],{"type":43,"tag":88,"props":950,"children":951},{"style":100},[952],{"type":48,"value":953},"query($teamId: String!) { team(id: $teamId) { name } }\n",{"type":43,"tag":88,"props":955,"children":956},{"class":90,"line":327},[957],{"type":43,"tag":88,"props":958,"children":959},{"style":269},[960],{"type":48,"value":961},"GRAPHQL\n",{"type":43,"tag":88,"props":963,"children":964},{"class":90,"line":335},[965],{"type":43,"tag":88,"props":966,"children":967},{"emptyLinePlaceholder":303},[968],{"type":48,"value":306},{"type":43,"tag":88,"props":970,"children":971},{"class":90,"line":344},[972],{"type":43,"tag":88,"props":973,"children":974},{"style":254},[975],{"type":48,"value":976},"# Search issues by text\n",{"type":43,"tag":88,"props":978,"children":979},{"class":90,"line":352},[980,984,988,992,997,1001],{"type":43,"tag":88,"props":981,"children":982},{"style":95},[983],{"type":48,"value":15},{"type":43,"tag":88,"props":985,"children":986},{"style":100},[987],{"type":48,"value":885},{"type":43,"tag":88,"props":989,"children":990},{"style":100},[991],{"type":48,"value":931},{"type":43,"tag":88,"props":993,"children":994},{"style":100},[995],{"type":48,"value":996}," term=onboarding",{"type":43,"tag":88,"props":998,"children":999},{"style":269},[1000],{"type":48,"value":282},{"type":43,"tag":88,"props":1002,"children":1003},{"style":269},[1004],{"type":48,"value":945},{"type":43,"tag":88,"props":1006,"children":1007},{"class":90,"line":361},[1008],{"type":43,"tag":88,"props":1009,"children":1010},{"style":100},[1011],{"type":48,"value":1012},"query($term: String!) { searchIssues(term: $term, first: 20) { nodes { identifier title state { name } } } }\n",{"type":43,"tag":88,"props":1014,"children":1015},{"class":90,"line":370},[1016],{"type":43,"tag":88,"props":1017,"children":1018},{"style":269},[1019],{"type":48,"value":961},{"type":43,"tag":88,"props":1021,"children":1022},{"class":90,"line":378},[1023],{"type":43,"tag":88,"props":1024,"children":1025},{"emptyLinePlaceholder":303},[1026],{"type":48,"value":306},{"type":43,"tag":88,"props":1028,"children":1029},{"class":90,"line":387},[1030],{"type":43,"tag":88,"props":1031,"children":1032},{"style":254},[1033],{"type":48,"value":1034},"# Pipe to jq for filtering\n",{"type":43,"tag":88,"props":1036,"children":1037},{"class":90,"line":435},[1038,1042,1046,1050,1055,1060,1065,1070,1074,1079],{"type":43,"tag":88,"props":1039,"children":1040},{"style":95},[1041],{"type":48,"value":15},{"type":43,"tag":88,"props":1043,"children":1044},{"style":100},[1045],{"type":48,"value":885},{"type":43,"tag":88,"props":1047,"children":1048},{"style":269},[1049],{"type":48,"value":890},{"type":43,"tag":88,"props":1051,"children":1052},{"style":100},[1053],{"type":48,"value":1054},"{ issues(first: 5) { nodes { identifier title } } }",{"type":43,"tag":88,"props":1056,"children":1057},{"style":269},[1058],{"type":48,"value":1059},"'",{"type":43,"tag":88,"props":1061,"children":1062},{"style":269},[1063],{"type":48,"value":1064}," |",{"type":43,"tag":88,"props":1066,"children":1067},{"style":95},[1068],{"type":48,"value":1069}," jq",{"type":43,"tag":88,"props":1071,"children":1072},{"style":269},[1073],{"type":48,"value":890},{"type":43,"tag":88,"props":1075,"children":1076},{"style":100},[1077],{"type":48,"value":1078},".data.issues.nodes[].title",{"type":43,"tag":88,"props":1080,"children":1081},{"style":269},[1082],{"type":48,"value":900},{"type":43,"tag":651,"props":1084,"children":1086},{"id":1085},"advanced-using-curl-directly",[1087],{"type":48,"value":1088},"Advanced: Using curl directly",{"type":43,"tag":51,"props":1090,"children":1091},{},[1092,1094,1100],{"type":48,"value":1093},"For cases where you need full HTTP control, use ",{"type":43,"tag":69,"props":1095,"children":1097},{"className":1096},[],[1098],{"type":48,"value":1099},"linear auth token",{"type":48,"value":1101},":",{"type":43,"tag":77,"props":1103,"children":1105},{"className":79,"code":1104,"language":81,"meta":82,"style":82},"curl -s -X POST https:\u002F\u002Fapi.linear.app\u002Fgraphql \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -H \"Authorization: $(linear auth token)\" \\\n  -d '{\"query\": \"{ viewer { id } }\"}'\n",[1106],{"type":43,"tag":69,"props":1107,"children":1108},{"__ignoreMap":82},[1109,1142,1167,1206],{"type":43,"tag":88,"props":1110,"children":1111},{"class":90,"line":91},[1112,1117,1122,1127,1132,1137],{"type":43,"tag":88,"props":1113,"children":1114},{"style":95},[1115],{"type":48,"value":1116},"curl",{"type":43,"tag":88,"props":1118,"children":1119},{"style":100},[1120],{"type":48,"value":1121}," -s",{"type":43,"tag":88,"props":1123,"children":1124},{"style":100},[1125],{"type":48,"value":1126}," -X",{"type":43,"tag":88,"props":1128,"children":1129},{"style":100},[1130],{"type":48,"value":1131}," POST",{"type":43,"tag":88,"props":1133,"children":1134},{"style":100},[1135],{"type":48,"value":1136}," https:\u002F\u002Fapi.linear.app\u002Fgraphql",{"type":43,"tag":88,"props":1138,"children":1139},{"style":693},[1140],{"type":48,"value":1141}," \\\n",{"type":43,"tag":88,"props":1143,"children":1144},{"class":90,"line":260},[1145,1150,1154,1159,1163],{"type":43,"tag":88,"props":1146,"children":1147},{"style":100},[1148],{"type":48,"value":1149},"  -H",{"type":43,"tag":88,"props":1151,"children":1152},{"style":269},[1153],{"type":48,"value":412},{"type":43,"tag":88,"props":1155,"children":1156},{"style":100},[1157],{"type":48,"value":1158},"Content-Type: application\u002Fjson",{"type":43,"tag":88,"props":1160,"children":1161},{"style":269},[1162],{"type":48,"value":422},{"type":43,"tag":88,"props":1164,"children":1165},{"style":693},[1166],{"type":48,"value":1141},{"type":43,"tag":88,"props":1168,"children":1169},{"class":90,"line":290},[1170,1174,1178,1183,1188,1192,1197,1202],{"type":43,"tag":88,"props":1171,"children":1172},{"style":100},[1173],{"type":48,"value":1149},{"type":43,"tag":88,"props":1175,"children":1176},{"style":269},[1177],{"type":48,"value":412},{"type":43,"tag":88,"props":1179,"children":1180},{"style":100},[1181],{"type":48,"value":1182},"Authorization: ",{"type":43,"tag":88,"props":1184,"children":1185},{"style":269},[1186],{"type":48,"value":1187},"$(",{"type":43,"tag":88,"props":1189,"children":1190},{"style":95},[1191],{"type":48,"value":15},{"type":43,"tag":88,"props":1193,"children":1194},{"style":100},[1195],{"type":48,"value":1196}," auth token",{"type":43,"tag":88,"props":1198,"children":1199},{"style":269},[1200],{"type":48,"value":1201},")\"",{"type":43,"tag":88,"props":1203,"children":1204},{"style":693},[1205],{"type":48,"value":1141},{"type":43,"tag":88,"props":1207,"children":1208},{"class":90,"line":299},[1209,1214,1218,1223],{"type":43,"tag":88,"props":1210,"children":1211},{"style":100},[1212],{"type":48,"value":1213},"  -d",{"type":43,"tag":88,"props":1215,"children":1216},{"style":269},[1217],{"type":48,"value":890},{"type":43,"tag":88,"props":1219,"children":1220},{"style":100},[1221],{"type":48,"value":1222},"{\"query\": \"{ viewer { id } }\"}",{"type":43,"tag":88,"props":1224,"children":1225},{"style":269},[1226],{"type":48,"value":900},{"type":43,"tag":1228,"props":1229,"children":1230},"style",{},[1231],{"type":48,"value":1232},"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":1234,"total":1391},[1235,1251,1266,1278,1290,1304,1314,1325,1337,1353,1364,1376],{"slug":1236,"name":1236,"fn":1237,"description":1238,"org":1239,"tags":1240,"stars":1248,"repoUrl":1249,"updatedAt":1250},"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},[1241,1244,1245],{"name":1242,"slug":1243,"type":16},"Agents","agents",{"name":18,"slug":19,"type":16},{"name":1246,"slug":1247,"type":16},"GitHub","github",2831,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fletta-code","2026-07-13T06:22:58.45767",{"slug":1252,"name":1253,"fn":1254,"description":1255,"org":1256,"tags":1257,"stars":1248,"repoUrl":1249,"updatedAt":1265},"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},[1258,1259,1262],{"name":1242,"slug":1243,"type":16},{"name":1260,"slug":1261,"type":16},"AI Context","ai-context",{"name":1263,"slug":1264,"type":16},"Debugging","debugging","2026-07-13T06:22:50.151002",{"slug":1267,"name":1267,"fn":1268,"description":1269,"org":1270,"tags":1271,"stars":1248,"repoUrl":1249,"updatedAt":1277},"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},[1272,1273,1274],{"name":1242,"slug":1243,"type":16},{"name":18,"slug":19,"type":16},{"name":1275,"slug":1276,"type":16},"MCP","mcp","2026-07-13T06:23:37.646079",{"slug":1279,"name":1279,"fn":1280,"description":1281,"org":1282,"tags":1283,"stars":1248,"repoUrl":1249,"updatedAt":1289},"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},[1284,1285,1286],{"name":1242,"slug":1243,"type":16},{"name":18,"slug":19,"type":16},{"name":1287,"slug":1288,"type":16},"Coding","coding","2026-07-23T05:42:38.133565",{"slug":1291,"name":1291,"fn":1292,"description":1293,"org":1294,"tags":1295,"stars":1248,"repoUrl":1249,"updatedAt":1303},"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},[1296,1297,1300],{"name":1242,"slug":1243,"type":16},{"name":1298,"slug":1299,"type":16},"Documentation","documentation",{"name":1301,"slug":1302,"type":16},"Plugin Development","plugin-development","2026-07-13T06:22:56.998659",{"slug":1305,"name":1305,"fn":1306,"description":1307,"org":1308,"tags":1309,"stars":1248,"repoUrl":1249,"updatedAt":1313},"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},[1310,1311,1312],{"name":1242,"slug":1243,"type":16},{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},"2026-07-13T06:23:18.266798",{"slug":1315,"name":1315,"fn":1316,"description":1317,"org":1318,"tags":1319,"stars":1248,"repoUrl":1249,"updatedAt":1324},"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},[1320,1321],{"name":21,"slug":22,"type":16},{"name":1322,"slug":1323,"type":16},"Engineering","engineering","2026-07-13T06:23:27.465985",{"slug":1326,"name":1326,"fn":1327,"description":1328,"org":1329,"tags":1330,"stars":1248,"repoUrl":1249,"updatedAt":1336},"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},[1331,1332,1333],{"name":1242,"slug":1243,"type":16},{"name":1287,"slug":1288,"type":16},{"name":1334,"slug":1335,"type":16},"Multi-Agent","multi-agent","2026-07-26T05:46:56.388845",{"slug":1338,"name":1338,"fn":1339,"description":1340,"org":1341,"tags":1342,"stars":1248,"repoUrl":1249,"updatedAt":1352},"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},[1343,1346,1349],{"name":1344,"slug":1345,"type":16},"Configuration","configuration",{"name":1347,"slug":1348,"type":16},"Desktop","desktop",{"name":1350,"slug":1351,"type":16},"Themes","themes","2026-07-13T06:23:41.407811",{"slug":1354,"name":1354,"fn":1355,"description":1356,"org":1357,"tags":1358,"stars":1248,"repoUrl":1249,"updatedAt":1363},"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},[1359,1360],{"name":1242,"slug":1243,"type":16},{"name":1361,"slug":1362,"type":16},"Management","management","2026-07-16T06:02:17.297841",{"slug":1365,"name":1365,"fn":1366,"description":1367,"org":1368,"tags":1369,"stars":1248,"repoUrl":1249,"updatedAt":1375},"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},[1370,1371,1374],{"name":1242,"slug":1243,"type":16},{"name":1372,"slug":1373,"type":16},"AI Infrastructure","ai-infrastructure",{"name":1344,"slug":1345,"type":16},"2026-07-13T06:23:08.838181",{"slug":1377,"name":1377,"fn":1378,"description":1379,"org":1380,"tags":1381,"stars":1248,"repoUrl":1249,"updatedAt":1390},"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},[1382,1385,1388],{"name":1383,"slug":1384,"type":16},"Creative","creative",{"name":1386,"slug":1387,"type":16},"Graphics","graphics",{"name":1389,"slug":1377,"type":16},"Image Generation","2026-07-13T06:23:06.189403",69,{"items":1393,"total":1505},[1394,1408,1423,1442,1455,1476,1486],{"slug":1395,"name":1395,"fn":1396,"description":1397,"org":1398,"tags":1399,"stars":26,"repoUrl":27,"updatedAt":1407},"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},[1400,1403,1404],{"name":1401,"slug":1402,"type":16},"Authentication","authentication",{"name":21,"slug":22,"type":16},{"name":1405,"slug":1406,"type":16},"Security","security","2026-07-13T06:24:39.504387",{"slug":1409,"name":1409,"fn":1410,"description":1411,"org":1412,"tags":1413,"stars":26,"repoUrl":27,"updatedAt":1422},"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},[1414,1415,1416,1419],{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},{"name":1417,"slug":1418,"type":16},"Messaging","messaging",{"name":1420,"slug":1421,"type":16},"Slack","slack","2026-07-13T06:23:51.908511",{"slug":1424,"name":1424,"fn":1425,"description":1426,"org":1427,"tags":1428,"stars":26,"repoUrl":27,"updatedAt":1441},"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},[1429,1432,1435,1438],{"name":1430,"slug":1431,"type":16},"Communications","communications",{"name":1433,"slug":1434,"type":16},"LLM","llm",{"name":1436,"slug":1437,"type":16},"Research","research",{"name":1439,"slug":1440,"type":16},"Summarization","summarization","2026-07-13T06:24:20.520223",{"slug":1443,"name":1443,"fn":1444,"description":1445,"org":1446,"tags":1447,"stars":26,"repoUrl":27,"updatedAt":1454},"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},[1448,1449,1452,1453],{"name":1242,"slug":1243,"type":16},{"name":1450,"slug":1451,"type":16},"API Development","api-development",{"name":1417,"slug":1418,"type":16},{"name":1420,"slug":1421,"type":16},"2026-07-13T06:25:55.843495",{"slug":1456,"name":1456,"fn":1457,"description":1458,"org":1459,"tags":1460,"stars":26,"repoUrl":27,"updatedAt":1475},"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},[1461,1463,1466,1469,1472],{"name":1462,"slug":1456,"type":16},"Datadog",{"name":1464,"slug":1465,"type":16},"Logs","logs",{"name":1467,"slug":1468,"type":16},"Metrics","metrics",{"name":1470,"slug":1471,"type":16},"Monitoring","monitoring",{"name":1473,"slug":1474,"type":16},"Observability","observability","2026-07-13T06:24:27.990605",{"slug":1477,"name":1477,"fn":1478,"description":1479,"org":1480,"tags":1481,"stars":26,"repoUrl":27,"updatedAt":1485},"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},[1482,1483,1484],{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},{"name":1417,"slug":1418,"type":16},"2026-07-13T06:24:26.62387",{"slug":1487,"name":1487,"fn":1488,"description":1489,"org":1490,"tags":1491,"stars":26,"repoUrl":27,"updatedAt":1504},"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},[1492,1495,1498,1501],{"name":1493,"slug":1494,"type":16},"Documents","documents",{"name":1496,"slug":1497,"type":16},"DOCX","docx",{"name":1499,"slug":1500,"type":16},"Office","office",{"name":1502,"slug":1503,"type":16},"Word","word","2026-07-13T06:23:44.299568",45]