[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-letta-setting-profile-images":3,"mdc--cwahyo-key":34,"related-org-letta-setting-profile-images":769,"related-repo-letta-setting-profile-images":928},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":32,"mdContent":33},"setting-profile-images","manage agent profile images","Sets Letta Desktop and Letta Code agent profile images by writing profile.png into an agent MemFS repository. Use when the user asks to add, change, generate, or fix an agent avatar, profile picture, profile image, or Desktop agent photo.",{"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},"Images","images","tag",{"name":18,"slug":19,"type":16},"Desktop","desktop",{"name":21,"slug":22,"type":16},"Agents","agents",127,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fskills","2026-07-13T06:25:45.491695",null,20,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":31},[],"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\u002Fletta\u002Fsetting-profile-images","---\nname: setting-profile-images\ndescription: Sets Letta Desktop and Letta Code agent profile images by writing profile.png into an agent MemFS repository. Use when the user asks to add, change, generate, or fix an agent avatar, profile picture, profile image, or Desktop agent photo.\n---\n\n# Setting Profile Images\n\n## Key fact\n\nLetta Desktop displays an agent profile image from the agent memory repository at:\n\n```text\n$MEMORY_DIR\u002Fprofile.png\n```\n\nThe Desktop\u002Flocal backend API reads the same file via:\n\n```text\nGET \u002Fv1\u002Fagents\u002F:agent_id\u002Fprofile-picture\n```\n\nFor local Desktop agents, do **not** PATCH arbitrary agent metadata for the avatar. Write `profile.png` into MemFS and commit it.\n\n## Workflow\n\n1. Obtain an image:\n   - Use a user-provided image path, or\n   - Generate\u002Fcreate an avatar image with another image\u002Fart skill, then save it locally.\n2. Convert\u002Fcrop it to a square PNG using `scripts\u002Fset_profile_image.py`.\n3. Commit the resulting `profile.png` to the target agent's memory repo.\n4. Verify via the profile-picture endpoint when `LETTA_BASE_URL` and `LETTA_API_KEY` are available.\n5. Tell the user to reload\u002Freopen the agent profile in Desktop if the old image is cached.\n\n## Current agent quick start\n\nLocate this skill's script if needed:\n\n```bash\nSCRIPT=$(find ~\u002Fletta\u002Fskills ~\u002F.letta\u002Fskills -path '*\u002Fsetting-profile-images\u002Fscripts\u002Fset_profile_image.py' -print -quit)\n```\n\nSet the current agent's profile image:\n\n```bash\npython3 \"$SCRIPT\" \u002Fpath\u002Fto\u002Favatar.png\n```\n\nThe script uses, in order:\n\n- `--memory-dir`, if passed\n- `$MEMORY_DIR`\n- `$LETTA_MEMORY_DIR`\n- `~\u002F.letta\u002Flc-local-backend\u002Fmemfs\u002F$AGENT_ID\u002Fmemory`\n\n## Other local agent\n\n```bash\npython3 \"$SCRIPT\" \u002Fpath\u002Fto\u002Favatar.png \\\n  --agent-id agent-local-... \\\n  --local-backend-dir ~\u002F.letta\u002Flc-local-backend\n```\n\n## Useful options\n\n```bash\npython3 \"$SCRIPT\" \u002Fpath\u002Fto\u002Favatar.jpg --size 512\npython3 \"$SCRIPT\" \u002Fpath\u002Fto\u002Favatar.jpg --no-commit\npython3 \"$SCRIPT\" \u002Fpath\u002Fto\u002Favatar.jpg --verify\n```\n\n- `--size` controls the square output size in pixels. Use `512` unless there is a reason not to.\n- `--no-commit` writes the file but leaves the memory repo uncommitted.\n- `--verify` calls `\u002Fv1\u002Fagents\u002F:agent_id\u002Fprofile-picture` after writing, when API env vars are present.\n\n## Manual fallback\n\nIf the script is unavailable:\n\n```bash\ncp \u002Fpath\u002Fto\u002Favatar.png \"$MEMORY_DIR\u002Fprofile.png\"\ngit -C \"$MEMORY_DIR\" add profile.png\ngit -C \"$MEMORY_DIR\" commit --author=\"$AGENT_NAME \u003C$AGENT_ID@letta.com>\" -m 'Add agent profile image'\n```\n\nMake sure the image is a reasonably sized square PNG before copying.\n",{"data":35,"body":36},{"name":4,"description":6},{"type":37,"children":38},"root",[39,47,54,60,73,78,87,108,114,189,195,200,279,284,319,324,365,371,439,445,543,595,601,606,758,763],{"type":40,"tag":41,"props":42,"children":43},"element","h1",{"id":4},[44],{"type":45,"value":46},"text","Setting Profile Images",{"type":40,"tag":48,"props":49,"children":51},"h2",{"id":50},"key-fact",[52],{"type":45,"value":53},"Key fact",{"type":40,"tag":55,"props":56,"children":57},"p",{},[58],{"type":45,"value":59},"Letta Desktop displays an agent profile image from the agent memory repository at:",{"type":40,"tag":61,"props":62,"children":67},"pre",{"className":63,"code":65,"language":45,"meta":66},[64],"language-text","$MEMORY_DIR\u002Fprofile.png\n","",[68],{"type":40,"tag":69,"props":70,"children":71},"code",{"__ignoreMap":66},[72],{"type":45,"value":65},{"type":40,"tag":55,"props":74,"children":75},{},[76],{"type":45,"value":77},"The Desktop\u002Flocal backend API reads the same file via:",{"type":40,"tag":61,"props":79,"children":82},{"className":80,"code":81,"language":45,"meta":66},[64],"GET \u002Fv1\u002Fagents\u002F:agent_id\u002Fprofile-picture\n",[83],{"type":40,"tag":69,"props":84,"children":85},{"__ignoreMap":66},[86],{"type":45,"value":81},{"type":40,"tag":55,"props":88,"children":89},{},[90,92,98,100,106],{"type":45,"value":91},"For local Desktop agents, do ",{"type":40,"tag":93,"props":94,"children":95},"strong",{},[96],{"type":45,"value":97},"not",{"type":45,"value":99}," PATCH arbitrary agent metadata for the avatar. Write ",{"type":40,"tag":69,"props":101,"children":103},{"className":102},[],[104],{"type":45,"value":105},"profile.png",{"type":45,"value":107}," into MemFS and commit it.",{"type":40,"tag":48,"props":109,"children":111},{"id":110},"workflow",[112],{"type":45,"value":113},"Workflow",{"type":40,"tag":115,"props":116,"children":117},"ol",{},[118,138,151,163,184],{"type":40,"tag":119,"props":120,"children":121},"li",{},[122,124],{"type":45,"value":123},"Obtain an image:\n",{"type":40,"tag":125,"props":126,"children":127},"ul",{},[128,133],{"type":40,"tag":119,"props":129,"children":130},{},[131],{"type":45,"value":132},"Use a user-provided image path, or",{"type":40,"tag":119,"props":134,"children":135},{},[136],{"type":45,"value":137},"Generate\u002Fcreate an avatar image with another image\u002Fart skill, then save it locally.",{"type":40,"tag":119,"props":139,"children":140},{},[141,143,149],{"type":45,"value":142},"Convert\u002Fcrop it to a square PNG using ",{"type":40,"tag":69,"props":144,"children":146},{"className":145},[],[147],{"type":45,"value":148},"scripts\u002Fset_profile_image.py",{"type":45,"value":150},".",{"type":40,"tag":119,"props":152,"children":153},{},[154,156,161],{"type":45,"value":155},"Commit the resulting ",{"type":40,"tag":69,"props":157,"children":159},{"className":158},[],[160],{"type":45,"value":105},{"type":45,"value":162}," to the target agent's memory repo.",{"type":40,"tag":119,"props":164,"children":165},{},[166,168,174,176,182],{"type":45,"value":167},"Verify via the profile-picture endpoint when ",{"type":40,"tag":69,"props":169,"children":171},{"className":170},[],[172],{"type":45,"value":173},"LETTA_BASE_URL",{"type":45,"value":175}," and ",{"type":40,"tag":69,"props":177,"children":179},{"className":178},[],[180],{"type":45,"value":181},"LETTA_API_KEY",{"type":45,"value":183}," are available.",{"type":40,"tag":119,"props":185,"children":186},{},[187],{"type":45,"value":188},"Tell the user to reload\u002Freopen the agent profile in Desktop if the old image is cached.",{"type":40,"tag":48,"props":190,"children":192},{"id":191},"current-agent-quick-start",[193],{"type":45,"value":194},"Current agent quick start",{"type":40,"tag":55,"props":196,"children":197},{},[198],{"type":45,"value":199},"Locate this skill's script if needed:",{"type":40,"tag":61,"props":201,"children":205},{"className":202,"code":203,"language":204,"meta":66,"style":66},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","SCRIPT=$(find ~\u002Fletta\u002Fskills ~\u002F.letta\u002Fskills -path '*\u002Fsetting-profile-images\u002Fscripts\u002Fset_profile_image.py' -print -quit)\n","bash",[206],{"type":40,"tag":69,"props":207,"children":208},{"__ignoreMap":66},[209],{"type":40,"tag":210,"props":211,"children":214},"span",{"class":212,"line":213},"line",1,[215,221,227,233,239,244,249,254,259,264,269,274],{"type":40,"tag":210,"props":216,"children":218},{"style":217},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[219],{"type":45,"value":220},"SCRIPT",{"type":40,"tag":210,"props":222,"children":224},{"style":223},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[225],{"type":45,"value":226},"=$(",{"type":40,"tag":210,"props":228,"children":230},{"style":229},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[231],{"type":45,"value":232},"find",{"type":40,"tag":210,"props":234,"children":236},{"style":235},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[237],{"type":45,"value":238}," ~\u002Fletta\u002Fskills",{"type":40,"tag":210,"props":240,"children":241},{"style":235},[242],{"type":45,"value":243}," ~\u002F.letta\u002Fskills",{"type":40,"tag":210,"props":245,"children":246},{"style":235},[247],{"type":45,"value":248}," -path",{"type":40,"tag":210,"props":250,"children":251},{"style":223},[252],{"type":45,"value":253}," '",{"type":40,"tag":210,"props":255,"children":256},{"style":235},[257],{"type":45,"value":258},"*\u002Fsetting-profile-images\u002Fscripts\u002Fset_profile_image.py",{"type":40,"tag":210,"props":260,"children":261},{"style":223},[262],{"type":45,"value":263},"'",{"type":40,"tag":210,"props":265,"children":266},{"style":235},[267],{"type":45,"value":268}," -print",{"type":40,"tag":210,"props":270,"children":271},{"style":235},[272],{"type":45,"value":273}," -quit",{"type":40,"tag":210,"props":275,"children":276},{"style":223},[277],{"type":45,"value":278},")\n",{"type":40,"tag":55,"props":280,"children":281},{},[282],{"type":45,"value":283},"Set the current agent's profile image:",{"type":40,"tag":61,"props":285,"children":287},{"className":202,"code":286,"language":204,"meta":66,"style":66},"python3 \"$SCRIPT\" \u002Fpath\u002Fto\u002Favatar.png\n",[288],{"type":40,"tag":69,"props":289,"children":290},{"__ignoreMap":66},[291],{"type":40,"tag":210,"props":292,"children":293},{"class":212,"line":213},[294,299,304,309,314],{"type":40,"tag":210,"props":295,"children":296},{"style":229},[297],{"type":45,"value":298},"python3",{"type":40,"tag":210,"props":300,"children":301},{"style":223},[302],{"type":45,"value":303}," \"",{"type":40,"tag":210,"props":305,"children":306},{"style":217},[307],{"type":45,"value":308},"$SCRIPT",{"type":40,"tag":210,"props":310,"children":311},{"style":223},[312],{"type":45,"value":313},"\"",{"type":40,"tag":210,"props":315,"children":316},{"style":235},[317],{"type":45,"value":318}," \u002Fpath\u002Fto\u002Favatar.png\n",{"type":40,"tag":55,"props":320,"children":321},{},[322],{"type":45,"value":323},"The script uses, in order:",{"type":40,"tag":125,"props":325,"children":326},{},[327,338,347,356],{"type":40,"tag":119,"props":328,"children":329},{},[330,336],{"type":40,"tag":69,"props":331,"children":333},{"className":332},[],[334],{"type":45,"value":335},"--memory-dir",{"type":45,"value":337},", if passed",{"type":40,"tag":119,"props":339,"children":340},{},[341],{"type":40,"tag":69,"props":342,"children":344},{"className":343},[],[345],{"type":45,"value":346},"$MEMORY_DIR",{"type":40,"tag":119,"props":348,"children":349},{},[350],{"type":40,"tag":69,"props":351,"children":353},{"className":352},[],[354],{"type":45,"value":355},"$LETTA_MEMORY_DIR",{"type":40,"tag":119,"props":357,"children":358},{},[359],{"type":40,"tag":69,"props":360,"children":362},{"className":361},[],[363],{"type":45,"value":364},"~\u002F.letta\u002Flc-local-backend\u002Fmemfs\u002F$AGENT_ID\u002Fmemory",{"type":40,"tag":48,"props":366,"children":368},{"id":367},"other-local-agent",[369],{"type":45,"value":370},"Other local agent",{"type":40,"tag":61,"props":372,"children":374},{"className":202,"code":373,"language":204,"meta":66,"style":66},"python3 \"$SCRIPT\" \u002Fpath\u002Fto\u002Favatar.png \\\n  --agent-id agent-local-... \\\n  --local-backend-dir ~\u002F.letta\u002Flc-local-backend\n",[375],{"type":40,"tag":69,"props":376,"children":377},{"__ignoreMap":66},[378,407,425],{"type":40,"tag":210,"props":379,"children":380},{"class":212,"line":213},[381,385,389,393,397,402],{"type":40,"tag":210,"props":382,"children":383},{"style":229},[384],{"type":45,"value":298},{"type":40,"tag":210,"props":386,"children":387},{"style":223},[388],{"type":45,"value":303},{"type":40,"tag":210,"props":390,"children":391},{"style":217},[392],{"type":45,"value":308},{"type":40,"tag":210,"props":394,"children":395},{"style":223},[396],{"type":45,"value":313},{"type":40,"tag":210,"props":398,"children":399},{"style":235},[400],{"type":45,"value":401}," \u002Fpath\u002Fto\u002Favatar.png",{"type":40,"tag":210,"props":403,"children":404},{"style":217},[405],{"type":45,"value":406}," \\\n",{"type":40,"tag":210,"props":408,"children":410},{"class":212,"line":409},2,[411,416,421],{"type":40,"tag":210,"props":412,"children":413},{"style":235},[414],{"type":45,"value":415},"  --agent-id",{"type":40,"tag":210,"props":417,"children":418},{"style":235},[419],{"type":45,"value":420}," agent-local-...",{"type":40,"tag":210,"props":422,"children":423},{"style":217},[424],{"type":45,"value":406},{"type":40,"tag":210,"props":426,"children":428},{"class":212,"line":427},3,[429,434],{"type":40,"tag":210,"props":430,"children":431},{"style":235},[432],{"type":45,"value":433},"  --local-backend-dir",{"type":40,"tag":210,"props":435,"children":436},{"style":235},[437],{"type":45,"value":438}," ~\u002F.letta\u002Flc-local-backend\n",{"type":40,"tag":48,"props":440,"children":442},{"id":441},"useful-options",[443],{"type":45,"value":444},"Useful options",{"type":40,"tag":61,"props":446,"children":448},{"className":202,"code":447,"language":204,"meta":66,"style":66},"python3 \"$SCRIPT\" \u002Fpath\u002Fto\u002Favatar.jpg --size 512\npython3 \"$SCRIPT\" \u002Fpath\u002Fto\u002Favatar.jpg --no-commit\npython3 \"$SCRIPT\" \u002Fpath\u002Fto\u002Favatar.jpg --verify\n",[449],{"type":40,"tag":69,"props":450,"children":451},{"__ignoreMap":66},[452,487,515],{"type":40,"tag":210,"props":453,"children":454},{"class":212,"line":213},[455,459,463,467,471,476,481],{"type":40,"tag":210,"props":456,"children":457},{"style":229},[458],{"type":45,"value":298},{"type":40,"tag":210,"props":460,"children":461},{"style":223},[462],{"type":45,"value":303},{"type":40,"tag":210,"props":464,"children":465},{"style":217},[466],{"type":45,"value":308},{"type":40,"tag":210,"props":468,"children":469},{"style":223},[470],{"type":45,"value":313},{"type":40,"tag":210,"props":472,"children":473},{"style":235},[474],{"type":45,"value":475}," \u002Fpath\u002Fto\u002Favatar.jpg",{"type":40,"tag":210,"props":477,"children":478},{"style":235},[479],{"type":45,"value":480}," --size",{"type":40,"tag":210,"props":482,"children":484},{"style":483},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[485],{"type":45,"value":486}," 512\n",{"type":40,"tag":210,"props":488,"children":489},{"class":212,"line":409},[490,494,498,502,506,510],{"type":40,"tag":210,"props":491,"children":492},{"style":229},[493],{"type":45,"value":298},{"type":40,"tag":210,"props":495,"children":496},{"style":223},[497],{"type":45,"value":303},{"type":40,"tag":210,"props":499,"children":500},{"style":217},[501],{"type":45,"value":308},{"type":40,"tag":210,"props":503,"children":504},{"style":223},[505],{"type":45,"value":313},{"type":40,"tag":210,"props":507,"children":508},{"style":235},[509],{"type":45,"value":475},{"type":40,"tag":210,"props":511,"children":512},{"style":235},[513],{"type":45,"value":514}," --no-commit\n",{"type":40,"tag":210,"props":516,"children":517},{"class":212,"line":427},[518,522,526,530,534,538],{"type":40,"tag":210,"props":519,"children":520},{"style":229},[521],{"type":45,"value":298},{"type":40,"tag":210,"props":523,"children":524},{"style":223},[525],{"type":45,"value":303},{"type":40,"tag":210,"props":527,"children":528},{"style":217},[529],{"type":45,"value":308},{"type":40,"tag":210,"props":531,"children":532},{"style":223},[533],{"type":45,"value":313},{"type":40,"tag":210,"props":535,"children":536},{"style":235},[537],{"type":45,"value":475},{"type":40,"tag":210,"props":539,"children":540},{"style":235},[541],{"type":45,"value":542}," --verify\n",{"type":40,"tag":125,"props":544,"children":545},{},[546,565,576],{"type":40,"tag":119,"props":547,"children":548},{},[549,555,557,563],{"type":40,"tag":69,"props":550,"children":552},{"className":551},[],[553],{"type":45,"value":554},"--size",{"type":45,"value":556}," controls the square output size in pixels. Use ",{"type":40,"tag":69,"props":558,"children":560},{"className":559},[],[561],{"type":45,"value":562},"512",{"type":45,"value":564}," unless there is a reason not to.",{"type":40,"tag":119,"props":566,"children":567},{},[568,574],{"type":40,"tag":69,"props":569,"children":571},{"className":570},[],[572],{"type":45,"value":573},"--no-commit",{"type":45,"value":575}," writes the file but leaves the memory repo uncommitted.",{"type":40,"tag":119,"props":577,"children":578},{},[579,585,587,593],{"type":40,"tag":69,"props":580,"children":582},{"className":581},[],[583],{"type":45,"value":584},"--verify",{"type":45,"value":586}," calls ",{"type":40,"tag":69,"props":588,"children":590},{"className":589},[],[591],{"type":45,"value":592},"\u002Fv1\u002Fagents\u002F:agent_id\u002Fprofile-picture",{"type":45,"value":594}," after writing, when API env vars are present.",{"type":40,"tag":48,"props":596,"children":598},{"id":597},"manual-fallback",[599],{"type":45,"value":600},"Manual fallback",{"type":40,"tag":55,"props":602,"children":603},{},[604],{"type":45,"value":605},"If the script is unavailable:",{"type":40,"tag":61,"props":607,"children":609},{"className":202,"code":608,"language":204,"meta":66,"style":66},"cp \u002Fpath\u002Fto\u002Favatar.png \"$MEMORY_DIR\u002Fprofile.png\"\ngit -C \"$MEMORY_DIR\" add profile.png\ngit -C \"$MEMORY_DIR\" commit --author=\"$AGENT_NAME \u003C$AGENT_ID@letta.com>\" -m 'Add agent profile image'\n",[610],{"type":40,"tag":69,"props":611,"children":612},{"__ignoreMap":66},[613,643,678],{"type":40,"tag":210,"props":614,"children":615},{"class":212,"line":213},[616,621,625,629,633,638],{"type":40,"tag":210,"props":617,"children":618},{"style":229},[619],{"type":45,"value":620},"cp",{"type":40,"tag":210,"props":622,"children":623},{"style":235},[624],{"type":45,"value":401},{"type":40,"tag":210,"props":626,"children":627},{"style":223},[628],{"type":45,"value":303},{"type":40,"tag":210,"props":630,"children":631},{"style":217},[632],{"type":45,"value":346},{"type":40,"tag":210,"props":634,"children":635},{"style":235},[636],{"type":45,"value":637},"\u002Fprofile.png",{"type":40,"tag":210,"props":639,"children":640},{"style":223},[641],{"type":45,"value":642},"\"\n",{"type":40,"tag":210,"props":644,"children":645},{"class":212,"line":409},[646,651,656,660,664,668,673],{"type":40,"tag":210,"props":647,"children":648},{"style":229},[649],{"type":45,"value":650},"git",{"type":40,"tag":210,"props":652,"children":653},{"style":235},[654],{"type":45,"value":655}," -C",{"type":40,"tag":210,"props":657,"children":658},{"style":223},[659],{"type":45,"value":303},{"type":40,"tag":210,"props":661,"children":662},{"style":217},[663],{"type":45,"value":346},{"type":40,"tag":210,"props":665,"children":666},{"style":223},[667],{"type":45,"value":313},{"type":40,"tag":210,"props":669,"children":670},{"style":235},[671],{"type":45,"value":672}," add",{"type":40,"tag":210,"props":674,"children":675},{"style":235},[676],{"type":45,"value":677}," profile.png\n",{"type":40,"tag":210,"props":679,"children":680},{"class":212,"line":427},[681,685,689,693,697,701,706,711,715,720,725,730,735,739,744,748,753],{"type":40,"tag":210,"props":682,"children":683},{"style":229},[684],{"type":45,"value":650},{"type":40,"tag":210,"props":686,"children":687},{"style":235},[688],{"type":45,"value":655},{"type":40,"tag":210,"props":690,"children":691},{"style":223},[692],{"type":45,"value":303},{"type":40,"tag":210,"props":694,"children":695},{"style":217},[696],{"type":45,"value":346},{"type":40,"tag":210,"props":698,"children":699},{"style":223},[700],{"type":45,"value":313},{"type":40,"tag":210,"props":702,"children":703},{"style":235},[704],{"type":45,"value":705}," commit",{"type":40,"tag":210,"props":707,"children":708},{"style":235},[709],{"type":45,"value":710}," --author=",{"type":40,"tag":210,"props":712,"children":713},{"style":223},[714],{"type":45,"value":313},{"type":40,"tag":210,"props":716,"children":717},{"style":217},[718],{"type":45,"value":719},"$AGENT_NAME",{"type":40,"tag":210,"props":721,"children":722},{"style":235},[723],{"type":45,"value":724}," \u003C",{"type":40,"tag":210,"props":726,"children":727},{"style":217},[728],{"type":45,"value":729},"$AGENT_ID",{"type":40,"tag":210,"props":731,"children":732},{"style":235},[733],{"type":45,"value":734},"@letta.com>",{"type":40,"tag":210,"props":736,"children":737},{"style":223},[738],{"type":45,"value":313},{"type":40,"tag":210,"props":740,"children":741},{"style":235},[742],{"type":45,"value":743}," -m",{"type":40,"tag":210,"props":745,"children":746},{"style":223},[747],{"type":45,"value":253},{"type":40,"tag":210,"props":749,"children":750},{"style":235},[751],{"type":45,"value":752},"Add agent profile image",{"type":40,"tag":210,"props":754,"children":755},{"style":223},[756],{"type":45,"value":757},"'\n",{"type":40,"tag":55,"props":759,"children":760},{},[761],{"type":45,"value":762},"Make sure the image is a reasonably sized square PNG before copying.",{"type":40,"tag":764,"props":765,"children":766},"style",{},[767],{"type":45,"value":768},"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":770,"total":927},[771,787,802,814,826,840,852,863,875,889,900,912],{"slug":772,"name":772,"fn":773,"description":774,"org":775,"tags":776,"stars":784,"repoUrl":785,"updatedAt":786},"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},[777,778,781],{"name":21,"slug":22,"type":16},{"name":779,"slug":780,"type":16},"Automation","automation",{"name":782,"slug":783,"type":16},"GitHub","github",2831,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fletta-code","2026-07-13T06:22:58.45767",{"slug":788,"name":789,"fn":790,"description":791,"org":792,"tags":793,"stars":784,"repoUrl":785,"updatedAt":801},"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},[794,795,798],{"name":21,"slug":22,"type":16},{"name":796,"slug":797,"type":16},"AI Context","ai-context",{"name":799,"slug":800,"type":16},"Debugging","debugging","2026-07-13T06:22:50.151002",{"slug":803,"name":803,"fn":804,"description":805,"org":806,"tags":807,"stars":784,"repoUrl":785,"updatedAt":813},"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},[808,809,810],{"name":21,"slug":22,"type":16},{"name":779,"slug":780,"type":16},{"name":811,"slug":812,"type":16},"MCP","mcp","2026-07-13T06:23:37.646079",{"slug":815,"name":815,"fn":816,"description":817,"org":818,"tags":819,"stars":784,"repoUrl":785,"updatedAt":825},"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},[820,821,822],{"name":21,"slug":22,"type":16},{"name":779,"slug":780,"type":16},{"name":823,"slug":824,"type":16},"Coding","coding","2026-07-23T05:42:38.133565",{"slug":827,"name":827,"fn":828,"description":829,"org":830,"tags":831,"stars":784,"repoUrl":785,"updatedAt":839},"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},[832,833,836],{"name":21,"slug":22,"type":16},{"name":834,"slug":835,"type":16},"Documentation","documentation",{"name":837,"slug":838,"type":16},"Plugin Development","plugin-development","2026-07-13T06:22:56.998659",{"slug":841,"name":841,"fn":842,"description":843,"org":844,"tags":845,"stars":784,"repoUrl":785,"updatedAt":851},"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},[846,847,848],{"name":21,"slug":22,"type":16},{"name":779,"slug":780,"type":16},{"name":849,"slug":850,"type":16},"CLI","cli","2026-07-13T06:23:18.266798",{"slug":853,"name":853,"fn":854,"description":855,"org":856,"tags":857,"stars":784,"repoUrl":785,"updatedAt":862},"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},[858,859],{"name":849,"slug":850,"type":16},{"name":860,"slug":861,"type":16},"Engineering","engineering","2026-07-13T06:23:27.465985",{"slug":864,"name":864,"fn":865,"description":866,"org":867,"tags":868,"stars":784,"repoUrl":785,"updatedAt":874},"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},[869,870,871],{"name":21,"slug":22,"type":16},{"name":823,"slug":824,"type":16},{"name":872,"slug":873,"type":16},"Multi-Agent","multi-agent","2026-07-26T05:46:56.388845",{"slug":876,"name":876,"fn":877,"description":878,"org":879,"tags":880,"stars":784,"repoUrl":785,"updatedAt":888},"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},[881,884,885],{"name":882,"slug":883,"type":16},"Configuration","configuration",{"name":18,"slug":19,"type":16},{"name":886,"slug":887,"type":16},"Themes","themes","2026-07-13T06:23:41.407811",{"slug":890,"name":890,"fn":891,"description":892,"org":893,"tags":894,"stars":784,"repoUrl":785,"updatedAt":899},"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},[895,896],{"name":21,"slug":22,"type":16},{"name":897,"slug":898,"type":16},"Management","management","2026-07-16T06:02:17.297841",{"slug":901,"name":901,"fn":902,"description":903,"org":904,"tags":905,"stars":784,"repoUrl":785,"updatedAt":911},"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},[906,907,910],{"name":21,"slug":22,"type":16},{"name":908,"slug":909,"type":16},"AI Infrastructure","ai-infrastructure",{"name":882,"slug":883,"type":16},"2026-07-13T06:23:08.838181",{"slug":913,"name":913,"fn":914,"description":915,"org":916,"tags":917,"stars":784,"repoUrl":785,"updatedAt":926},"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},[918,921,924],{"name":919,"slug":920,"type":16},"Creative","creative",{"name":922,"slug":923,"type":16},"Graphics","graphics",{"name":925,"slug":913,"type":16},"Image Generation","2026-07-13T06:23:06.189403",69,{"items":929,"total":1041},[930,944,959,978,991,1012,1022],{"slug":931,"name":931,"fn":932,"description":933,"org":934,"tags":935,"stars":23,"repoUrl":24,"updatedAt":943},"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},[936,939,940],{"name":937,"slug":938,"type":16},"Authentication","authentication",{"name":849,"slug":850,"type":16},{"name":941,"slug":942,"type":16},"Security","security","2026-07-13T06:24:39.504387",{"slug":945,"name":945,"fn":946,"description":947,"org":948,"tags":949,"stars":23,"repoUrl":24,"updatedAt":958},"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},[950,951,952,955],{"name":779,"slug":780,"type":16},{"name":849,"slug":850,"type":16},{"name":953,"slug":954,"type":16},"Messaging","messaging",{"name":956,"slug":957,"type":16},"Slack","slack","2026-07-13T06:23:51.908511",{"slug":960,"name":960,"fn":961,"description":962,"org":963,"tags":964,"stars":23,"repoUrl":24,"updatedAt":977},"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},[965,968,971,974],{"name":966,"slug":967,"type":16},"Communications","communications",{"name":969,"slug":970,"type":16},"LLM","llm",{"name":972,"slug":973,"type":16},"Research","research",{"name":975,"slug":976,"type":16},"Summarization","summarization","2026-07-13T06:24:20.520223",{"slug":979,"name":979,"fn":980,"description":981,"org":982,"tags":983,"stars":23,"repoUrl":24,"updatedAt":990},"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},[984,985,988,989],{"name":21,"slug":22,"type":16},{"name":986,"slug":987,"type":16},"API Development","api-development",{"name":953,"slug":954,"type":16},{"name":956,"slug":957,"type":16},"2026-07-13T06:25:55.843495",{"slug":992,"name":992,"fn":993,"description":994,"org":995,"tags":996,"stars":23,"repoUrl":24,"updatedAt":1011},"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},[997,999,1002,1005,1008],{"name":998,"slug":992,"type":16},"Datadog",{"name":1000,"slug":1001,"type":16},"Logs","logs",{"name":1003,"slug":1004,"type":16},"Metrics","metrics",{"name":1006,"slug":1007,"type":16},"Monitoring","monitoring",{"name":1009,"slug":1010,"type":16},"Observability","observability","2026-07-13T06:24:27.990605",{"slug":1013,"name":1013,"fn":1014,"description":1015,"org":1016,"tags":1017,"stars":23,"repoUrl":24,"updatedAt":1021},"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},[1018,1019,1020],{"name":779,"slug":780,"type":16},{"name":849,"slug":850,"type":16},{"name":953,"slug":954,"type":16},"2026-07-13T06:24:26.62387",{"slug":1023,"name":1023,"fn":1024,"description":1025,"org":1026,"tags":1027,"stars":23,"repoUrl":24,"updatedAt":1040},"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},[1028,1031,1034,1037],{"name":1029,"slug":1030,"type":16},"Documents","documents",{"name":1032,"slug":1033,"type":16},"DOCX","docx",{"name":1035,"slug":1036,"type":16},"Office","office",{"name":1038,"slug":1039,"type":16},"Word","word","2026-07-13T06:23:44.299568",45]