fix: improve /feedback command with more context and consistent styling (#679)

Co-authored-by: Letta <noreply@letta.com>
This commit is contained in:
Charles Packer
2026-01-25 22:14:09 -08:00
committed by GitHub
parent 74de09d887
commit abb98d7571
3 changed files with 67 additions and 30 deletions

View File

@@ -23,7 +23,7 @@ interface SessionContextOptions {
/**
* Get the current local time in a human-readable format
*/
function getLocalTime(): string {
export function getLocalTime(): string {
const now = new Date();
return now.toLocaleString(undefined, {
weekday: "long",
@@ -39,7 +39,7 @@ function getLocalTime(): string {
/**
* Get device type based on platform
*/
function getDeviceType(): string {
export function getDeviceType(): string {
const p = platform();
switch (p) {
case "darwin":