fix(cli): move /memfs lower in command autocomplete order (#766)

Co-authored-by: Letta <noreply@letta.com>
This commit is contained in:
Charles Packer
2026-01-31 20:24:55 -08:00
committed by GitHub
parent 5fb039c807
commit b6c78dd134

View File

@@ -63,7 +63,7 @@ export const commands: Record<string, Command> = {
"/memfs": {
desc: "Manage filesystem-backed memory (/memfs [enable|disable|sync|reset])",
args: "[enable|disable|sync|reset]",
order: 15.5,
order: 27.5, // Advanced feature, near /toolset
handler: () => {
// Handled specially in App.tsx
return "Managing memory filesystem...";