[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-letta-customizing-commands":3,"mdc-mwu6m8-key":41,"related-org-letta-customizing-commands":1279,"related-repo-letta-customizing-commands":1430},{"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},"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},"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},"Automation","automation","tag",{"name":18,"slug":19,"type":16},"CLI","cli",{"name":21,"slug":22,"type":16},"Agents","agents",2831,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fletta-code","2026-07-13T06:23:18.266798",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\u002Fcustomizing-commands","---\nname: customizing-commands\ndescription: 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.\n---\n\n# Customizing Commands\n\nUse this as the command-specific entrypoint for local mod slash commands. For broader mod work, recipes live in `..\u002Fcreating-mods\u002Freferences\u002Fcommands.md`, `..\u002Fcreating-mods\u002Freferences\u002Farchitecture.md`, `..\u002Fcreating-mods\u002Freferences\u002Fui.md`, and `..\u002Fcreating-mods\u002Freferences\u002Fplan-mode.md`.\n\nMod files live in:\n\n```text\n~\u002F.letta\u002Fmods\u002F\n```\n\nUse a focused file name, e.g. `~\u002F.letta\u002Fmods\u002Freview.ts` or `~\u002F.letta\u002Fmods\u002Fcommands.ts`.\n\n## First decide whether a command is right\n\n| User wants | Build |\n| --- | --- |\n| `\u002Ffoo` sends a prompt or shows local output | Mod command |\n| `\u002Ffoo` starts a reusable agent workflow | Skill + thin mod command |\n| Agent\u002Fmodel should autonomously call the capability | Mod tool, not a command |\n| Command shows transient progress\u002Fresults | Mod command + panel |\n| Command needs model output while the main agent is busy | `runWhenBusy: true` command + forked `ctx.conversation` |\n\nIf the command is a durable workflow like `\u002Fgoal`, put the workflow instructions in a skill and keep the mod command as a small launcher\u002Fprompt.\n\n## Workflow\n\n1. Inspect `~\u002F.letta\u002Fmods\u002F` for related command files.\n2. Preserve unrelated mod code; create a focused new file if merging is messy.\n3. Register with `letta.commands.register()` and guard with `letta.capabilities.commands`.\n4. Return the unregister function, or a disposer that calls it plus any timer\u002Fpanel cleanup.\n5. Tell the user the exact file path changed and to run `\u002Freload`.\n\n## Default prompt command\n\n```ts\nexport default function activate(letta) {\n  if (!letta.capabilities.commands) return;\n\n  return letta.commands.register({\n    id: \"review\",\n    description: \"Review current git changes\",\n    args: \"[focus]\",\n    run(ctx) {\n      const focus = ctx.args.trim();\n      return {\n        type: \"prompt\",\n        content: focus\n          ? `Review current git changes. Focus on ${focus}.`\n          : \"Review current git changes. Focus on correctness issues.\",\n        systemReminder: true,\n      };\n    },\n  });\n}\n```\n\n## Command result types\n\n```ts\ntype ModCommandResult =\n  | { type: \"prompt\"; content: string; systemReminder?: boolean }\n  | { type: \"output\"; output: string; success?: boolean }\n  | { type: \"handled\" };\n```\n\n- `prompt`: sends content to the agent. Use for normal slash shortcuts.\n- `output`: prints local text and does not contact the agent.\n- `handled`: command handled its own side effects\u002FUI; common for panel commands.\n\n## Rules\n\n- Command IDs omit the slash: `id: \"review\"`, not `\"\u002Freview\"`.\n- Use lowercase slugs with letters, numbers, and hyphens.\n- Do not register built-in command IDs.\n- `runWhenBusy: true` commands must not return `prompt` while the main agent is busy; use scoped conversation helpers\u002Fpanels and return `handled`.\n- `showInTranscript: false` commands should usually return `handled`, not `prompt`.\n- Do not import Letta Code app internals.\n- Do not do surprising side effects on startup; mods activate on app start and `\u002Freload`.\n\n## More recipes\n\n- Simple output command, panel command, busy-safe conversation command: `..\u002Fcreating-mods\u002Freferences\u002Fcommands.md`\n- Complex command architecture, state, cleanup: `..\u002Fcreating-mods\u002Freferences\u002Farchitecture.md`\n- Panel\u002Fstatus UI patterns: `..\u002Fcreating-mods\u002Freferences\u002Fui.md`\n- Worked plan-mode command\u002Ftool composition: `..\u002Fcreating-mods\u002Freferences\u002Fplan-mode.md`\n",{"data":42,"body":43},{"name":4,"description":6},{"type":44,"children":45},"root",[46,54,92,97,109,129,136,252,265,271,331,337,873,879,1089,1123,1129,1224,1230,1273],{"type":47,"tag":48,"props":49,"children":50},"element","h1",{"id":4},[51],{"type":52,"value":53},"text","Customizing Commands",{"type":47,"tag":55,"props":56,"children":57},"p",{},[58,60,67,69,75,76,82,84,90],{"type":52,"value":59},"Use this as the command-specific entrypoint for local mod slash commands. For broader mod work, recipes live in ",{"type":47,"tag":61,"props":62,"children":64},"code",{"className":63},[],[65],{"type":52,"value":66},"..\u002Fcreating-mods\u002Freferences\u002Fcommands.md",{"type":52,"value":68},", ",{"type":47,"tag":61,"props":70,"children":72},{"className":71},[],[73],{"type":52,"value":74},"..\u002Fcreating-mods\u002Freferences\u002Farchitecture.md",{"type":52,"value":68},{"type":47,"tag":61,"props":77,"children":79},{"className":78},[],[80],{"type":52,"value":81},"..\u002Fcreating-mods\u002Freferences\u002Fui.md",{"type":52,"value":83},", and ",{"type":47,"tag":61,"props":85,"children":87},{"className":86},[],[88],{"type":52,"value":89},"..\u002Fcreating-mods\u002Freferences\u002Fplan-mode.md",{"type":52,"value":91},".",{"type":47,"tag":55,"props":93,"children":94},{},[95],{"type":52,"value":96},"Mod files live in:",{"type":47,"tag":98,"props":99,"children":104},"pre",{"className":100,"code":102,"language":52,"meta":103},[101],"language-text","~\u002F.letta\u002Fmods\u002F\n","",[105],{"type":47,"tag":61,"props":106,"children":107},{"__ignoreMap":103},[108],{"type":52,"value":102},{"type":47,"tag":55,"props":110,"children":111},{},[112,114,120,122,128],{"type":52,"value":113},"Use a focused file name, e.g. ",{"type":47,"tag":61,"props":115,"children":117},{"className":116},[],[118],{"type":52,"value":119},"~\u002F.letta\u002Fmods\u002Freview.ts",{"type":52,"value":121}," or ",{"type":47,"tag":61,"props":123,"children":125},{"className":124},[],[126],{"type":52,"value":127},"~\u002F.letta\u002Fmods\u002Fcommands.ts",{"type":52,"value":91},{"type":47,"tag":130,"props":131,"children":133},"h2",{"id":132},"first-decide-whether-a-command-is-right",[134],{"type":52,"value":135},"First decide whether a command is right",{"type":47,"tag":137,"props":138,"children":139},"table",{},[140,159],{"type":47,"tag":141,"props":142,"children":143},"thead",{},[144],{"type":47,"tag":145,"props":146,"children":147},"tr",{},[148,154],{"type":47,"tag":149,"props":150,"children":151},"th",{},[152],{"type":52,"value":153},"User wants",{"type":47,"tag":149,"props":155,"children":156},{},[157],{"type":52,"value":158},"Build",{"type":47,"tag":160,"props":161,"children":162},"tbody",{},[163,183,201,214,227],{"type":47,"tag":145,"props":164,"children":165},{},[166,178],{"type":47,"tag":167,"props":168,"children":169},"td",{},[170,176],{"type":47,"tag":61,"props":171,"children":173},{"className":172},[],[174],{"type":52,"value":175},"\u002Ffoo",{"type":52,"value":177}," sends a prompt or shows local output",{"type":47,"tag":167,"props":179,"children":180},{},[181],{"type":52,"value":182},"Mod command",{"type":47,"tag":145,"props":184,"children":185},{},[186,196],{"type":47,"tag":167,"props":187,"children":188},{},[189,194],{"type":47,"tag":61,"props":190,"children":192},{"className":191},[],[193],{"type":52,"value":175},{"type":52,"value":195}," starts a reusable agent workflow",{"type":47,"tag":167,"props":197,"children":198},{},[199],{"type":52,"value":200},"Skill + thin mod command",{"type":47,"tag":145,"props":202,"children":203},{},[204,209],{"type":47,"tag":167,"props":205,"children":206},{},[207],{"type":52,"value":208},"Agent\u002Fmodel should autonomously call the capability",{"type":47,"tag":167,"props":210,"children":211},{},[212],{"type":52,"value":213},"Mod tool, not a command",{"type":47,"tag":145,"props":215,"children":216},{},[217,222],{"type":47,"tag":167,"props":218,"children":219},{},[220],{"type":52,"value":221},"Command shows transient progress\u002Fresults",{"type":47,"tag":167,"props":223,"children":224},{},[225],{"type":52,"value":226},"Mod command + panel",{"type":47,"tag":145,"props":228,"children":229},{},[230,235],{"type":47,"tag":167,"props":231,"children":232},{},[233],{"type":52,"value":234},"Command needs model output while the main agent is busy",{"type":47,"tag":167,"props":236,"children":237},{},[238,244,246],{"type":47,"tag":61,"props":239,"children":241},{"className":240},[],[242],{"type":52,"value":243},"runWhenBusy: true",{"type":52,"value":245}," command + forked ",{"type":47,"tag":61,"props":247,"children":249},{"className":248},[],[250],{"type":52,"value":251},"ctx.conversation",{"type":47,"tag":55,"props":253,"children":254},{},[255,257,263],{"type":52,"value":256},"If the command is a durable workflow like ",{"type":47,"tag":61,"props":258,"children":260},{"className":259},[],[261],{"type":52,"value":262},"\u002Fgoal",{"type":52,"value":264},", put the workflow instructions in a skill and keep the mod command as a small launcher\u002Fprompt.",{"type":47,"tag":130,"props":266,"children":268},{"id":267},"workflow",[269],{"type":52,"value":270},"Workflow",{"type":47,"tag":272,"props":273,"children":274},"ol",{},[275,289,294,314,319],{"type":47,"tag":276,"props":277,"children":278},"li",{},[279,281,287],{"type":52,"value":280},"Inspect ",{"type":47,"tag":61,"props":282,"children":284},{"className":283},[],[285],{"type":52,"value":286},"~\u002F.letta\u002Fmods\u002F",{"type":52,"value":288}," for related command files.",{"type":47,"tag":276,"props":290,"children":291},{},[292],{"type":52,"value":293},"Preserve unrelated mod code; create a focused new file if merging is messy.",{"type":47,"tag":276,"props":295,"children":296},{},[297,299,305,307,313],{"type":52,"value":298},"Register with ",{"type":47,"tag":61,"props":300,"children":302},{"className":301},[],[303],{"type":52,"value":304},"letta.commands.register()",{"type":52,"value":306}," and guard with ",{"type":47,"tag":61,"props":308,"children":310},{"className":309},[],[311],{"type":52,"value":312},"letta.capabilities.commands",{"type":52,"value":91},{"type":47,"tag":276,"props":315,"children":316},{},[317],{"type":52,"value":318},"Return the unregister function, or a disposer that calls it plus any timer\u002Fpanel cleanup.",{"type":47,"tag":276,"props":320,"children":321},{},[322,324,330],{"type":52,"value":323},"Tell the user the exact file path changed and to run ",{"type":47,"tag":61,"props":325,"children":327},{"className":326},[],[328],{"type":52,"value":329},"\u002Freload",{"type":52,"value":91},{"type":47,"tag":130,"props":332,"children":334},{"id":333},"default-prompt-command",[335],{"type":52,"value":336},"Default prompt command",{"type":47,"tag":98,"props":338,"children":342},{"className":339,"code":340,"language":341,"meta":103,"style":103},"language-ts shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","export default function activate(letta) {\n  if (!letta.capabilities.commands) return;\n\n  return letta.commands.register({\n    id: \"review\",\n    description: \"Review current git changes\",\n    args: \"[focus]\",\n    run(ctx) {\n      const focus = ctx.args.trim();\n      return {\n        type: \"prompt\",\n        content: focus\n          ? `Review current git changes. Focus on ${focus}.`\n          : \"Review current git changes. Focus on correctness issues.\",\n        systemReminder: true,\n      };\n    },\n  });\n}\n","ts",[343],{"type":47,"tag":61,"props":344,"children":345},{"__ignoreMap":103},[346,396,454,464,504,539,569,599,625,676,689,719,737,780,806,829,838,847,864],{"type":47,"tag":347,"props":348,"children":351},"span",{"class":349,"line":350},"line",1,[352,358,363,369,375,381,386,391],{"type":47,"tag":347,"props":353,"children":355},{"style":354},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[356],{"type":52,"value":357},"export",{"type":47,"tag":347,"props":359,"children":360},{"style":354},[361],{"type":52,"value":362}," default",{"type":47,"tag":347,"props":364,"children":366},{"style":365},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[367],{"type":52,"value":368}," function",{"type":47,"tag":347,"props":370,"children":372},{"style":371},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[373],{"type":52,"value":374}," activate",{"type":47,"tag":347,"props":376,"children":378},{"style":377},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[379],{"type":52,"value":380},"(",{"type":47,"tag":347,"props":382,"children":384},{"style":383},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[385],{"type":52,"value":8},{"type":47,"tag":347,"props":387,"children":388},{"style":377},[389],{"type":52,"value":390},")",{"type":47,"tag":347,"props":392,"children":393},{"style":377},[394],{"type":52,"value":395}," {\n",{"type":47,"tag":347,"props":397,"children":399},{"class":349,"line":398},2,[400,405,411,416,421,425,430,434,439,444,449],{"type":47,"tag":347,"props":401,"children":402},{"style":354},[403],{"type":52,"value":404},"  if",{"type":47,"tag":347,"props":406,"children":408},{"style":407},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[409],{"type":52,"value":410}," (",{"type":47,"tag":347,"props":412,"children":413},{"style":377},[414],{"type":52,"value":415},"!",{"type":47,"tag":347,"props":417,"children":419},{"style":418},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[420],{"type":52,"value":8},{"type":47,"tag":347,"props":422,"children":423},{"style":377},[424],{"type":52,"value":91},{"type":47,"tag":347,"props":426,"children":427},{"style":418},[428],{"type":52,"value":429},"capabilities",{"type":47,"tag":347,"props":431,"children":432},{"style":377},[433],{"type":52,"value":91},{"type":47,"tag":347,"props":435,"children":436},{"style":418},[437],{"type":52,"value":438},"commands",{"type":47,"tag":347,"props":440,"children":441},{"style":407},[442],{"type":52,"value":443},") ",{"type":47,"tag":347,"props":445,"children":446},{"style":354},[447],{"type":52,"value":448},"return",{"type":47,"tag":347,"props":450,"children":451},{"style":377},[452],{"type":52,"value":453},";\n",{"type":47,"tag":347,"props":455,"children":457},{"class":349,"line":456},3,[458],{"type":47,"tag":347,"props":459,"children":461},{"emptyLinePlaceholder":460},true,[462],{"type":52,"value":463},"\n",{"type":47,"tag":347,"props":465,"children":467},{"class":349,"line":466},4,[468,473,478,482,486,490,495,499],{"type":47,"tag":347,"props":469,"children":470},{"style":354},[471],{"type":52,"value":472},"  return",{"type":47,"tag":347,"props":474,"children":475},{"style":418},[476],{"type":52,"value":477}," letta",{"type":47,"tag":347,"props":479,"children":480},{"style":377},[481],{"type":52,"value":91},{"type":47,"tag":347,"props":483,"children":484},{"style":418},[485],{"type":52,"value":438},{"type":47,"tag":347,"props":487,"children":488},{"style":377},[489],{"type":52,"value":91},{"type":47,"tag":347,"props":491,"children":492},{"style":371},[493],{"type":52,"value":494},"register",{"type":47,"tag":347,"props":496,"children":497},{"style":407},[498],{"type":52,"value":380},{"type":47,"tag":347,"props":500,"children":501},{"style":377},[502],{"type":52,"value":503},"{\n",{"type":47,"tag":347,"props":505,"children":507},{"class":349,"line":506},5,[508,513,518,523,529,534],{"type":47,"tag":347,"props":509,"children":510},{"style":407},[511],{"type":52,"value":512},"    id",{"type":47,"tag":347,"props":514,"children":515},{"style":377},[516],{"type":52,"value":517},":",{"type":47,"tag":347,"props":519,"children":520},{"style":377},[521],{"type":52,"value":522}," \"",{"type":47,"tag":347,"props":524,"children":526},{"style":525},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[527],{"type":52,"value":528},"review",{"type":47,"tag":347,"props":530,"children":531},{"style":377},[532],{"type":52,"value":533},"\"",{"type":47,"tag":347,"props":535,"children":536},{"style":377},[537],{"type":52,"value":538},",\n",{"type":47,"tag":347,"props":540,"children":542},{"class":349,"line":541},6,[543,548,552,556,561,565],{"type":47,"tag":347,"props":544,"children":545},{"style":407},[546],{"type":52,"value":547},"    description",{"type":47,"tag":347,"props":549,"children":550},{"style":377},[551],{"type":52,"value":517},{"type":47,"tag":347,"props":553,"children":554},{"style":377},[555],{"type":52,"value":522},{"type":47,"tag":347,"props":557,"children":558},{"style":525},[559],{"type":52,"value":560},"Review current git changes",{"type":47,"tag":347,"props":562,"children":563},{"style":377},[564],{"type":52,"value":533},{"type":47,"tag":347,"props":566,"children":567},{"style":377},[568],{"type":52,"value":538},{"type":47,"tag":347,"props":570,"children":572},{"class":349,"line":571},7,[573,578,582,586,591,595],{"type":47,"tag":347,"props":574,"children":575},{"style":407},[576],{"type":52,"value":577},"    args",{"type":47,"tag":347,"props":579,"children":580},{"style":377},[581],{"type":52,"value":517},{"type":47,"tag":347,"props":583,"children":584},{"style":377},[585],{"type":52,"value":522},{"type":47,"tag":347,"props":587,"children":588},{"style":525},[589],{"type":52,"value":590},"[focus]",{"type":47,"tag":347,"props":592,"children":593},{"style":377},[594],{"type":52,"value":533},{"type":47,"tag":347,"props":596,"children":597},{"style":377},[598],{"type":52,"value":538},{"type":47,"tag":347,"props":600,"children":602},{"class":349,"line":601},8,[603,608,612,617,621],{"type":47,"tag":347,"props":604,"children":605},{"style":407},[606],{"type":52,"value":607},"    run",{"type":47,"tag":347,"props":609,"children":610},{"style":377},[611],{"type":52,"value":380},{"type":47,"tag":347,"props":613,"children":614},{"style":383},[615],{"type":52,"value":616},"ctx",{"type":47,"tag":347,"props":618,"children":619},{"style":377},[620],{"type":52,"value":390},{"type":47,"tag":347,"props":622,"children":623},{"style":377},[624],{"type":52,"value":395},{"type":47,"tag":347,"props":626,"children":628},{"class":349,"line":627},9,[629,634,639,644,649,653,658,662,667,672],{"type":47,"tag":347,"props":630,"children":631},{"style":365},[632],{"type":52,"value":633},"      const",{"type":47,"tag":347,"props":635,"children":636},{"style":418},[637],{"type":52,"value":638}," focus",{"type":47,"tag":347,"props":640,"children":641},{"style":377},[642],{"type":52,"value":643}," =",{"type":47,"tag":347,"props":645,"children":646},{"style":418},[647],{"type":52,"value":648}," ctx",{"type":47,"tag":347,"props":650,"children":651},{"style":377},[652],{"type":52,"value":91},{"type":47,"tag":347,"props":654,"children":655},{"style":418},[656],{"type":52,"value":657},"args",{"type":47,"tag":347,"props":659,"children":660},{"style":377},[661],{"type":52,"value":91},{"type":47,"tag":347,"props":663,"children":664},{"style":371},[665],{"type":52,"value":666},"trim",{"type":47,"tag":347,"props":668,"children":669},{"style":407},[670],{"type":52,"value":671},"()",{"type":47,"tag":347,"props":673,"children":674},{"style":377},[675],{"type":52,"value":453},{"type":47,"tag":347,"props":677,"children":679},{"class":349,"line":678},10,[680,685],{"type":47,"tag":347,"props":681,"children":682},{"style":354},[683],{"type":52,"value":684},"      return",{"type":47,"tag":347,"props":686,"children":687},{"style":377},[688],{"type":52,"value":395},{"type":47,"tag":347,"props":690,"children":692},{"class":349,"line":691},11,[693,698,702,706,711,715],{"type":47,"tag":347,"props":694,"children":695},{"style":407},[696],{"type":52,"value":697},"        type",{"type":47,"tag":347,"props":699,"children":700},{"style":377},[701],{"type":52,"value":517},{"type":47,"tag":347,"props":703,"children":704},{"style":377},[705],{"type":52,"value":522},{"type":47,"tag":347,"props":707,"children":708},{"style":525},[709],{"type":52,"value":710},"prompt",{"type":47,"tag":347,"props":712,"children":713},{"style":377},[714],{"type":52,"value":533},{"type":47,"tag":347,"props":716,"children":717},{"style":377},[718],{"type":52,"value":538},{"type":47,"tag":347,"props":720,"children":722},{"class":349,"line":721},12,[723,728,732],{"type":47,"tag":347,"props":724,"children":725},{"style":407},[726],{"type":52,"value":727},"        content",{"type":47,"tag":347,"props":729,"children":730},{"style":377},[731],{"type":52,"value":517},{"type":47,"tag":347,"props":733,"children":734},{"style":418},[735],{"type":52,"value":736}," focus\n",{"type":47,"tag":347,"props":738,"children":740},{"class":349,"line":739},13,[741,746,751,756,761,766,771,775],{"type":47,"tag":347,"props":742,"children":743},{"style":377},[744],{"type":52,"value":745},"          ?",{"type":47,"tag":347,"props":747,"children":748},{"style":377},[749],{"type":52,"value":750}," `",{"type":47,"tag":347,"props":752,"children":753},{"style":525},[754],{"type":52,"value":755},"Review current git changes. Focus on ",{"type":47,"tag":347,"props":757,"children":758},{"style":377},[759],{"type":52,"value":760},"${",{"type":47,"tag":347,"props":762,"children":763},{"style":418},[764],{"type":52,"value":765},"focus",{"type":47,"tag":347,"props":767,"children":768},{"style":377},[769],{"type":52,"value":770},"}",{"type":47,"tag":347,"props":772,"children":773},{"style":525},[774],{"type":52,"value":91},{"type":47,"tag":347,"props":776,"children":777},{"style":377},[778],{"type":52,"value":779},"`\n",{"type":47,"tag":347,"props":781,"children":783},{"class":349,"line":782},14,[784,789,793,798,802],{"type":47,"tag":347,"props":785,"children":786},{"style":377},[787],{"type":52,"value":788},"          :",{"type":47,"tag":347,"props":790,"children":791},{"style":377},[792],{"type":52,"value":522},{"type":47,"tag":347,"props":794,"children":795},{"style":525},[796],{"type":52,"value":797},"Review current git changes. Focus on correctness issues.",{"type":47,"tag":347,"props":799,"children":800},{"style":377},[801],{"type":52,"value":533},{"type":47,"tag":347,"props":803,"children":804},{"style":377},[805],{"type":52,"value":538},{"type":47,"tag":347,"props":807,"children":809},{"class":349,"line":808},15,[810,815,819,825],{"type":47,"tag":347,"props":811,"children":812},{"style":407},[813],{"type":52,"value":814},"        systemReminder",{"type":47,"tag":347,"props":816,"children":817},{"style":377},[818],{"type":52,"value":517},{"type":47,"tag":347,"props":820,"children":822},{"style":821},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[823],{"type":52,"value":824}," true",{"type":47,"tag":347,"props":826,"children":827},{"style":377},[828],{"type":52,"value":538},{"type":47,"tag":347,"props":830,"children":832},{"class":349,"line":831},16,[833],{"type":47,"tag":347,"props":834,"children":835},{"style":377},[836],{"type":52,"value":837},"      };\n",{"type":47,"tag":347,"props":839,"children":841},{"class":349,"line":840},17,[842],{"type":47,"tag":347,"props":843,"children":844},{"style":377},[845],{"type":52,"value":846},"    },\n",{"type":47,"tag":347,"props":848,"children":850},{"class":349,"line":849},18,[851,856,860],{"type":47,"tag":347,"props":852,"children":853},{"style":377},[854],{"type":52,"value":855},"  }",{"type":47,"tag":347,"props":857,"children":858},{"style":407},[859],{"type":52,"value":390},{"type":47,"tag":347,"props":861,"children":862},{"style":377},[863],{"type":52,"value":453},{"type":47,"tag":347,"props":865,"children":867},{"class":349,"line":866},19,[868],{"type":47,"tag":347,"props":869,"children":870},{"style":377},[871],{"type":52,"value":872},"}\n",{"type":47,"tag":130,"props":874,"children":876},{"id":875},"command-result-types",[877],{"type":52,"value":878},"Command result types",{"type":47,"tag":98,"props":880,"children":882},{"className":339,"code":881,"language":341,"meta":103,"style":103},"type ModCommandResult =\n  | { type: \"prompt\"; content: string; systemReminder?: boolean }\n  | { type: \"output\"; output: string; success?: boolean }\n  | { type: \"handled\" };\n",[883],{"type":47,"tag":61,"props":884,"children":885},{"__ignoreMap":103},[886,905,982,1052],{"type":47,"tag":347,"props":887,"children":888},{"class":349,"line":350},[889,894,900],{"type":47,"tag":347,"props":890,"children":891},{"style":365},[892],{"type":52,"value":893},"type",{"type":47,"tag":347,"props":895,"children":897},{"style":896},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[898],{"type":52,"value":899}," ModCommandResult",{"type":47,"tag":347,"props":901,"children":902},{"style":377},[903],{"type":52,"value":904}," =\n",{"type":47,"tag":347,"props":906,"children":907},{"class":349,"line":398},[908,913,918,923,927,931,935,939,944,949,953,958,962,967,972,977],{"type":47,"tag":347,"props":909,"children":910},{"style":377},[911],{"type":52,"value":912},"  |",{"type":47,"tag":347,"props":914,"children":915},{"style":377},[916],{"type":52,"value":917}," {",{"type":47,"tag":347,"props":919,"children":920},{"style":407},[921],{"type":52,"value":922}," type",{"type":47,"tag":347,"props":924,"children":925},{"style":377},[926],{"type":52,"value":517},{"type":47,"tag":347,"props":928,"children":929},{"style":377},[930],{"type":52,"value":522},{"type":47,"tag":347,"props":932,"children":933},{"style":525},[934],{"type":52,"value":710},{"type":47,"tag":347,"props":936,"children":937},{"style":377},[938],{"type":52,"value":533},{"type":47,"tag":347,"props":940,"children":941},{"style":377},[942],{"type":52,"value":943},";",{"type":47,"tag":347,"props":945,"children":946},{"style":407},[947],{"type":52,"value":948}," content",{"type":47,"tag":347,"props":950,"children":951},{"style":377},[952],{"type":52,"value":517},{"type":47,"tag":347,"props":954,"children":955},{"style":896},[956],{"type":52,"value":957}," string",{"type":47,"tag":347,"props":959,"children":960},{"style":377},[961],{"type":52,"value":943},{"type":47,"tag":347,"props":963,"children":964},{"style":407},[965],{"type":52,"value":966}," systemReminder",{"type":47,"tag":347,"props":968,"children":969},{"style":377},[970],{"type":52,"value":971},"?:",{"type":47,"tag":347,"props":973,"children":974},{"style":896},[975],{"type":52,"value":976}," boolean",{"type":47,"tag":347,"props":978,"children":979},{"style":377},[980],{"type":52,"value":981}," }\n",{"type":47,"tag":347,"props":983,"children":984},{"class":349,"line":456},[985,989,993,997,1001,1005,1010,1014,1018,1023,1027,1031,1035,1040,1044,1048],{"type":47,"tag":347,"props":986,"children":987},{"style":377},[988],{"type":52,"value":912},{"type":47,"tag":347,"props":990,"children":991},{"style":377},[992],{"type":52,"value":917},{"type":47,"tag":347,"props":994,"children":995},{"style":407},[996],{"type":52,"value":922},{"type":47,"tag":347,"props":998,"children":999},{"style":377},[1000],{"type":52,"value":517},{"type":47,"tag":347,"props":1002,"children":1003},{"style":377},[1004],{"type":52,"value":522},{"type":47,"tag":347,"props":1006,"children":1007},{"style":525},[1008],{"type":52,"value":1009},"output",{"type":47,"tag":347,"props":1011,"children":1012},{"style":377},[1013],{"type":52,"value":533},{"type":47,"tag":347,"props":1015,"children":1016},{"style":377},[1017],{"type":52,"value":943},{"type":47,"tag":347,"props":1019,"children":1020},{"style":407},[1021],{"type":52,"value":1022}," output",{"type":47,"tag":347,"props":1024,"children":1025},{"style":377},[1026],{"type":52,"value":517},{"type":47,"tag":347,"props":1028,"children":1029},{"style":896},[1030],{"type":52,"value":957},{"type":47,"tag":347,"props":1032,"children":1033},{"style":377},[1034],{"type":52,"value":943},{"type":47,"tag":347,"props":1036,"children":1037},{"style":407},[1038],{"type":52,"value":1039}," success",{"type":47,"tag":347,"props":1041,"children":1042},{"style":377},[1043],{"type":52,"value":971},{"type":47,"tag":347,"props":1045,"children":1046},{"style":896},[1047],{"type":52,"value":976},{"type":47,"tag":347,"props":1049,"children":1050},{"style":377},[1051],{"type":52,"value":981},{"type":47,"tag":347,"props":1053,"children":1054},{"class":349,"line":466},[1055,1059,1063,1067,1071,1075,1080,1084],{"type":47,"tag":347,"props":1056,"children":1057},{"style":377},[1058],{"type":52,"value":912},{"type":47,"tag":347,"props":1060,"children":1061},{"style":377},[1062],{"type":52,"value":917},{"type":47,"tag":347,"props":1064,"children":1065},{"style":407},[1066],{"type":52,"value":922},{"type":47,"tag":347,"props":1068,"children":1069},{"style":377},[1070],{"type":52,"value":517},{"type":47,"tag":347,"props":1072,"children":1073},{"style":377},[1074],{"type":52,"value":522},{"type":47,"tag":347,"props":1076,"children":1077},{"style":525},[1078],{"type":52,"value":1079},"handled",{"type":47,"tag":347,"props":1081,"children":1082},{"style":377},[1083],{"type":52,"value":533},{"type":47,"tag":347,"props":1085,"children":1086},{"style":377},[1087],{"type":52,"value":1088}," };\n",{"type":47,"tag":1090,"props":1091,"children":1092},"ul",{},[1093,1103,1113],{"type":47,"tag":276,"props":1094,"children":1095},{},[1096,1101],{"type":47,"tag":61,"props":1097,"children":1099},{"className":1098},[],[1100],{"type":52,"value":710},{"type":52,"value":1102},": sends content to the agent. Use for normal slash shortcuts.",{"type":47,"tag":276,"props":1104,"children":1105},{},[1106,1111],{"type":47,"tag":61,"props":1107,"children":1109},{"className":1108},[],[1110],{"type":52,"value":1009},{"type":52,"value":1112},": prints local text and does not contact the agent.",{"type":47,"tag":276,"props":1114,"children":1115},{},[1116,1121],{"type":47,"tag":61,"props":1117,"children":1119},{"className":1118},[],[1120],{"type":52,"value":1079},{"type":52,"value":1122},": command handled its own side effects\u002FUI; common for panel commands.",{"type":47,"tag":130,"props":1124,"children":1126},{"id":1125},"rules",[1127],{"type":52,"value":1128},"Rules",{"type":47,"tag":1090,"props":1130,"children":1131},{},[1132,1152,1157,1162,1185,1208,1213],{"type":47,"tag":276,"props":1133,"children":1134},{},[1135,1137,1143,1145,1151],{"type":52,"value":1136},"Command IDs omit the slash: ",{"type":47,"tag":61,"props":1138,"children":1140},{"className":1139},[],[1141],{"type":52,"value":1142},"id: \"review\"",{"type":52,"value":1144},", not ",{"type":47,"tag":61,"props":1146,"children":1148},{"className":1147},[],[1149],{"type":52,"value":1150},"\"\u002Freview\"",{"type":52,"value":91},{"type":47,"tag":276,"props":1153,"children":1154},{},[1155],{"type":52,"value":1156},"Use lowercase slugs with letters, numbers, and hyphens.",{"type":47,"tag":276,"props":1158,"children":1159},{},[1160],{"type":52,"value":1161},"Do not register built-in command IDs.",{"type":47,"tag":276,"props":1163,"children":1164},{},[1165,1170,1172,1177,1179,1184],{"type":47,"tag":61,"props":1166,"children":1168},{"className":1167},[],[1169],{"type":52,"value":243},{"type":52,"value":1171}," commands must not return ",{"type":47,"tag":61,"props":1173,"children":1175},{"className":1174},[],[1176],{"type":52,"value":710},{"type":52,"value":1178}," while the main agent is busy; use scoped conversation helpers\u002Fpanels and return ",{"type":47,"tag":61,"props":1180,"children":1182},{"className":1181},[],[1183],{"type":52,"value":1079},{"type":52,"value":91},{"type":47,"tag":276,"props":1186,"children":1187},{},[1188,1194,1196,1201,1202,1207],{"type":47,"tag":61,"props":1189,"children":1191},{"className":1190},[],[1192],{"type":52,"value":1193},"showInTranscript: false",{"type":52,"value":1195}," commands should usually return ",{"type":47,"tag":61,"props":1197,"children":1199},{"className":1198},[],[1200],{"type":52,"value":1079},{"type":52,"value":1144},{"type":47,"tag":61,"props":1203,"children":1205},{"className":1204},[],[1206],{"type":52,"value":710},{"type":52,"value":91},{"type":47,"tag":276,"props":1209,"children":1210},{},[1211],{"type":52,"value":1212},"Do not import Letta Code app internals.",{"type":47,"tag":276,"props":1214,"children":1215},{},[1216,1218,1223],{"type":52,"value":1217},"Do not do surprising side effects on startup; mods activate on app start and ",{"type":47,"tag":61,"props":1219,"children":1221},{"className":1220},[],[1222],{"type":52,"value":329},{"type":52,"value":91},{"type":47,"tag":130,"props":1225,"children":1227},{"id":1226},"more-recipes",[1228],{"type":52,"value":1229},"More recipes",{"type":47,"tag":1090,"props":1231,"children":1232},{},[1233,1243,1253,1263],{"type":47,"tag":276,"props":1234,"children":1235},{},[1236,1238],{"type":52,"value":1237},"Simple output command, panel command, busy-safe conversation command: ",{"type":47,"tag":61,"props":1239,"children":1241},{"className":1240},[],[1242],{"type":52,"value":66},{"type":47,"tag":276,"props":1244,"children":1245},{},[1246,1248],{"type":52,"value":1247},"Complex command architecture, state, cleanup: ",{"type":47,"tag":61,"props":1249,"children":1251},{"className":1250},[],[1252],{"type":52,"value":74},{"type":47,"tag":276,"props":1254,"children":1255},{},[1256,1258],{"type":52,"value":1257},"Panel\u002Fstatus UI patterns: ",{"type":47,"tag":61,"props":1259,"children":1261},{"className":1260},[],[1262],{"type":52,"value":81},{"type":47,"tag":276,"props":1264,"children":1265},{},[1266,1268],{"type":52,"value":1267},"Worked plan-mode command\u002Ftool composition: ",{"type":47,"tag":61,"props":1269,"children":1271},{"className":1270},[],[1272],{"type":52,"value":89},{"type":47,"tag":1274,"props":1275,"children":1276},"style",{},[1277],{"type":52,"value":1278},"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":1280,"total":1429},[1281,1293,1308,1320,1332,1346,1352,1363,1375,1391,1402,1414],{"slug":1282,"name":1282,"fn":1283,"description":1284,"org":1285,"tags":1286,"stars":23,"repoUrl":24,"updatedAt":1292},"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},[1287,1288,1289],{"name":21,"slug":22,"type":16},{"name":14,"slug":15,"type":16},{"name":1290,"slug":1291,"type":16},"GitHub","github","2026-07-13T06:22:58.45767",{"slug":1294,"name":1295,"fn":1296,"description":1297,"org":1298,"tags":1299,"stars":23,"repoUrl":24,"updatedAt":1307},"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},[1300,1301,1304],{"name":21,"slug":22,"type":16},{"name":1302,"slug":1303,"type":16},"AI Context","ai-context",{"name":1305,"slug":1306,"type":16},"Debugging","debugging","2026-07-13T06:22:50.151002",{"slug":1309,"name":1309,"fn":1310,"description":1311,"org":1312,"tags":1313,"stars":23,"repoUrl":24,"updatedAt":1319},"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},[1314,1315,1316],{"name":21,"slug":22,"type":16},{"name":14,"slug":15,"type":16},{"name":1317,"slug":1318,"type":16},"MCP","mcp","2026-07-13T06:23:37.646079",{"slug":1321,"name":1321,"fn":1322,"description":1323,"org":1324,"tags":1325,"stars":23,"repoUrl":24,"updatedAt":1331},"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},[1326,1327,1328],{"name":21,"slug":22,"type":16},{"name":14,"slug":15,"type":16},{"name":1329,"slug":1330,"type":16},"Coding","coding","2026-07-23T05:42:38.133565",{"slug":1333,"name":1333,"fn":1334,"description":1335,"org":1336,"tags":1337,"stars":23,"repoUrl":24,"updatedAt":1345},"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},[1338,1339,1342],{"name":21,"slug":22,"type":16},{"name":1340,"slug":1341,"type":16},"Documentation","documentation",{"name":1343,"slug":1344,"type":16},"Plugin Development","plugin-development","2026-07-13T06:22:56.998659",{"slug":4,"name":4,"fn":5,"description":6,"org":1347,"tags":1348,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1349,1350,1351],{"name":21,"slug":22,"type":16},{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"slug":1353,"name":1353,"fn":1354,"description":1355,"org":1356,"tags":1357,"stars":23,"repoUrl":24,"updatedAt":1362},"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},[1358,1359],{"name":18,"slug":19,"type":16},{"name":1360,"slug":1361,"type":16},"Engineering","engineering","2026-07-13T06:23:27.465985",{"slug":1364,"name":1364,"fn":1365,"description":1366,"org":1367,"tags":1368,"stars":23,"repoUrl":24,"updatedAt":1374},"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},[1369,1370,1371],{"name":21,"slug":22,"type":16},{"name":1329,"slug":1330,"type":16},{"name":1372,"slug":1373,"type":16},"Multi-Agent","multi-agent","2026-07-26T05:46:56.388845",{"slug":1376,"name":1376,"fn":1377,"description":1378,"org":1379,"tags":1380,"stars":23,"repoUrl":24,"updatedAt":1390},"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},[1381,1384,1387],{"name":1382,"slug":1383,"type":16},"Configuration","configuration",{"name":1385,"slug":1386,"type":16},"Desktop","desktop",{"name":1388,"slug":1389,"type":16},"Themes","themes","2026-07-13T06:23:41.407811",{"slug":1392,"name":1392,"fn":1393,"description":1394,"org":1395,"tags":1396,"stars":23,"repoUrl":24,"updatedAt":1401},"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},[1397,1398],{"name":21,"slug":22,"type":16},{"name":1399,"slug":1400,"type":16},"Management","management","2026-07-16T06:02:17.297841",{"slug":1403,"name":1403,"fn":1404,"description":1405,"org":1406,"tags":1407,"stars":23,"repoUrl":24,"updatedAt":1413},"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},[1408,1409,1412],{"name":21,"slug":22,"type":16},{"name":1410,"slug":1411,"type":16},"AI Infrastructure","ai-infrastructure",{"name":1382,"slug":1383,"type":16},"2026-07-13T06:23:08.838181",{"slug":1415,"name":1415,"fn":1416,"description":1417,"org":1418,"tags":1419,"stars":23,"repoUrl":24,"updatedAt":1428},"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},[1420,1423,1426],{"name":1421,"slug":1422,"type":16},"Creative","creative",{"name":1424,"slug":1425,"type":16},"Graphics","graphics",{"name":1427,"slug":1415,"type":16},"Image Generation","2026-07-13T06:23:06.189403",69,{"items":1431,"total":866},[1432,1438,1444,1450,1456,1462,1468],{"slug":1282,"name":1282,"fn":1283,"description":1284,"org":1433,"tags":1434,"stars":23,"repoUrl":24,"updatedAt":1292},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1435,1436,1437],{"name":21,"slug":22,"type":16},{"name":14,"slug":15,"type":16},{"name":1290,"slug":1291,"type":16},{"slug":1294,"name":1295,"fn":1296,"description":1297,"org":1439,"tags":1440,"stars":23,"repoUrl":24,"updatedAt":1307},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1441,1442,1443],{"name":21,"slug":22,"type":16},{"name":1302,"slug":1303,"type":16},{"name":1305,"slug":1306,"type":16},{"slug":1309,"name":1309,"fn":1310,"description":1311,"org":1445,"tags":1446,"stars":23,"repoUrl":24,"updatedAt":1319},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1447,1448,1449],{"name":21,"slug":22,"type":16},{"name":14,"slug":15,"type":16},{"name":1317,"slug":1318,"type":16},{"slug":1321,"name":1321,"fn":1322,"description":1323,"org":1451,"tags":1452,"stars":23,"repoUrl":24,"updatedAt":1331},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1453,1454,1455],{"name":21,"slug":22,"type":16},{"name":14,"slug":15,"type":16},{"name":1329,"slug":1330,"type":16},{"slug":1333,"name":1333,"fn":1334,"description":1335,"org":1457,"tags":1458,"stars":23,"repoUrl":24,"updatedAt":1345},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1459,1460,1461],{"name":21,"slug":22,"type":16},{"name":1340,"slug":1341,"type":16},{"name":1343,"slug":1344,"type":16},{"slug":4,"name":4,"fn":5,"description":6,"org":1463,"tags":1464,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1465,1466,1467],{"name":21,"slug":22,"type":16},{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"slug":1353,"name":1353,"fn":1354,"description":1355,"org":1469,"tags":1470,"stars":23,"repoUrl":24,"updatedAt":1362},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1471,1472],{"name":18,"slug":19,"type":16},{"name":1360,"slug":1361,"type":16}]