1
0

feat: Implement history tracking with new CLI commands for viewing past transcripts and usage statistics.

This commit is contained in:
2026-02-28 14:06:58 +01:00
parent eadbd8d46d
commit a08838fbc4
12 changed files with 349 additions and 4 deletions

12
Core/HistoryEntry.cs Normal file
View File

@@ -0,0 +1,12 @@
using System;
namespace Toak.Core;
public class HistoryEntry
{
public DateTime Timestamp { get; set; }
public string RawTranscript { get; set; } = string.Empty;
public string RefinedText { get; set; } = string.Empty;
public string? SkillName { get; set; }
public long DurationMs { get; set; }
}