[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-letta-editing-letta-code-desktop-preferences":3,"mdc-t9ukvy-key":41,"related-repo-letta-editing-letta-code-desktop-preferences":472,"related-org-letta-editing-letta-code-desktop-preferences":566},{"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},"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},"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},"Configuration","configuration","tag",{"name":18,"slug":19,"type":16},"Themes","themes",{"name":21,"slug":22,"type":16},"Desktop","desktop",2831,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fletta-code","2026-07-13T06:23:41.407811",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\u002Fediting-letta-code-desktop-preferences","---\nname: editing-letta-code-desktop-preferences\ndescription: 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.\n---\n\n# Editing Letta Code Desktop Preferences\n\nUse this skill only to edit the active Letta Code Desktop preferences JSON file. Do not use it for Desktop product-code changes, Electron IPC work, UI changes, or general Letta Cloud Desktop implementation tasks.\n\n## Preferences file\n\nThe Desktop preferences file is:\n\n```text\n~\u002F.letta\u002Fdesktop_preferences.json\n```\n\nKnown preference keys:\n\n- `defaultWorkingDirectory`: default folder for new local sessions.\n- `theme`: `auto`, `light`, or `dark`.\n- `allowRemoteAccess`: boolean for whether remote access should be enabled in preferences.\n- `remoteEnvName`: environment name shown for remote access.\n\n## Workflow\n\n1. Read the existing JSON first.\n2. Preserve unknown keys.\n3. Merge only the requested preference updates.\n4. Write pretty JSON with a trailing newline.\n5. Do not edit token, provider, secret, agent, conversation, memory, or unrelated state files.\n6. Tell the user that the change applies live only if their Desktop build watches preference-file changes; otherwise they should reload\u002Frestart Desktop or use Preferences → General.\n\n## Safe edit command\n\nUse a merge-style edit like this, changing only the requested keys:\n\n```bash\nnode - \u003C\u003C'NODE'\nconst fs = require('fs');\nconst os = require('os');\nconst path = require('path');\n\nconst file = path.join(os.homedir(), '.letta', 'desktop_preferences.json');\nfs.mkdirSync(path.dirname(file), { recursive: true });\n\nconst current = fs.existsSync(file)\n  ? JSON.parse(fs.readFileSync(file, 'utf8'))\n  : {};\n\nconst next = {\n  ...current,\n  \u002F\u002F Example update. Replace this with the user's requested setting.\n  theme: 'dark',\n};\n\nfs.writeFileSync(file, JSON.stringify(next, null, 2) + '\\n');\nNODE\n```\n\n## Validation\n\nAfter editing, read the file back or parse it to confirm valid JSON:\n\n```bash\nnode -e \"JSON.parse(require('fs').readFileSync(require('os').homedir() + '\u002F.letta\u002Fdesktop_preferences.json', 'utf8')); console.log('desktop_preferences.json is valid')\"\n```\n",{"data":42,"body":43},{"name":4,"description":6},{"type":44,"children":45},"root",[46,54,60,67,72,85,90,163,169,203,209,214,421,427,432,466],{"type":47,"tag":48,"props":49,"children":50},"element","h1",{"id":4},[51],{"type":52,"value":53},"text","Editing Letta Code Desktop Preferences",{"type":47,"tag":55,"props":56,"children":57},"p",{},[58],{"type":52,"value":59},"Use this skill only to edit the active Letta Code Desktop preferences JSON file. Do not use it for Desktop product-code changes, Electron IPC work, UI changes, or general Letta Cloud Desktop implementation tasks.",{"type":47,"tag":61,"props":62,"children":64},"h2",{"id":63},"preferences-file",[65],{"type":52,"value":66},"Preferences file",{"type":47,"tag":55,"props":68,"children":69},{},[70],{"type":52,"value":71},"The Desktop preferences file is:",{"type":47,"tag":73,"props":74,"children":79},"pre",{"className":75,"code":77,"language":52,"meta":78},[76],"language-text","~\u002F.letta\u002Fdesktop_preferences.json\n","",[80],{"type":47,"tag":81,"props":82,"children":83},"code",{"__ignoreMap":78},[84],{"type":52,"value":77},{"type":47,"tag":55,"props":86,"children":87},{},[88],{"type":52,"value":89},"Known preference keys:",{"type":47,"tag":91,"props":92,"children":93},"ul",{},[94,106,141,152],{"type":47,"tag":95,"props":96,"children":97},"li",{},[98,104],{"type":47,"tag":81,"props":99,"children":101},{"className":100},[],[102],{"type":52,"value":103},"defaultWorkingDirectory",{"type":52,"value":105},": default folder for new local sessions.",{"type":47,"tag":95,"props":107,"children":108},{},[109,115,117,123,125,131,133,139],{"type":47,"tag":81,"props":110,"children":112},{"className":111},[],[113],{"type":52,"value":114},"theme",{"type":52,"value":116},": ",{"type":47,"tag":81,"props":118,"children":120},{"className":119},[],[121],{"type":52,"value":122},"auto",{"type":52,"value":124},", ",{"type":47,"tag":81,"props":126,"children":128},{"className":127},[],[129],{"type":52,"value":130},"light",{"type":52,"value":132},", or ",{"type":47,"tag":81,"props":134,"children":136},{"className":135},[],[137],{"type":52,"value":138},"dark",{"type":52,"value":140},".",{"type":47,"tag":95,"props":142,"children":143},{},[144,150],{"type":47,"tag":81,"props":145,"children":147},{"className":146},[],[148],{"type":52,"value":149},"allowRemoteAccess",{"type":52,"value":151},": boolean for whether remote access should be enabled in preferences.",{"type":47,"tag":95,"props":153,"children":154},{},[155,161],{"type":47,"tag":81,"props":156,"children":158},{"className":157},[],[159],{"type":52,"value":160},"remoteEnvName",{"type":52,"value":162},": environment name shown for remote access.",{"type":47,"tag":61,"props":164,"children":166},{"id":165},"workflow",[167],{"type":52,"value":168},"Workflow",{"type":47,"tag":170,"props":171,"children":172},"ol",{},[173,178,183,188,193,198],{"type":47,"tag":95,"props":174,"children":175},{},[176],{"type":52,"value":177},"Read the existing JSON first.",{"type":47,"tag":95,"props":179,"children":180},{},[181],{"type":52,"value":182},"Preserve unknown keys.",{"type":47,"tag":95,"props":184,"children":185},{},[186],{"type":52,"value":187},"Merge only the requested preference updates.",{"type":47,"tag":95,"props":189,"children":190},{},[191],{"type":52,"value":192},"Write pretty JSON with a trailing newline.",{"type":47,"tag":95,"props":194,"children":195},{},[196],{"type":52,"value":197},"Do not edit token, provider, secret, agent, conversation, memory, or unrelated state files.",{"type":47,"tag":95,"props":199,"children":200},{},[201],{"type":52,"value":202},"Tell the user that the change applies live only if their Desktop build watches preference-file changes; otherwise they should reload\u002Frestart Desktop or use Preferences → General.",{"type":47,"tag":61,"props":204,"children":206},{"id":205},"safe-edit-command",[207],{"type":52,"value":208},"Safe edit command",{"type":47,"tag":55,"props":210,"children":211},{},[212],{"type":52,"value":213},"Use a merge-style edit like this, changing only the requested keys:",{"type":47,"tag":73,"props":215,"children":219},{"className":216,"code":217,"language":218,"meta":78,"style":78},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","node - \u003C\u003C'NODE'\nconst fs = require('fs');\nconst os = require('os');\nconst path = require('path');\n\nconst file = path.join(os.homedir(), '.letta', 'desktop_preferences.json');\nfs.mkdirSync(path.dirname(file), { recursive: true });\n\nconst current = fs.existsSync(file)\n  ? JSON.parse(fs.readFileSync(file, 'utf8'))\n  : {};\n\nconst next = {\n  ...current,\n  \u002F\u002F Example update. Replace this with the user's requested setting.\n  theme: 'dark',\n};\n\nfs.writeFileSync(file, JSON.stringify(next, null, 2) + '\\n');\nNODE\n","bash",[220],{"type":47,"tag":81,"props":221,"children":222},{"__ignoreMap":78},[223,252,261,270,279,289,298,307,315,324,333,342,350,359,368,377,386,395,403,412],{"type":47,"tag":224,"props":225,"children":228},"span",{"class":226,"line":227},"line",1,[229,235,241,247],{"type":47,"tag":224,"props":230,"children":232},{"style":231},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[233],{"type":52,"value":234},"node",{"type":47,"tag":224,"props":236,"children":238},{"style":237},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[239],{"type":52,"value":240}," -",{"type":47,"tag":224,"props":242,"children":244},{"style":243},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[245],{"type":52,"value":246}," \u003C\u003C",{"type":47,"tag":224,"props":248,"children":249},{"style":243},[250],{"type":52,"value":251},"'NODE'\n",{"type":47,"tag":224,"props":253,"children":255},{"class":226,"line":254},2,[256],{"type":47,"tag":224,"props":257,"children":258},{"style":237},[259],{"type":52,"value":260},"const fs = require('fs');\n",{"type":47,"tag":224,"props":262,"children":264},{"class":226,"line":263},3,[265],{"type":47,"tag":224,"props":266,"children":267},{"style":237},[268],{"type":52,"value":269},"const os = require('os');\n",{"type":47,"tag":224,"props":271,"children":273},{"class":226,"line":272},4,[274],{"type":47,"tag":224,"props":275,"children":276},{"style":237},[277],{"type":52,"value":278},"const path = require('path');\n",{"type":47,"tag":224,"props":280,"children":282},{"class":226,"line":281},5,[283],{"type":47,"tag":224,"props":284,"children":286},{"emptyLinePlaceholder":285},true,[287],{"type":52,"value":288},"\n",{"type":47,"tag":224,"props":290,"children":292},{"class":226,"line":291},6,[293],{"type":47,"tag":224,"props":294,"children":295},{"style":237},[296],{"type":52,"value":297},"const file = path.join(os.homedir(), '.letta', 'desktop_preferences.json');\n",{"type":47,"tag":224,"props":299,"children":301},{"class":226,"line":300},7,[302],{"type":47,"tag":224,"props":303,"children":304},{"style":237},[305],{"type":52,"value":306},"fs.mkdirSync(path.dirname(file), { recursive: true });\n",{"type":47,"tag":224,"props":308,"children":310},{"class":226,"line":309},8,[311],{"type":47,"tag":224,"props":312,"children":313},{"emptyLinePlaceholder":285},[314],{"type":52,"value":288},{"type":47,"tag":224,"props":316,"children":318},{"class":226,"line":317},9,[319],{"type":47,"tag":224,"props":320,"children":321},{"style":237},[322],{"type":52,"value":323},"const current = fs.existsSync(file)\n",{"type":47,"tag":224,"props":325,"children":327},{"class":226,"line":326},10,[328],{"type":47,"tag":224,"props":329,"children":330},{"style":237},[331],{"type":52,"value":332},"  ? JSON.parse(fs.readFileSync(file, 'utf8'))\n",{"type":47,"tag":224,"props":334,"children":336},{"class":226,"line":335},11,[337],{"type":47,"tag":224,"props":338,"children":339},{"style":237},[340],{"type":52,"value":341},"  : {};\n",{"type":47,"tag":224,"props":343,"children":345},{"class":226,"line":344},12,[346],{"type":47,"tag":224,"props":347,"children":348},{"emptyLinePlaceholder":285},[349],{"type":52,"value":288},{"type":47,"tag":224,"props":351,"children":353},{"class":226,"line":352},13,[354],{"type":47,"tag":224,"props":355,"children":356},{"style":237},[357],{"type":52,"value":358},"const next = {\n",{"type":47,"tag":224,"props":360,"children":362},{"class":226,"line":361},14,[363],{"type":47,"tag":224,"props":364,"children":365},{"style":237},[366],{"type":52,"value":367},"  ...current,\n",{"type":47,"tag":224,"props":369,"children":371},{"class":226,"line":370},15,[372],{"type":47,"tag":224,"props":373,"children":374},{"style":237},[375],{"type":52,"value":376},"  \u002F\u002F Example update. Replace this with the user's requested setting.\n",{"type":47,"tag":224,"props":378,"children":380},{"class":226,"line":379},16,[381],{"type":47,"tag":224,"props":382,"children":383},{"style":237},[384],{"type":52,"value":385},"  theme: 'dark',\n",{"type":47,"tag":224,"props":387,"children":389},{"class":226,"line":388},17,[390],{"type":47,"tag":224,"props":391,"children":392},{"style":237},[393],{"type":52,"value":394},"};\n",{"type":47,"tag":224,"props":396,"children":398},{"class":226,"line":397},18,[399],{"type":47,"tag":224,"props":400,"children":401},{"emptyLinePlaceholder":285},[402],{"type":52,"value":288},{"type":47,"tag":224,"props":404,"children":406},{"class":226,"line":405},19,[407],{"type":47,"tag":224,"props":408,"children":409},{"style":237},[410],{"type":52,"value":411},"fs.writeFileSync(file, JSON.stringify(next, null, 2) + '\\n');\n",{"type":47,"tag":224,"props":413,"children":415},{"class":226,"line":414},20,[416],{"type":47,"tag":224,"props":417,"children":418},{"style":243},[419],{"type":52,"value":420},"NODE\n",{"type":47,"tag":61,"props":422,"children":424},{"id":423},"validation",[425],{"type":52,"value":426},"Validation",{"type":47,"tag":55,"props":428,"children":429},{},[430],{"type":52,"value":431},"After editing, read the file back or parse it to confirm valid JSON:",{"type":47,"tag":73,"props":433,"children":435},{"className":216,"code":434,"language":218,"meta":78,"style":78},"node -e \"JSON.parse(require('fs').readFileSync(require('os').homedir() + '\u002F.letta\u002Fdesktop_preferences.json', 'utf8')); console.log('desktop_preferences.json is valid')\"\n",[436],{"type":47,"tag":81,"props":437,"children":438},{"__ignoreMap":78},[439],{"type":47,"tag":224,"props":440,"children":441},{"class":226,"line":227},[442,446,451,456,461],{"type":47,"tag":224,"props":443,"children":444},{"style":231},[445],{"type":52,"value":234},{"type":47,"tag":224,"props":447,"children":448},{"style":237},[449],{"type":52,"value":450}," -e",{"type":47,"tag":224,"props":452,"children":453},{"style":243},[454],{"type":52,"value":455}," \"",{"type":47,"tag":224,"props":457,"children":458},{"style":237},[459],{"type":52,"value":460},"JSON.parse(require('fs').readFileSync(require('os').homedir() + '\u002F.letta\u002Fdesktop_preferences.json', 'utf8')); console.log('desktop_preferences.json is valid')",{"type":47,"tag":224,"props":462,"children":463},{"style":243},[464],{"type":52,"value":465},"\"\n",{"type":47,"tag":467,"props":468,"children":469},"style",{},[470],{"type":52,"value":471},"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":473,"total":405},[474,490,505,517,529,543,555],{"slug":475,"name":475,"fn":476,"description":477,"org":478,"tags":479,"stars":23,"repoUrl":24,"updatedAt":489},"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},[480,483,486],{"name":481,"slug":482,"type":16},"Agents","agents",{"name":484,"slug":485,"type":16},"Automation","automation",{"name":487,"slug":488,"type":16},"GitHub","github","2026-07-13T06:22:58.45767",{"slug":491,"name":492,"fn":493,"description":494,"org":495,"tags":496,"stars":23,"repoUrl":24,"updatedAt":504},"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},[497,498,501],{"name":481,"slug":482,"type":16},{"name":499,"slug":500,"type":16},"AI Context","ai-context",{"name":502,"slug":503,"type":16},"Debugging","debugging","2026-07-13T06:22:50.151002",{"slug":506,"name":506,"fn":507,"description":508,"org":509,"tags":510,"stars":23,"repoUrl":24,"updatedAt":516},"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},[511,512,513],{"name":481,"slug":482,"type":16},{"name":484,"slug":485,"type":16},{"name":514,"slug":515,"type":16},"MCP","mcp","2026-07-13T06:23:37.646079",{"slug":518,"name":518,"fn":519,"description":520,"org":521,"tags":522,"stars":23,"repoUrl":24,"updatedAt":528},"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},[523,524,525],{"name":481,"slug":482,"type":16},{"name":484,"slug":485,"type":16},{"name":526,"slug":527,"type":16},"Coding","coding","2026-07-23T05:42:38.133565",{"slug":530,"name":530,"fn":531,"description":532,"org":533,"tags":534,"stars":23,"repoUrl":24,"updatedAt":542},"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},[535,536,539],{"name":481,"slug":482,"type":16},{"name":537,"slug":538,"type":16},"Documentation","documentation",{"name":540,"slug":541,"type":16},"Plugin Development","plugin-development","2026-07-13T06:22:56.998659",{"slug":544,"name":544,"fn":545,"description":546,"org":547,"tags":548,"stars":23,"repoUrl":24,"updatedAt":554},"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},[549,550,551],{"name":481,"slug":482,"type":16},{"name":484,"slug":485,"type":16},{"name":552,"slug":553,"type":16},"CLI","cli","2026-07-13T06:23:18.266798",{"slug":556,"name":556,"fn":557,"description":558,"org":559,"tags":560,"stars":23,"repoUrl":24,"updatedAt":565},"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},[561,562],{"name":552,"slug":553,"type":16},{"name":563,"slug":564,"type":16},"Engineering","engineering","2026-07-13T06:23:27.465985",{"items":567,"total":665},[568,574,580,586,592,598,604,609,621,627,638,650],{"slug":475,"name":475,"fn":476,"description":477,"org":569,"tags":570,"stars":23,"repoUrl":24,"updatedAt":489},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[571,572,573],{"name":481,"slug":482,"type":16},{"name":484,"slug":485,"type":16},{"name":487,"slug":488,"type":16},{"slug":491,"name":492,"fn":493,"description":494,"org":575,"tags":576,"stars":23,"repoUrl":24,"updatedAt":504},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[577,578,579],{"name":481,"slug":482,"type":16},{"name":499,"slug":500,"type":16},{"name":502,"slug":503,"type":16},{"slug":506,"name":506,"fn":507,"description":508,"org":581,"tags":582,"stars":23,"repoUrl":24,"updatedAt":516},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[583,584,585],{"name":481,"slug":482,"type":16},{"name":484,"slug":485,"type":16},{"name":514,"slug":515,"type":16},{"slug":518,"name":518,"fn":519,"description":520,"org":587,"tags":588,"stars":23,"repoUrl":24,"updatedAt":528},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[589,590,591],{"name":481,"slug":482,"type":16},{"name":484,"slug":485,"type":16},{"name":526,"slug":527,"type":16},{"slug":530,"name":530,"fn":531,"description":532,"org":593,"tags":594,"stars":23,"repoUrl":24,"updatedAt":542},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[595,596,597],{"name":481,"slug":482,"type":16},{"name":537,"slug":538,"type":16},{"name":540,"slug":541,"type":16},{"slug":544,"name":544,"fn":545,"description":546,"org":599,"tags":600,"stars":23,"repoUrl":24,"updatedAt":554},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[601,602,603],{"name":481,"slug":482,"type":16},{"name":484,"slug":485,"type":16},{"name":552,"slug":553,"type":16},{"slug":556,"name":556,"fn":557,"description":558,"org":605,"tags":606,"stars":23,"repoUrl":24,"updatedAt":565},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[607,608],{"name":552,"slug":553,"type":16},{"name":563,"slug":564,"type":16},{"slug":610,"name":610,"fn":611,"description":612,"org":613,"tags":614,"stars":23,"repoUrl":24,"updatedAt":620},"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},[615,616,617],{"name":481,"slug":482,"type":16},{"name":526,"slug":527,"type":16},{"name":618,"slug":619,"type":16},"Multi-Agent","multi-agent","2026-07-26T05:46:56.388845",{"slug":4,"name":4,"fn":5,"description":6,"org":622,"tags":623,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[624,625,626],{"name":14,"slug":15,"type":16},{"name":21,"slug":22,"type":16},{"name":18,"slug":19,"type":16},{"slug":628,"name":628,"fn":629,"description":630,"org":631,"tags":632,"stars":23,"repoUrl":24,"updatedAt":637},"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},[633,634],{"name":481,"slug":482,"type":16},{"name":635,"slug":636,"type":16},"Management","management","2026-07-16T06:02:17.297841",{"slug":639,"name":639,"fn":640,"description":641,"org":642,"tags":643,"stars":23,"repoUrl":24,"updatedAt":649},"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},[644,645,648],{"name":481,"slug":482,"type":16},{"name":646,"slug":647,"type":16},"AI Infrastructure","ai-infrastructure",{"name":14,"slug":15,"type":16},"2026-07-13T06:23:08.838181",{"slug":651,"name":651,"fn":652,"description":653,"org":654,"tags":655,"stars":23,"repoUrl":24,"updatedAt":664},"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},[656,659,662],{"name":657,"slug":658,"type":16},"Creative","creative",{"name":660,"slug":661,"type":16},"Graphics","graphics",{"name":663,"slug":651,"type":16},"Image Generation","2026-07-13T06:23:06.189403",69]