[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-letta-finding-agents":3,"mdc--238cwm-key":38,"related-org-letta-finding-agents":951,"related-repo-letta-finding-agents":1104},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":20,"repoUrl":21,"updatedAt":22,"license":23,"forks":24,"topics":25,"repo":33,"sourceUrl":36,"mdContent":37},"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},"letta","Letta","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fletta.png","letta-ai",[13,17],{"name":14,"slug":15,"type":16},"Management","management","tag",{"name":18,"slug":19,"type":16},"Agents","agents",2831,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fletta-code","2026-07-16T06:02:17.297841",null,329,[26,27,28,29,30,8,31,32],"agent-memory","ai","claude","codex","continual-learning","memgpt","stateful-agents",{"repoUrl":21,"stars":20,"forks":24,"topics":34,"description":35},[26,27,28,29,30,8,31,32],"Stateful agents that are like people, with memory, identity, and the ability to learn and adapt","https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fletta-code\u002Ftree\u002FHEAD\u002Fsrc\u002Fskills\u002Fbuiltin\u002Ffinding-agents","---\nname: finding-agents\ndescription: 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.\n---\n\n# Finding Agents\n\nThis skill helps you find other agents on the same Letta server.\n\n## When to Use This Skill\n\n- User asks about other agents they have\n- User wants to find a specific agent by name\n- User wants to list agents with certain tags\n- You need to find an agent ID for memory migration\n- You found an agent_id via message search and need details about that agent\n\n## CLI Usage\n\n```bash\nletta agents list [options]\n```\n\n### Options\n\n| Option | Description |\n|--------|-------------|\n| `--name \u003Cname>` | Exact name match |\n| `--query \u003Ctext>` | Fuzzy search by name |\n| `--tags \u003Ctag1,tag2>` | Filter by tags (comma-separated) |\n| `--match-all-tags` | Require ALL tags (default: ANY) |\n| `--include-blocks` | Include agent.blocks in response |\n| `--limit \u003Cn>` | Max results (default: 20) |\n\n## Common Patterns\n\n### Finding Letta Code Agents\n\nAgents created by Letta Code are tagged with `origin:letta-code`. To find only Letta Code agents:\n\n```bash\nletta agents list --tags \"origin:letta-code\"\n```\n\nThis is useful when the user is looking for agents they've worked with in Letta Code CLI sessions.\n\n### Finding All Agents\n\nIf the user has agents created outside Letta Code (via ADE, SDK, etc.), search without the tag filter:\n\n```bash\nletta agents list\n```\n\n## Examples\n\n**List all agents (up to 20):**\n```bash\nletta agents list\n```\n\n**Find agent by exact name:**\n```bash\nletta agents list --name \"ProjectX-v1\"\n```\n\n**Search agents by name (fuzzy):**\n```bash\nletta agents list --query \"project\"\n```\n\n**Find only Letta Code agents:**\n```bash\nletta agents list --tags \"origin:letta-code\"\n```\n\n**Find agents with multiple tags:**\n```bash\nletta agents list --tags \"frontend,production\" --match-all-tags\n```\n\n**Include memory blocks in results:**\n```bash\nletta agents list --query \"project\" --include-blocks\n```\n\n## Output\n\nReturns the raw API response with full agent details. Key fields:\n- `id` - Agent ID (e.g., `agent-abc123`)\n- `name` - Agent name\n- `description` - Agent description\n- `tags` - Agent tags\n- `blocks` - Memory blocks (if `--include-blocks` used)\n\n## Related Skills\n\n- **migrating-memory** - Once you find an agent, use this skill to copy\u002Fshare memory blocks\n- **searching-messages** - Search messages across all agents to find which agent discussed a topic. Use `--all-agents` to get `agent_id` values, then use this skill to get full agent details.\n\n### Finding Agents by Topic\n\nIf you need to find which agent worked on a specific topic:\n\n1. Load both skills: `searching-messages` and `finding-agents`\n2. Search messages across all agents:\n   ```bash\n   letta messages search --query \"topic\" --all-agents --limit 10\n   ```\n3. Note the `agent_id` values from matching messages\n4. Get agent details:\n   ```bash\n   letta agents list --query \"partial-name\"\n   ```\n   Or use the agent_id directly in the Letta API\n",{"data":39,"body":40},{"name":4,"description":6},{"type":41,"children":42},"root",[43,51,57,64,94,100,140,147,277,283,289,302,344,349,355,360,383,389,398,419,427,467,475,515,523,560,568,613,621,664,670,675,748,754,793,799,804,945],{"type":44,"tag":45,"props":46,"children":47},"element","h1",{"id":4},[48],{"type":49,"value":50},"text","Finding Agents",{"type":44,"tag":52,"props":53,"children":54},"p",{},[55],{"type":49,"value":56},"This skill helps you find other agents on the same Letta server.",{"type":44,"tag":58,"props":59,"children":61},"h2",{"id":60},"when-to-use-this-skill",[62],{"type":49,"value":63},"When to Use This Skill",{"type":44,"tag":65,"props":66,"children":67},"ul",{},[68,74,79,84,89],{"type":44,"tag":69,"props":70,"children":71},"li",{},[72],{"type":49,"value":73},"User asks about other agents they have",{"type":44,"tag":69,"props":75,"children":76},{},[77],{"type":49,"value":78},"User wants to find a specific agent by name",{"type":44,"tag":69,"props":80,"children":81},{},[82],{"type":49,"value":83},"User wants to list agents with certain tags",{"type":44,"tag":69,"props":85,"children":86},{},[87],{"type":49,"value":88},"You need to find an agent ID for memory migration",{"type":44,"tag":69,"props":90,"children":91},{},[92],{"type":49,"value":93},"You found an agent_id via message search and need details about that agent",{"type":44,"tag":58,"props":95,"children":97},{"id":96},"cli-usage",[98],{"type":49,"value":99},"CLI Usage",{"type":44,"tag":101,"props":102,"children":107},"pre",{"className":103,"code":104,"language":105,"meta":106,"style":106},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","letta agents list [options]\n","bash","",[108],{"type":44,"tag":109,"props":110,"children":111},"code",{"__ignoreMap":106},[112],{"type":44,"tag":113,"props":114,"children":117},"span",{"class":115,"line":116},"line",1,[118,123,129,134],{"type":44,"tag":113,"props":119,"children":121},{"style":120},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[122],{"type":49,"value":8},{"type":44,"tag":113,"props":124,"children":126},{"style":125},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[127],{"type":49,"value":128}," agents",{"type":44,"tag":113,"props":130,"children":131},{"style":125},[132],{"type":49,"value":133}," list",{"type":44,"tag":113,"props":135,"children":137},{"style":136},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[138],{"type":49,"value":139}," [options]\n",{"type":44,"tag":141,"props":142,"children":144},"h3",{"id":143},"options",[145],{"type":49,"value":146},"Options",{"type":44,"tag":148,"props":149,"children":150},"table",{},[151,170],{"type":44,"tag":152,"props":153,"children":154},"thead",{},[155],{"type":44,"tag":156,"props":157,"children":158},"tr",{},[159,165],{"type":44,"tag":160,"props":161,"children":162},"th",{},[163],{"type":49,"value":164},"Option",{"type":44,"tag":160,"props":166,"children":167},{},[168],{"type":49,"value":169},"Description",{"type":44,"tag":171,"props":172,"children":173},"tbody",{},[174,192,209,226,243,260],{"type":44,"tag":156,"props":175,"children":176},{},[177,187],{"type":44,"tag":178,"props":179,"children":180},"td",{},[181],{"type":44,"tag":109,"props":182,"children":184},{"className":183},[],[185],{"type":49,"value":186},"--name \u003Cname>",{"type":44,"tag":178,"props":188,"children":189},{},[190],{"type":49,"value":191},"Exact name match",{"type":44,"tag":156,"props":193,"children":194},{},[195,204],{"type":44,"tag":178,"props":196,"children":197},{},[198],{"type":44,"tag":109,"props":199,"children":201},{"className":200},[],[202],{"type":49,"value":203},"--query \u003Ctext>",{"type":44,"tag":178,"props":205,"children":206},{},[207],{"type":49,"value":208},"Fuzzy search by name",{"type":44,"tag":156,"props":210,"children":211},{},[212,221],{"type":44,"tag":178,"props":213,"children":214},{},[215],{"type":44,"tag":109,"props":216,"children":218},{"className":217},[],[219],{"type":49,"value":220},"--tags \u003Ctag1,tag2>",{"type":44,"tag":178,"props":222,"children":223},{},[224],{"type":49,"value":225},"Filter by tags (comma-separated)",{"type":44,"tag":156,"props":227,"children":228},{},[229,238],{"type":44,"tag":178,"props":230,"children":231},{},[232],{"type":44,"tag":109,"props":233,"children":235},{"className":234},[],[236],{"type":49,"value":237},"--match-all-tags",{"type":44,"tag":178,"props":239,"children":240},{},[241],{"type":49,"value":242},"Require ALL tags (default: ANY)",{"type":44,"tag":156,"props":244,"children":245},{},[246,255],{"type":44,"tag":178,"props":247,"children":248},{},[249],{"type":44,"tag":109,"props":250,"children":252},{"className":251},[],[253],{"type":49,"value":254},"--include-blocks",{"type":44,"tag":178,"props":256,"children":257},{},[258],{"type":49,"value":259},"Include agent.blocks in response",{"type":44,"tag":156,"props":261,"children":262},{},[263,272],{"type":44,"tag":178,"props":264,"children":265},{},[266],{"type":44,"tag":109,"props":267,"children":269},{"className":268},[],[270],{"type":49,"value":271},"--limit \u003Cn>",{"type":44,"tag":178,"props":273,"children":274},{},[275],{"type":49,"value":276},"Max results (default: 20)",{"type":44,"tag":58,"props":278,"children":280},{"id":279},"common-patterns",[281],{"type":49,"value":282},"Common Patterns",{"type":44,"tag":141,"props":284,"children":286},{"id":285},"finding-letta-code-agents",[287],{"type":49,"value":288},"Finding Letta Code Agents",{"type":44,"tag":52,"props":290,"children":291},{},[292,294,300],{"type":49,"value":293},"Agents created by Letta Code are tagged with ",{"type":44,"tag":109,"props":295,"children":297},{"className":296},[],[298],{"type":49,"value":299},"origin:letta-code",{"type":49,"value":301},". To find only Letta Code agents:",{"type":44,"tag":101,"props":303,"children":305},{"className":103,"code":304,"language":105,"meta":106,"style":106},"letta agents list --tags \"origin:letta-code\"\n",[306],{"type":44,"tag":109,"props":307,"children":308},{"__ignoreMap":106},[309],{"type":44,"tag":113,"props":310,"children":311},{"class":115,"line":116},[312,316,320,324,329,335,339],{"type":44,"tag":113,"props":313,"children":314},{"style":120},[315],{"type":49,"value":8},{"type":44,"tag":113,"props":317,"children":318},{"style":125},[319],{"type":49,"value":128},{"type":44,"tag":113,"props":321,"children":322},{"style":125},[323],{"type":49,"value":133},{"type":44,"tag":113,"props":325,"children":326},{"style":125},[327],{"type":49,"value":328}," --tags",{"type":44,"tag":113,"props":330,"children":332},{"style":331},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[333],{"type":49,"value":334}," \"",{"type":44,"tag":113,"props":336,"children":337},{"style":125},[338],{"type":49,"value":299},{"type":44,"tag":113,"props":340,"children":341},{"style":331},[342],{"type":49,"value":343},"\"\n",{"type":44,"tag":52,"props":345,"children":346},{},[347],{"type":49,"value":348},"This is useful when the user is looking for agents they've worked with in Letta Code CLI sessions.",{"type":44,"tag":141,"props":350,"children":352},{"id":351},"finding-all-agents",[353],{"type":49,"value":354},"Finding All Agents",{"type":44,"tag":52,"props":356,"children":357},{},[358],{"type":49,"value":359},"If the user has agents created outside Letta Code (via ADE, SDK, etc.), search without the tag filter:",{"type":44,"tag":101,"props":361,"children":363},{"className":103,"code":362,"language":105,"meta":106,"style":106},"letta agents list\n",[364],{"type":44,"tag":109,"props":365,"children":366},{"__ignoreMap":106},[367],{"type":44,"tag":113,"props":368,"children":369},{"class":115,"line":116},[370,374,378],{"type":44,"tag":113,"props":371,"children":372},{"style":120},[373],{"type":49,"value":8},{"type":44,"tag":113,"props":375,"children":376},{"style":125},[377],{"type":49,"value":128},{"type":44,"tag":113,"props":379,"children":380},{"style":125},[381],{"type":49,"value":382}," list\n",{"type":44,"tag":58,"props":384,"children":386},{"id":385},"examples",[387],{"type":49,"value":388},"Examples",{"type":44,"tag":52,"props":390,"children":391},{},[392],{"type":44,"tag":393,"props":394,"children":395},"strong",{},[396],{"type":49,"value":397},"List all agents (up to 20):",{"type":44,"tag":101,"props":399,"children":400},{"className":103,"code":362,"language":105,"meta":106,"style":106},[401],{"type":44,"tag":109,"props":402,"children":403},{"__ignoreMap":106},[404],{"type":44,"tag":113,"props":405,"children":406},{"class":115,"line":116},[407,411,415],{"type":44,"tag":113,"props":408,"children":409},{"style":120},[410],{"type":49,"value":8},{"type":44,"tag":113,"props":412,"children":413},{"style":125},[414],{"type":49,"value":128},{"type":44,"tag":113,"props":416,"children":417},{"style":125},[418],{"type":49,"value":382},{"type":44,"tag":52,"props":420,"children":421},{},[422],{"type":44,"tag":393,"props":423,"children":424},{},[425],{"type":49,"value":426},"Find agent by exact name:",{"type":44,"tag":101,"props":428,"children":430},{"className":103,"code":429,"language":105,"meta":106,"style":106},"letta agents list --name \"ProjectX-v1\"\n",[431],{"type":44,"tag":109,"props":432,"children":433},{"__ignoreMap":106},[434],{"type":44,"tag":113,"props":435,"children":436},{"class":115,"line":116},[437,441,445,449,454,458,463],{"type":44,"tag":113,"props":438,"children":439},{"style":120},[440],{"type":49,"value":8},{"type":44,"tag":113,"props":442,"children":443},{"style":125},[444],{"type":49,"value":128},{"type":44,"tag":113,"props":446,"children":447},{"style":125},[448],{"type":49,"value":133},{"type":44,"tag":113,"props":450,"children":451},{"style":125},[452],{"type":49,"value":453}," --name",{"type":44,"tag":113,"props":455,"children":456},{"style":331},[457],{"type":49,"value":334},{"type":44,"tag":113,"props":459,"children":460},{"style":125},[461],{"type":49,"value":462},"ProjectX-v1",{"type":44,"tag":113,"props":464,"children":465},{"style":331},[466],{"type":49,"value":343},{"type":44,"tag":52,"props":468,"children":469},{},[470],{"type":44,"tag":393,"props":471,"children":472},{},[473],{"type":49,"value":474},"Search agents by name (fuzzy):",{"type":44,"tag":101,"props":476,"children":478},{"className":103,"code":477,"language":105,"meta":106,"style":106},"letta agents list --query \"project\"\n",[479],{"type":44,"tag":109,"props":480,"children":481},{"__ignoreMap":106},[482],{"type":44,"tag":113,"props":483,"children":484},{"class":115,"line":116},[485,489,493,497,502,506,511],{"type":44,"tag":113,"props":486,"children":487},{"style":120},[488],{"type":49,"value":8},{"type":44,"tag":113,"props":490,"children":491},{"style":125},[492],{"type":49,"value":128},{"type":44,"tag":113,"props":494,"children":495},{"style":125},[496],{"type":49,"value":133},{"type":44,"tag":113,"props":498,"children":499},{"style":125},[500],{"type":49,"value":501}," --query",{"type":44,"tag":113,"props":503,"children":504},{"style":331},[505],{"type":49,"value":334},{"type":44,"tag":113,"props":507,"children":508},{"style":125},[509],{"type":49,"value":510},"project",{"type":44,"tag":113,"props":512,"children":513},{"style":331},[514],{"type":49,"value":343},{"type":44,"tag":52,"props":516,"children":517},{},[518],{"type":44,"tag":393,"props":519,"children":520},{},[521],{"type":49,"value":522},"Find only Letta Code agents:",{"type":44,"tag":101,"props":524,"children":525},{"className":103,"code":304,"language":105,"meta":106,"style":106},[526],{"type":44,"tag":109,"props":527,"children":528},{"__ignoreMap":106},[529],{"type":44,"tag":113,"props":530,"children":531},{"class":115,"line":116},[532,536,540,544,548,552,556],{"type":44,"tag":113,"props":533,"children":534},{"style":120},[535],{"type":49,"value":8},{"type":44,"tag":113,"props":537,"children":538},{"style":125},[539],{"type":49,"value":128},{"type":44,"tag":113,"props":541,"children":542},{"style":125},[543],{"type":49,"value":133},{"type":44,"tag":113,"props":545,"children":546},{"style":125},[547],{"type":49,"value":328},{"type":44,"tag":113,"props":549,"children":550},{"style":331},[551],{"type":49,"value":334},{"type":44,"tag":113,"props":553,"children":554},{"style":125},[555],{"type":49,"value":299},{"type":44,"tag":113,"props":557,"children":558},{"style":331},[559],{"type":49,"value":343},{"type":44,"tag":52,"props":561,"children":562},{},[563],{"type":44,"tag":393,"props":564,"children":565},{},[566],{"type":49,"value":567},"Find agents with multiple tags:",{"type":44,"tag":101,"props":569,"children":571},{"className":103,"code":570,"language":105,"meta":106,"style":106},"letta agents list --tags \"frontend,production\" --match-all-tags\n",[572],{"type":44,"tag":109,"props":573,"children":574},{"__ignoreMap":106},[575],{"type":44,"tag":113,"props":576,"children":577},{"class":115,"line":116},[578,582,586,590,594,598,603,608],{"type":44,"tag":113,"props":579,"children":580},{"style":120},[581],{"type":49,"value":8},{"type":44,"tag":113,"props":583,"children":584},{"style":125},[585],{"type":49,"value":128},{"type":44,"tag":113,"props":587,"children":588},{"style":125},[589],{"type":49,"value":133},{"type":44,"tag":113,"props":591,"children":592},{"style":125},[593],{"type":49,"value":328},{"type":44,"tag":113,"props":595,"children":596},{"style":331},[597],{"type":49,"value":334},{"type":44,"tag":113,"props":599,"children":600},{"style":125},[601],{"type":49,"value":602},"frontend,production",{"type":44,"tag":113,"props":604,"children":605},{"style":331},[606],{"type":49,"value":607},"\"",{"type":44,"tag":113,"props":609,"children":610},{"style":125},[611],{"type":49,"value":612}," --match-all-tags\n",{"type":44,"tag":52,"props":614,"children":615},{},[616],{"type":44,"tag":393,"props":617,"children":618},{},[619],{"type":49,"value":620},"Include memory blocks in results:",{"type":44,"tag":101,"props":622,"children":624},{"className":103,"code":623,"language":105,"meta":106,"style":106},"letta agents list --query \"project\" --include-blocks\n",[625],{"type":44,"tag":109,"props":626,"children":627},{"__ignoreMap":106},[628],{"type":44,"tag":113,"props":629,"children":630},{"class":115,"line":116},[631,635,639,643,647,651,655,659],{"type":44,"tag":113,"props":632,"children":633},{"style":120},[634],{"type":49,"value":8},{"type":44,"tag":113,"props":636,"children":637},{"style":125},[638],{"type":49,"value":128},{"type":44,"tag":113,"props":640,"children":641},{"style":125},[642],{"type":49,"value":133},{"type":44,"tag":113,"props":644,"children":645},{"style":125},[646],{"type":49,"value":501},{"type":44,"tag":113,"props":648,"children":649},{"style":331},[650],{"type":49,"value":334},{"type":44,"tag":113,"props":652,"children":653},{"style":125},[654],{"type":49,"value":510},{"type":44,"tag":113,"props":656,"children":657},{"style":331},[658],{"type":49,"value":607},{"type":44,"tag":113,"props":660,"children":661},{"style":125},[662],{"type":49,"value":663}," --include-blocks\n",{"type":44,"tag":58,"props":665,"children":667},{"id":666},"output",[668],{"type":49,"value":669},"Output",{"type":44,"tag":52,"props":671,"children":672},{},[673],{"type":49,"value":674},"Returns the raw API response with full agent details. Key fields:",{"type":44,"tag":65,"props":676,"children":677},{},[678,697,708,719,730],{"type":44,"tag":69,"props":679,"children":680},{},[681,687,689,695],{"type":44,"tag":109,"props":682,"children":684},{"className":683},[],[685],{"type":49,"value":686},"id",{"type":49,"value":688}," - Agent ID (e.g., ",{"type":44,"tag":109,"props":690,"children":692},{"className":691},[],[693],{"type":49,"value":694},"agent-abc123",{"type":49,"value":696},")",{"type":44,"tag":69,"props":698,"children":699},{},[700,706],{"type":44,"tag":109,"props":701,"children":703},{"className":702},[],[704],{"type":49,"value":705},"name",{"type":49,"value":707}," - Agent name",{"type":44,"tag":69,"props":709,"children":710},{},[711,717],{"type":44,"tag":109,"props":712,"children":714},{"className":713},[],[715],{"type":49,"value":716},"description",{"type":49,"value":718}," - Agent description",{"type":44,"tag":69,"props":720,"children":721},{},[722,728],{"type":44,"tag":109,"props":723,"children":725},{"className":724},[],[726],{"type":49,"value":727},"tags",{"type":49,"value":729}," - Agent tags",{"type":44,"tag":69,"props":731,"children":732},{},[733,739,741,746],{"type":44,"tag":109,"props":734,"children":736},{"className":735},[],[737],{"type":49,"value":738},"blocks",{"type":49,"value":740}," - Memory blocks (if ",{"type":44,"tag":109,"props":742,"children":744},{"className":743},[],[745],{"type":49,"value":254},{"type":49,"value":747}," used)",{"type":44,"tag":58,"props":749,"children":751},{"id":750},"related-skills",[752],{"type":49,"value":753},"Related Skills",{"type":44,"tag":65,"props":755,"children":756},{},[757,767],{"type":44,"tag":69,"props":758,"children":759},{},[760,765],{"type":44,"tag":393,"props":761,"children":762},{},[763],{"type":49,"value":764},"migrating-memory",{"type":49,"value":766}," - Once you find an agent, use this skill to copy\u002Fshare memory blocks",{"type":44,"tag":69,"props":768,"children":769},{},[770,775,777,783,785,791],{"type":44,"tag":393,"props":771,"children":772},{},[773],{"type":49,"value":774},"searching-messages",{"type":49,"value":776}," - Search messages across all agents to find which agent discussed a topic. Use ",{"type":44,"tag":109,"props":778,"children":780},{"className":779},[],[781],{"type":49,"value":782},"--all-agents",{"type":49,"value":784}," to get ",{"type":44,"tag":109,"props":786,"children":788},{"className":787},[],[789],{"type":49,"value":790},"agent_id",{"type":49,"value":792}," values, then use this skill to get full agent details.",{"type":44,"tag":141,"props":794,"children":796},{"id":795},"finding-agents-by-topic",[797],{"type":49,"value":798},"Finding Agents by Topic",{"type":44,"tag":52,"props":800,"children":801},{},[802],{"type":49,"value":803},"If you need to find which agent worked on a specific topic:",{"type":44,"tag":805,"props":806,"children":807},"ol",{},[808,825,887,899],{"type":44,"tag":69,"props":809,"children":810},{},[811,813,818,820],{"type":49,"value":812},"Load both skills: ",{"type":44,"tag":109,"props":814,"children":816},{"className":815},[],[817],{"type":49,"value":774},{"type":49,"value":819}," and ",{"type":44,"tag":109,"props":821,"children":823},{"className":822},[],[824],{"type":49,"value":4},{"type":44,"tag":69,"props":826,"children":827},{},[828,830],{"type":49,"value":829},"Search messages across all agents:\n",{"type":44,"tag":101,"props":831,"children":833},{"className":103,"code":832,"language":105,"meta":106,"style":106},"letta messages search --query \"topic\" --all-agents --limit 10\n",[834],{"type":44,"tag":109,"props":835,"children":836},{"__ignoreMap":106},[837],{"type":44,"tag":113,"props":838,"children":839},{"class":115,"line":116},[840,844,849,854,858,862,867,871,876,881],{"type":44,"tag":113,"props":841,"children":842},{"style":120},[843],{"type":49,"value":8},{"type":44,"tag":113,"props":845,"children":846},{"style":125},[847],{"type":49,"value":848}," messages",{"type":44,"tag":113,"props":850,"children":851},{"style":125},[852],{"type":49,"value":853}," search",{"type":44,"tag":113,"props":855,"children":856},{"style":125},[857],{"type":49,"value":501},{"type":44,"tag":113,"props":859,"children":860},{"style":331},[861],{"type":49,"value":334},{"type":44,"tag":113,"props":863,"children":864},{"style":125},[865],{"type":49,"value":866},"topic",{"type":44,"tag":113,"props":868,"children":869},{"style":331},[870],{"type":49,"value":607},{"type":44,"tag":113,"props":872,"children":873},{"style":125},[874],{"type":49,"value":875}," --all-agents",{"type":44,"tag":113,"props":877,"children":878},{"style":125},[879],{"type":49,"value":880}," --limit",{"type":44,"tag":113,"props":882,"children":884},{"style":883},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[885],{"type":49,"value":886}," 10\n",{"type":44,"tag":69,"props":888,"children":889},{},[890,892,897],{"type":49,"value":891},"Note the ",{"type":44,"tag":109,"props":893,"children":895},{"className":894},[],[896],{"type":49,"value":790},{"type":49,"value":898}," values from matching messages",{"type":44,"tag":69,"props":900,"children":901},{},[902,904,943],{"type":49,"value":903},"Get agent details:\n",{"type":44,"tag":101,"props":905,"children":907},{"className":103,"code":906,"language":105,"meta":106,"style":106},"letta agents list --query \"partial-name\"\n",[908],{"type":44,"tag":109,"props":909,"children":910},{"__ignoreMap":106},[911],{"type":44,"tag":113,"props":912,"children":913},{"class":115,"line":116},[914,918,922,926,930,934,939],{"type":44,"tag":113,"props":915,"children":916},{"style":120},[917],{"type":49,"value":8},{"type":44,"tag":113,"props":919,"children":920},{"style":125},[921],{"type":49,"value":128},{"type":44,"tag":113,"props":923,"children":924},{"style":125},[925],{"type":49,"value":133},{"type":44,"tag":113,"props":927,"children":928},{"style":125},[929],{"type":49,"value":501},{"type":44,"tag":113,"props":931,"children":932},{"style":331},[933],{"type":49,"value":334},{"type":44,"tag":113,"props":935,"children":936},{"style":125},[937],{"type":49,"value":938},"partial-name",{"type":44,"tag":113,"props":940,"children":941},{"style":331},[942],{"type":49,"value":343},{"type":49,"value":944},"\nOr use the agent_id directly in the Letta API",{"type":44,"tag":946,"props":947,"children":948},"style",{},[949],{"type":49,"value":950},"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":952,"total":1103},[953,967,982,994,1006,1020,1032,1043,1055,1071,1076,1088],{"slug":954,"name":954,"fn":955,"description":956,"org":957,"tags":958,"stars":20,"repoUrl":21,"updatedAt":966},"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},[959,960,963],{"name":18,"slug":19,"type":16},{"name":961,"slug":962,"type":16},"Automation","automation",{"name":964,"slug":965,"type":16},"GitHub","github","2026-07-13T06:22:58.45767",{"slug":968,"name":969,"fn":970,"description":971,"org":972,"tags":973,"stars":20,"repoUrl":21,"updatedAt":981},"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},[974,975,978],{"name":18,"slug":19,"type":16},{"name":976,"slug":977,"type":16},"AI Context","ai-context",{"name":979,"slug":980,"type":16},"Debugging","debugging","2026-07-13T06:22:50.151002",{"slug":983,"name":983,"fn":984,"description":985,"org":986,"tags":987,"stars":20,"repoUrl":21,"updatedAt":993},"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},[988,989,990],{"name":18,"slug":19,"type":16},{"name":961,"slug":962,"type":16},{"name":991,"slug":992,"type":16},"MCP","mcp","2026-07-13T06:23:37.646079",{"slug":995,"name":995,"fn":996,"description":997,"org":998,"tags":999,"stars":20,"repoUrl":21,"updatedAt":1005},"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},[1000,1001,1002],{"name":18,"slug":19,"type":16},{"name":961,"slug":962,"type":16},{"name":1003,"slug":1004,"type":16},"Coding","coding","2026-07-23T05:42:38.133565",{"slug":1007,"name":1007,"fn":1008,"description":1009,"org":1010,"tags":1011,"stars":20,"repoUrl":21,"updatedAt":1019},"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},[1012,1013,1016],{"name":18,"slug":19,"type":16},{"name":1014,"slug":1015,"type":16},"Documentation","documentation",{"name":1017,"slug":1018,"type":16},"Plugin Development","plugin-development","2026-07-13T06:22:56.998659",{"slug":1021,"name":1021,"fn":1022,"description":1023,"org":1024,"tags":1025,"stars":20,"repoUrl":21,"updatedAt":1031},"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},[1026,1027,1028],{"name":18,"slug":19,"type":16},{"name":961,"slug":962,"type":16},{"name":1029,"slug":1030,"type":16},"CLI","cli","2026-07-13T06:23:18.266798",{"slug":1033,"name":1033,"fn":1034,"description":1035,"org":1036,"tags":1037,"stars":20,"repoUrl":21,"updatedAt":1042},"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},[1038,1039],{"name":1029,"slug":1030,"type":16},{"name":1040,"slug":1041,"type":16},"Engineering","engineering","2026-07-13T06:23:27.465985",{"slug":1044,"name":1044,"fn":1045,"description":1046,"org":1047,"tags":1048,"stars":20,"repoUrl":21,"updatedAt":1054},"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},[1049,1050,1051],{"name":18,"slug":19,"type":16},{"name":1003,"slug":1004,"type":16},{"name":1052,"slug":1053,"type":16},"Multi-Agent","multi-agent","2026-07-26T05:46:56.388845",{"slug":1056,"name":1056,"fn":1057,"description":1058,"org":1059,"tags":1060,"stars":20,"repoUrl":21,"updatedAt":1070},"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},[1061,1064,1067],{"name":1062,"slug":1063,"type":16},"Configuration","configuration",{"name":1065,"slug":1066,"type":16},"Desktop","desktop",{"name":1068,"slug":1069,"type":16},"Themes","themes","2026-07-13T06:23:41.407811",{"slug":4,"name":4,"fn":5,"description":6,"org":1072,"tags":1073,"stars":20,"repoUrl":21,"updatedAt":22},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1074,1075],{"name":18,"slug":19,"type":16},{"name":14,"slug":15,"type":16},{"slug":1077,"name":1077,"fn":1078,"description":1079,"org":1080,"tags":1081,"stars":20,"repoUrl":21,"updatedAt":1087},"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},[1082,1083,1086],{"name":18,"slug":19,"type":16},{"name":1084,"slug":1085,"type":16},"AI Infrastructure","ai-infrastructure",{"name":1062,"slug":1063,"type":16},"2026-07-13T06:23:08.838181",{"slug":1089,"name":1089,"fn":1090,"description":1091,"org":1092,"tags":1093,"stars":20,"repoUrl":21,"updatedAt":1102},"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},[1094,1097,1100],{"name":1095,"slug":1096,"type":16},"Creative","creative",{"name":1098,"slug":1099,"type":16},"Graphics","graphics",{"name":1101,"slug":1089,"type":16},"Image Generation","2026-07-13T06:23:06.189403",69,{"items":1105,"total":1147},[1106,1112,1118,1124,1130,1136,1142],{"slug":954,"name":954,"fn":955,"description":956,"org":1107,"tags":1108,"stars":20,"repoUrl":21,"updatedAt":966},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1109,1110,1111],{"name":18,"slug":19,"type":16},{"name":961,"slug":962,"type":16},{"name":964,"slug":965,"type":16},{"slug":968,"name":969,"fn":970,"description":971,"org":1113,"tags":1114,"stars":20,"repoUrl":21,"updatedAt":981},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1115,1116,1117],{"name":18,"slug":19,"type":16},{"name":976,"slug":977,"type":16},{"name":979,"slug":980,"type":16},{"slug":983,"name":983,"fn":984,"description":985,"org":1119,"tags":1120,"stars":20,"repoUrl":21,"updatedAt":993},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1121,1122,1123],{"name":18,"slug":19,"type":16},{"name":961,"slug":962,"type":16},{"name":991,"slug":992,"type":16},{"slug":995,"name":995,"fn":996,"description":997,"org":1125,"tags":1126,"stars":20,"repoUrl":21,"updatedAt":1005},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1127,1128,1129],{"name":18,"slug":19,"type":16},{"name":961,"slug":962,"type":16},{"name":1003,"slug":1004,"type":16},{"slug":1007,"name":1007,"fn":1008,"description":1009,"org":1131,"tags":1132,"stars":20,"repoUrl":21,"updatedAt":1019},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1133,1134,1135],{"name":18,"slug":19,"type":16},{"name":1014,"slug":1015,"type":16},{"name":1017,"slug":1018,"type":16},{"slug":1021,"name":1021,"fn":1022,"description":1023,"org":1137,"tags":1138,"stars":20,"repoUrl":21,"updatedAt":1031},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1139,1140,1141],{"name":18,"slug":19,"type":16},{"name":961,"slug":962,"type":16},{"name":1029,"slug":1030,"type":16},{"slug":1033,"name":1033,"fn":1034,"description":1035,"org":1143,"tags":1144,"stars":20,"repoUrl":21,"updatedAt":1042},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1145,1146],{"name":1029,"slug":1030,"type":16},{"name":1040,"slug":1041,"type":16},19]