feat: add usage tracking, output mode, and cli exit mode (#7)

This commit is contained in:
Charles Packer
2025-10-25 16:50:15 -07:00
committed by GitHub
parent a8dff2d86e
commit 1d65606697
9 changed files with 261 additions and 15 deletions

View File

@@ -29,6 +29,13 @@ export const commands: Record<string, Command> = {
return "Toggling token streaming...";
},
},
"/exit": {
desc: "Exit and show session stats",
handler: () => {
// Handled specially in App.tsx to show stats
return "Exiting...";
},
},
};
/**