[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-letta-migrating-memory":3,"mdc-ajgb2y-key":41,"related-org-letta-migrating-memory":779,"related-repo-letta-migrating-memory":937},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":36,"sourceUrl":39,"mdContent":40},"migrating-memory","migrate memory blocks between agents","Migrate memory blocks from an existing agent to the current agent. Use when the user wants to copy or share memory from another agent, or during \u002Finit when setting up a new agent that should inherit memory from an existing one.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"letta","Letta","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fletta.png","letta-ai",[13,17,20],{"name":14,"slug":15,"type":16},"Memory","memory","tag",{"name":18,"slug":19,"type":16},"Migration","migration",{"name":21,"slug":22,"type":16},"Agents","agents",2831,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fletta-code","2026-07-16T06:00:31.060964",null,329,[29,30,31,32,33,8,34,35],"agent-memory","ai","claude","codex","continual-learning","memgpt","stateful-agents",{"repoUrl":24,"stars":23,"forks":27,"topics":37,"description":38},[29,30,31,32,33,8,34,35],"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\u002Fmigrating-memory","---\nname: migrating-memory\ndescription: Migrate memory blocks from an existing agent to the current agent. Use when the user wants to copy or share memory from another agent, or during \u002Finit when setting up a new agent that should inherit memory from an existing one.\n---\n\n# Migrating Memory\n\nThis skill helps migrate memory blocks from an existing agent to a new agent, similar to macOS Migration Assistant for AI agents.\n\n> **Requires Memory Filesystem (memfs)**\n>\n> This workflow is memfs-first. If memfs is enabled, do **not** use the legacy block commands — they can conflict with file-based edits.\n>\n> **To check:** Look for a `memory_filesystem` block in your system prompt. If it shows a tree structure starting with `\u002Fmemory\u002F` including a `system\u002F` directory, memfs is enabled.\n>\n> **To enable:** Ask the user to run `\u002Fmemfs enable`, then reload the CLI.\n\n## When to Use This Skill\n\n- User is setting up a new agent that should inherit memory from an existing one\n- User wants to share memory blocks across multiple agents\n- User is replacing an old agent with a new one\n- User mentions they have an existing agent with useful memory\n\n## Migration Method (memfs-first)\n\n### Export → Copy → Sync\n\nThis is the recommended flow:\n\n1. **Export the source agent's memfs to a temp directory**\n   ```bash\n   letta memory export --agent \u003Csource-agent-id> --out \u002Ftmp\u002Fletta-memory-\u003Csource-agent-id>\n   ```\n\n2. **Copy the files you want into your own memfs**\n   - `system\u002F` = attached blocks (always loaded)\n   - root = detached blocks\n\n   Example:\n   ```bash\n   cp -r \u002Ftmp\u002Fletta-memory-agent-abc123\u002Fsystem\u002Fproject ~\u002F.letta\u002Fagents\u002F$LETTA_AGENT_ID\u002Fmemory\u002Fsystem\u002F\n   cp \u002Ftmp\u002Fletta-memory-agent-abc123\u002Fnotes.md ~\u002F.letta\u002Fagents\u002F$LETTA_AGENT_ID\u002Fmemory\u002F\n   ```\n\n3. **Commit and push the memory repo**\n   ```bash\n   cd ~\u002F.letta\u002Fagents\u002F$LETTA_AGENT_ID\u002Fmemory\n   git add system\u002Fproject notes.md\n   git commit -m \"Import memory from source agent\"\n   git push\n   ```\n\nThis gives you full control over what you bring across and keeps everything consistent with memfs.\n\n## If MemFS Is Disabled\n\nThe legacy block-level CLI commands have been removed. Enable MemFS first, then use the export → copy → sync workflow above.\n\nIf you run into duplicate filenames while copying memory files, rename the incoming file or merge its contents manually before committing.\n\n## Workflow\n\n### Step 1: Identify Source Agent\n\nAsk the user for the source agent's ID (e.g., `agent-abc123`).\n\nIf they don't know the ID, invoke the **finding-agents** skill to search:\n```\nSkill({ skill: \"finding-agents\" })\n```\n\nExample: \"What's the ID of the agent you want to migrate memory from?\"\n\n## Example: Migrating Project Memory\n\nScenario: You're a new agent and want to inherit memory from an existing agent \"ProjectX-v1\".\n\n1. **Get source agent ID from user:**\n   User provides: `agent-abc123`\n\n2. **Export their memfs:**\n   ```bash\n   letta memory export --agent agent-abc123 --out \u002Ftmp\u002Fletta-memory-agent-abc123\n   ```\n\n3. **Copy the relevant files into your memfs:**\n   ```bash\n   cp -r \u002Ftmp\u002Fletta-memory-agent-abc123\u002Fsystem\u002Fproject ~\u002F.letta\u002Fagents\u002F$LETTA_AGENT_ID\u002Fmemory\u002Fsystem\u002F\n   ```\n\n4. **Commit and push:**\n   ```bash\n   cd ~\u002F.letta\u002Fagents\u002F$LETTA_AGENT_ID\u002Fmemory\n   git add system\u002Fproject\n   git commit -m \"Import project memory\"\n   git push\n   ```\n",{"data":42,"body":43},{"name":4,"description":6},{"type":44,"children":45},"root",[46,54,60,138,145,170,176,183,188,492,497,503,508,513,519,525,538,550,560,565,571,576,773],{"type":47,"tag":48,"props":49,"children":50},"element","h1",{"id":4},[51],{"type":52,"value":53},"text","Migrating Memory",{"type":47,"tag":55,"props":56,"children":57},"p",{},[58],{"type":52,"value":59},"This skill helps migrate memory blocks from an existing agent to a new agent, similar to macOS Migration Assistant for AI agents.",{"type":47,"tag":61,"props":62,"children":63},"blockquote",{},[64,73,85,120],{"type":47,"tag":55,"props":65,"children":66},{},[67],{"type":47,"tag":68,"props":69,"children":70},"strong",{},[71],{"type":52,"value":72},"Requires Memory Filesystem (memfs)",{"type":47,"tag":55,"props":74,"children":75},{},[76,78,83],{"type":52,"value":77},"This workflow is memfs-first. If memfs is enabled, do ",{"type":47,"tag":68,"props":79,"children":80},{},[81],{"type":52,"value":82},"not",{"type":52,"value":84}," use the legacy block commands — they can conflict with file-based edits.",{"type":47,"tag":55,"props":86,"children":87},{},[88,93,95,102,104,110,112,118],{"type":47,"tag":68,"props":89,"children":90},{},[91],{"type":52,"value":92},"To check:",{"type":52,"value":94}," Look for a ",{"type":47,"tag":96,"props":97,"children":99},"code",{"className":98},[],[100],{"type":52,"value":101},"memory_filesystem",{"type":52,"value":103}," block in your system prompt. If it shows a tree structure starting with ",{"type":47,"tag":96,"props":105,"children":107},{"className":106},[],[108],{"type":52,"value":109},"\u002Fmemory\u002F",{"type":52,"value":111}," including a ",{"type":47,"tag":96,"props":113,"children":115},{"className":114},[],[116],{"type":52,"value":117},"system\u002F",{"type":52,"value":119}," directory, memfs is enabled.",{"type":47,"tag":55,"props":121,"children":122},{},[123,128,130,136],{"type":47,"tag":68,"props":124,"children":125},{},[126],{"type":52,"value":127},"To enable:",{"type":52,"value":129}," Ask the user to run ",{"type":47,"tag":96,"props":131,"children":133},{"className":132},[],[134],{"type":52,"value":135},"\u002Fmemfs enable",{"type":52,"value":137},", then reload the CLI.",{"type":47,"tag":139,"props":140,"children":142},"h2",{"id":141},"when-to-use-this-skill",[143],{"type":52,"value":144},"When to Use This Skill",{"type":47,"tag":146,"props":147,"children":148},"ul",{},[149,155,160,165],{"type":47,"tag":150,"props":151,"children":152},"li",{},[153],{"type":52,"value":154},"User is setting up a new agent that should inherit memory from an existing one",{"type":47,"tag":150,"props":156,"children":157},{},[158],{"type":52,"value":159},"User wants to share memory blocks across multiple agents",{"type":47,"tag":150,"props":161,"children":162},{},[163],{"type":52,"value":164},"User is replacing an old agent with a new one",{"type":47,"tag":150,"props":166,"children":167},{},[168],{"type":52,"value":169},"User mentions they have an existing agent with useful memory",{"type":47,"tag":139,"props":171,"children":173},{"id":172},"migration-method-memfs-first",[174],{"type":52,"value":175},"Migration Method (memfs-first)",{"type":47,"tag":177,"props":178,"children":180},"h3",{"id":179},"export-copy-sync",[181],{"type":52,"value":182},"Export → Copy → Sync",{"type":47,"tag":55,"props":184,"children":185},{},[186],{"type":52,"value":187},"This is the recommended flow:",{"type":47,"tag":189,"props":190,"children":191},"ol",{},[192,288,386],{"type":47,"tag":150,"props":193,"children":194},{},[195,200],{"type":47,"tag":68,"props":196,"children":197},{},[198],{"type":52,"value":199},"Export the source agent's memfs to a temp directory",{"type":47,"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","letta memory export --agent \u003Csource-agent-id> --out \u002Ftmp\u002Fletta-memory-\u003Csource-agent-id>\n","bash","",[208],{"type":47,"tag":96,"props":209,"children":210},{"__ignoreMap":206},[211],{"type":47,"tag":212,"props":213,"children":216},"span",{"class":214,"line":215},"line",1,[217,222,228,233,238,244,249,255,260,265,270,275,279,283],{"type":47,"tag":212,"props":218,"children":220},{"style":219},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[221],{"type":52,"value":8},{"type":47,"tag":212,"props":223,"children":225},{"style":224},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[226],{"type":52,"value":227}," memory",{"type":47,"tag":212,"props":229,"children":230},{"style":224},[231],{"type":52,"value":232}," export",{"type":47,"tag":212,"props":234,"children":235},{"style":224},[236],{"type":52,"value":237}," --agent",{"type":47,"tag":212,"props":239,"children":241},{"style":240},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[242],{"type":52,"value":243}," \u003C",{"type":47,"tag":212,"props":245,"children":246},{"style":224},[247],{"type":52,"value":248},"source-agent-i",{"type":47,"tag":212,"props":250,"children":252},{"style":251},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[253],{"type":52,"value":254},"d",{"type":47,"tag":212,"props":256,"children":257},{"style":240},[258],{"type":52,"value":259},">",{"type":47,"tag":212,"props":261,"children":262},{"style":224},[263],{"type":52,"value":264}," --out",{"type":47,"tag":212,"props":266,"children":267},{"style":224},[268],{"type":52,"value":269}," \u002Ftmp\u002Fletta-memory-",{"type":47,"tag":212,"props":271,"children":272},{"style":240},[273],{"type":52,"value":274},"\u003C",{"type":47,"tag":212,"props":276,"children":277},{"style":224},[278],{"type":52,"value":248},{"type":47,"tag":212,"props":280,"children":281},{"style":251},[282],{"type":52,"value":254},{"type":47,"tag":212,"props":284,"children":285},{"style":240},[286],{"type":52,"value":287},">\n",{"type":47,"tag":150,"props":289,"children":290},{},[291,296,314,318,320],{"type":47,"tag":68,"props":292,"children":293},{},[294],{"type":52,"value":295},"Copy the files you want into your own memfs",{"type":47,"tag":146,"props":297,"children":298},{},[299,309],{"type":47,"tag":150,"props":300,"children":301},{},[302,307],{"type":47,"tag":96,"props":303,"children":305},{"className":304},[],[306],{"type":52,"value":117},{"type":52,"value":308}," = attached blocks (always loaded)",{"type":47,"tag":150,"props":310,"children":311},{},[312],{"type":52,"value":313},"root = detached blocks",{"type":47,"tag":315,"props":316,"children":317},"br",{},[],{"type":52,"value":319},"Example:",{"type":47,"tag":201,"props":321,"children":323},{"className":203,"code":322,"language":205,"meta":206,"style":206},"cp -r \u002Ftmp\u002Fletta-memory-agent-abc123\u002Fsystem\u002Fproject ~\u002F.letta\u002Fagents\u002F$LETTA_AGENT_ID\u002Fmemory\u002Fsystem\u002F\ncp \u002Ftmp\u002Fletta-memory-agent-abc123\u002Fnotes.md ~\u002F.letta\u002Fagents\u002F$LETTA_AGENT_ID\u002Fmemory\u002F\n",[324],{"type":47,"tag":96,"props":325,"children":326},{"__ignoreMap":206},[327,360],{"type":47,"tag":212,"props":328,"children":329},{"class":214,"line":215},[330,335,340,345,350,355],{"type":47,"tag":212,"props":331,"children":332},{"style":219},[333],{"type":52,"value":334},"cp",{"type":47,"tag":212,"props":336,"children":337},{"style":224},[338],{"type":52,"value":339}," -r",{"type":47,"tag":212,"props":341,"children":342},{"style":224},[343],{"type":52,"value":344}," \u002Ftmp\u002Fletta-memory-agent-abc123\u002Fsystem\u002Fproject",{"type":47,"tag":212,"props":346,"children":347},{"style":224},[348],{"type":52,"value":349}," ~\u002F.letta\u002Fagents\u002F",{"type":47,"tag":212,"props":351,"children":352},{"style":251},[353],{"type":52,"value":354},"$LETTA_AGENT_ID",{"type":47,"tag":212,"props":356,"children":357},{"style":224},[358],{"type":52,"value":359},"\u002Fmemory\u002Fsystem\u002F\n",{"type":47,"tag":212,"props":361,"children":363},{"class":214,"line":362},2,[364,368,373,377,381],{"type":47,"tag":212,"props":365,"children":366},{"style":219},[367],{"type":52,"value":334},{"type":47,"tag":212,"props":369,"children":370},{"style":224},[371],{"type":52,"value":372}," \u002Ftmp\u002Fletta-memory-agent-abc123\u002Fnotes.md",{"type":47,"tag":212,"props":374,"children":375},{"style":224},[376],{"type":52,"value":349},{"type":47,"tag":212,"props":378,"children":379},{"style":251},[380],{"type":52,"value":354},{"type":47,"tag":212,"props":382,"children":383},{"style":224},[384],{"type":52,"value":385},"\u002Fmemory\u002F\n",{"type":47,"tag":150,"props":387,"children":388},{},[389,394],{"type":47,"tag":68,"props":390,"children":391},{},[392],{"type":52,"value":393},"Commit and push the memory repo",{"type":47,"tag":201,"props":395,"children":397},{"className":203,"code":396,"language":205,"meta":206,"style":206},"cd ~\u002F.letta\u002Fagents\u002F$LETTA_AGENT_ID\u002Fmemory\ngit add system\u002Fproject notes.md\ngit commit -m \"Import memory from source agent\"\ngit push\n",[398],{"type":47,"tag":96,"props":399,"children":400},{"__ignoreMap":206},[401,423,446,479],{"type":47,"tag":212,"props":402,"children":403},{"class":214,"line":215},[404,410,414,418],{"type":47,"tag":212,"props":405,"children":407},{"style":406},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[408],{"type":52,"value":409},"cd",{"type":47,"tag":212,"props":411,"children":412},{"style":224},[413],{"type":52,"value":349},{"type":47,"tag":212,"props":415,"children":416},{"style":251},[417],{"type":52,"value":354},{"type":47,"tag":212,"props":419,"children":420},{"style":224},[421],{"type":52,"value":422},"\u002Fmemory\n",{"type":47,"tag":212,"props":424,"children":425},{"class":214,"line":362},[426,431,436,441],{"type":47,"tag":212,"props":427,"children":428},{"style":219},[429],{"type":52,"value":430},"git",{"type":47,"tag":212,"props":432,"children":433},{"style":224},[434],{"type":52,"value":435}," add",{"type":47,"tag":212,"props":437,"children":438},{"style":224},[439],{"type":52,"value":440}," system\u002Fproject",{"type":47,"tag":212,"props":442,"children":443},{"style":224},[444],{"type":52,"value":445}," notes.md\n",{"type":47,"tag":212,"props":447,"children":449},{"class":214,"line":448},3,[450,454,459,464,469,474],{"type":47,"tag":212,"props":451,"children":452},{"style":219},[453],{"type":52,"value":430},{"type":47,"tag":212,"props":455,"children":456},{"style":224},[457],{"type":52,"value":458}," commit",{"type":47,"tag":212,"props":460,"children":461},{"style":224},[462],{"type":52,"value":463}," -m",{"type":47,"tag":212,"props":465,"children":466},{"style":240},[467],{"type":52,"value":468}," \"",{"type":47,"tag":212,"props":470,"children":471},{"style":224},[472],{"type":52,"value":473},"Import memory from source agent",{"type":47,"tag":212,"props":475,"children":476},{"style":240},[477],{"type":52,"value":478},"\"\n",{"type":47,"tag":212,"props":480,"children":482},{"class":214,"line":481},4,[483,487],{"type":47,"tag":212,"props":484,"children":485},{"style":219},[486],{"type":52,"value":430},{"type":47,"tag":212,"props":488,"children":489},{"style":224},[490],{"type":52,"value":491}," push\n",{"type":47,"tag":55,"props":493,"children":494},{},[495],{"type":52,"value":496},"This gives you full control over what you bring across and keeps everything consistent with memfs.",{"type":47,"tag":139,"props":498,"children":500},{"id":499},"if-memfs-is-disabled",[501],{"type":52,"value":502},"If MemFS Is Disabled",{"type":47,"tag":55,"props":504,"children":505},{},[506],{"type":52,"value":507},"The legacy block-level CLI commands have been removed. Enable MemFS first, then use the export → copy → sync workflow above.",{"type":47,"tag":55,"props":509,"children":510},{},[511],{"type":52,"value":512},"If you run into duplicate filenames while copying memory files, rename the incoming file or merge its contents manually before committing.",{"type":47,"tag":139,"props":514,"children":516},{"id":515},"workflow",[517],{"type":52,"value":518},"Workflow",{"type":47,"tag":177,"props":520,"children":522},{"id":521},"step-1-identify-source-agent",[523],{"type":52,"value":524},"Step 1: Identify Source Agent",{"type":47,"tag":55,"props":526,"children":527},{},[528,530,536],{"type":52,"value":529},"Ask the user for the source agent's ID (e.g., ",{"type":47,"tag":96,"props":531,"children":533},{"className":532},[],[534],{"type":52,"value":535},"agent-abc123",{"type":52,"value":537},").",{"type":47,"tag":55,"props":539,"children":540},{},[541,543,548],{"type":52,"value":542},"If they don't know the ID, invoke the ",{"type":47,"tag":68,"props":544,"children":545},{},[546],{"type":52,"value":547},"finding-agents",{"type":52,"value":549}," skill to search:",{"type":47,"tag":201,"props":551,"children":555},{"className":552,"code":554,"language":52},[553],"language-text","Skill({ skill: \"finding-agents\" })\n",[556],{"type":47,"tag":96,"props":557,"children":558},{"__ignoreMap":206},[559],{"type":52,"value":554},{"type":47,"tag":55,"props":561,"children":562},{},[563],{"type":52,"value":564},"Example: \"What's the ID of the agent you want to migrate memory from?\"",{"type":47,"tag":139,"props":566,"children":568},{"id":567},"example-migrating-project-memory",[569],{"type":52,"value":570},"Example: Migrating Project Memory",{"type":47,"tag":55,"props":572,"children":573},{},[574],{"type":52,"value":575},"Scenario: You're a new agent and want to inherit memory from an existing agent \"ProjectX-v1\".",{"type":47,"tag":189,"props":577,"children":578},{},[579,594,642,684],{"type":47,"tag":150,"props":580,"children":581},{},[582,587,589],{"type":47,"tag":68,"props":583,"children":584},{},[585],{"type":52,"value":586},"Get source agent ID from user:",{"type":52,"value":588},"\nUser provides: ",{"type":47,"tag":96,"props":590,"children":592},{"className":591},[],[593],{"type":52,"value":535},{"type":47,"tag":150,"props":595,"children":596},{},[597,602],{"type":47,"tag":68,"props":598,"children":599},{},[600],{"type":52,"value":601},"Export their memfs:",{"type":47,"tag":201,"props":603,"children":605},{"className":203,"code":604,"language":205,"meta":206,"style":206},"letta memory export --agent agent-abc123 --out \u002Ftmp\u002Fletta-memory-agent-abc123\n",[606],{"type":47,"tag":96,"props":607,"children":608},{"__ignoreMap":206},[609],{"type":47,"tag":212,"props":610,"children":611},{"class":214,"line":215},[612,616,620,624,628,633,637],{"type":47,"tag":212,"props":613,"children":614},{"style":219},[615],{"type":52,"value":8},{"type":47,"tag":212,"props":617,"children":618},{"style":224},[619],{"type":52,"value":227},{"type":47,"tag":212,"props":621,"children":622},{"style":224},[623],{"type":52,"value":232},{"type":47,"tag":212,"props":625,"children":626},{"style":224},[627],{"type":52,"value":237},{"type":47,"tag":212,"props":629,"children":630},{"style":224},[631],{"type":52,"value":632}," agent-abc123",{"type":47,"tag":212,"props":634,"children":635},{"style":224},[636],{"type":52,"value":264},{"type":47,"tag":212,"props":638,"children":639},{"style":224},[640],{"type":52,"value":641}," \u002Ftmp\u002Fletta-memory-agent-abc123\n",{"type":47,"tag":150,"props":643,"children":644},{},[645,650],{"type":47,"tag":68,"props":646,"children":647},{},[648],{"type":52,"value":649},"Copy the relevant files into your memfs:",{"type":47,"tag":201,"props":651,"children":653},{"className":203,"code":652,"language":205,"meta":206,"style":206},"cp -r \u002Ftmp\u002Fletta-memory-agent-abc123\u002Fsystem\u002Fproject ~\u002F.letta\u002Fagents\u002F$LETTA_AGENT_ID\u002Fmemory\u002Fsystem\u002F\n",[654],{"type":47,"tag":96,"props":655,"children":656},{"__ignoreMap":206},[657],{"type":47,"tag":212,"props":658,"children":659},{"class":214,"line":215},[660,664,668,672,676,680],{"type":47,"tag":212,"props":661,"children":662},{"style":219},[663],{"type":52,"value":334},{"type":47,"tag":212,"props":665,"children":666},{"style":224},[667],{"type":52,"value":339},{"type":47,"tag":212,"props":669,"children":670},{"style":224},[671],{"type":52,"value":344},{"type":47,"tag":212,"props":673,"children":674},{"style":224},[675],{"type":52,"value":349},{"type":47,"tag":212,"props":677,"children":678},{"style":251},[679],{"type":52,"value":354},{"type":47,"tag":212,"props":681,"children":682},{"style":224},[683],{"type":52,"value":359},{"type":47,"tag":150,"props":685,"children":686},{},[687,692],{"type":47,"tag":68,"props":688,"children":689},{},[690],{"type":52,"value":691},"Commit and push:",{"type":47,"tag":201,"props":693,"children":695},{"className":203,"code":694,"language":205,"meta":206,"style":206},"cd ~\u002F.letta\u002Fagents\u002F$LETTA_AGENT_ID\u002Fmemory\ngit add system\u002Fproject\ngit commit -m \"Import project memory\"\ngit push\n",[696],{"type":47,"tag":96,"props":697,"children":698},{"__ignoreMap":206},[699,718,734,762],{"type":47,"tag":212,"props":700,"children":701},{"class":214,"line":215},[702,706,710,714],{"type":47,"tag":212,"props":703,"children":704},{"style":406},[705],{"type":52,"value":409},{"type":47,"tag":212,"props":707,"children":708},{"style":224},[709],{"type":52,"value":349},{"type":47,"tag":212,"props":711,"children":712},{"style":251},[713],{"type":52,"value":354},{"type":47,"tag":212,"props":715,"children":716},{"style":224},[717],{"type":52,"value":422},{"type":47,"tag":212,"props":719,"children":720},{"class":214,"line":362},[721,725,729],{"type":47,"tag":212,"props":722,"children":723},{"style":219},[724],{"type":52,"value":430},{"type":47,"tag":212,"props":726,"children":727},{"style":224},[728],{"type":52,"value":435},{"type":47,"tag":212,"props":730,"children":731},{"style":224},[732],{"type":52,"value":733}," system\u002Fproject\n",{"type":47,"tag":212,"props":735,"children":736},{"class":214,"line":448},[737,741,745,749,753,758],{"type":47,"tag":212,"props":738,"children":739},{"style":219},[740],{"type":52,"value":430},{"type":47,"tag":212,"props":742,"children":743},{"style":224},[744],{"type":52,"value":458},{"type":47,"tag":212,"props":746,"children":747},{"style":224},[748],{"type":52,"value":463},{"type":47,"tag":212,"props":750,"children":751},{"style":240},[752],{"type":52,"value":468},{"type":47,"tag":212,"props":754,"children":755},{"style":224},[756],{"type":52,"value":757},"Import project memory",{"type":47,"tag":212,"props":759,"children":760},{"style":240},[761],{"type":52,"value":478},{"type":47,"tag":212,"props":763,"children":764},{"class":214,"line":481},[765,769],{"type":47,"tag":212,"props":766,"children":767},{"style":219},[768],{"type":52,"value":430},{"type":47,"tag":212,"props":770,"children":771},{"style":224},[772],{"type":52,"value":491},{"type":47,"tag":774,"props":775,"children":776},"style",{},[777],{"type":52,"value":778},"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":780,"total":936},[781,795,810,822,834,848,860,871,883,899,909,921],{"slug":782,"name":782,"fn":783,"description":784,"org":785,"tags":786,"stars":23,"repoUrl":24,"updatedAt":794},"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},[787,788,791],{"name":21,"slug":22,"type":16},{"name":789,"slug":790,"type":16},"Automation","automation",{"name":792,"slug":793,"type":16},"GitHub","github","2026-07-13T06:22:58.45767",{"slug":796,"name":797,"fn":798,"description":799,"org":800,"tags":801,"stars":23,"repoUrl":24,"updatedAt":809},"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},[802,803,806],{"name":21,"slug":22,"type":16},{"name":804,"slug":805,"type":16},"AI Context","ai-context",{"name":807,"slug":808,"type":16},"Debugging","debugging","2026-07-13T06:22:50.151002",{"slug":811,"name":811,"fn":812,"description":813,"org":814,"tags":815,"stars":23,"repoUrl":24,"updatedAt":821},"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},[816,817,818],{"name":21,"slug":22,"type":16},{"name":789,"slug":790,"type":16},{"name":819,"slug":820,"type":16},"MCP","mcp","2026-07-13T06:23:37.646079",{"slug":823,"name":823,"fn":824,"description":825,"org":826,"tags":827,"stars":23,"repoUrl":24,"updatedAt":833},"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},[828,829,830],{"name":21,"slug":22,"type":16},{"name":789,"slug":790,"type":16},{"name":831,"slug":832,"type":16},"Coding","coding","2026-07-23T05:42:38.133565",{"slug":835,"name":835,"fn":836,"description":837,"org":838,"tags":839,"stars":23,"repoUrl":24,"updatedAt":847},"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},[840,841,844],{"name":21,"slug":22,"type":16},{"name":842,"slug":843,"type":16},"Documentation","documentation",{"name":845,"slug":846,"type":16},"Plugin Development","plugin-development","2026-07-13T06:22:56.998659",{"slug":849,"name":849,"fn":850,"description":851,"org":852,"tags":853,"stars":23,"repoUrl":24,"updatedAt":859},"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},[854,855,856],{"name":21,"slug":22,"type":16},{"name":789,"slug":790,"type":16},{"name":857,"slug":858,"type":16},"CLI","cli","2026-07-13T06:23:18.266798",{"slug":861,"name":861,"fn":862,"description":863,"org":864,"tags":865,"stars":23,"repoUrl":24,"updatedAt":870},"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},[866,867],{"name":857,"slug":858,"type":16},{"name":868,"slug":869,"type":16},"Engineering","engineering","2026-07-13T06:23:27.465985",{"slug":872,"name":872,"fn":873,"description":874,"org":875,"tags":876,"stars":23,"repoUrl":24,"updatedAt":882},"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},[877,878,879],{"name":21,"slug":22,"type":16},{"name":831,"slug":832,"type":16},{"name":880,"slug":881,"type":16},"Multi-Agent","multi-agent","2026-07-26T05:46:56.388845",{"slug":884,"name":884,"fn":885,"description":886,"org":887,"tags":888,"stars":23,"repoUrl":24,"updatedAt":898},"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},[889,892,895],{"name":890,"slug":891,"type":16},"Configuration","configuration",{"name":893,"slug":894,"type":16},"Desktop","desktop",{"name":896,"slug":897,"type":16},"Themes","themes","2026-07-13T06:23:41.407811",{"slug":547,"name":547,"fn":900,"description":901,"org":902,"tags":903,"stars":23,"repoUrl":24,"updatedAt":908},"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},[904,905],{"name":21,"slug":22,"type":16},{"name":906,"slug":907,"type":16},"Management","management","2026-07-16T06:02:17.297841",{"slug":910,"name":910,"fn":911,"description":912,"org":913,"tags":914,"stars":23,"repoUrl":24,"updatedAt":920},"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},[915,916,919],{"name":21,"slug":22,"type":16},{"name":917,"slug":918,"type":16},"AI Infrastructure","ai-infrastructure",{"name":890,"slug":891,"type":16},"2026-07-13T06:23:08.838181",{"slug":922,"name":922,"fn":923,"description":924,"org":925,"tags":926,"stars":23,"repoUrl":24,"updatedAt":935},"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},[927,930,933],{"name":928,"slug":929,"type":16},"Creative","creative",{"name":931,"slug":932,"type":16},"Graphics","graphics",{"name":934,"slug":922,"type":16},"Image Generation","2026-07-13T06:23:06.189403",69,{"items":938,"total":980},[939,945,951,957,963,969,975],{"slug":782,"name":782,"fn":783,"description":784,"org":940,"tags":941,"stars":23,"repoUrl":24,"updatedAt":794},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[942,943,944],{"name":21,"slug":22,"type":16},{"name":789,"slug":790,"type":16},{"name":792,"slug":793,"type":16},{"slug":796,"name":797,"fn":798,"description":799,"org":946,"tags":947,"stars":23,"repoUrl":24,"updatedAt":809},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[948,949,950],{"name":21,"slug":22,"type":16},{"name":804,"slug":805,"type":16},{"name":807,"slug":808,"type":16},{"slug":811,"name":811,"fn":812,"description":813,"org":952,"tags":953,"stars":23,"repoUrl":24,"updatedAt":821},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[954,955,956],{"name":21,"slug":22,"type":16},{"name":789,"slug":790,"type":16},{"name":819,"slug":820,"type":16},{"slug":823,"name":823,"fn":824,"description":825,"org":958,"tags":959,"stars":23,"repoUrl":24,"updatedAt":833},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[960,961,962],{"name":21,"slug":22,"type":16},{"name":789,"slug":790,"type":16},{"name":831,"slug":832,"type":16},{"slug":835,"name":835,"fn":836,"description":837,"org":964,"tags":965,"stars":23,"repoUrl":24,"updatedAt":847},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[966,967,968],{"name":21,"slug":22,"type":16},{"name":842,"slug":843,"type":16},{"name":845,"slug":846,"type":16},{"slug":849,"name":849,"fn":850,"description":851,"org":970,"tags":971,"stars":23,"repoUrl":24,"updatedAt":859},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[972,973,974],{"name":21,"slug":22,"type":16},{"name":789,"slug":790,"type":16},{"name":857,"slug":858,"type":16},{"slug":861,"name":861,"fn":862,"description":863,"org":976,"tags":977,"stars":23,"repoUrl":24,"updatedAt":870},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[978,979],{"name":857,"slug":858,"type":16},{"name":868,"slug":869,"type":16},19]