feat(tui): add /history command — M1-007 (#297)
All checks were successful
ci/woodpecker/push/ci Pipeline was successful

Co-authored-by: Jason Woltje <jason@diversecanvas.com>
Co-committed-by: Jason Woltje <jason@diversecanvas.com>
This commit was merged in pull request #297.
This commit is contained in:
2026-03-21 20:41:27 +00:00
committed by jason.woltje
parent 1d14ddcfe7
commit 02ff3b3256
5 changed files with 109 additions and 1 deletions

View File

@@ -38,6 +38,15 @@ const LOCAL_COMMANDS: CommandDef[] = [
available: true,
scope: 'core',
},
{
name: 'history',
description: 'Show conversation message count and context usage',
aliases: ['hist'],
args: undefined,
execution: 'local',
available: true,
scope: 'core',
},
{
name: 'clear',
description: 'Clear the current conversation display',
@@ -64,6 +73,7 @@ const ALIASES: Record<string, string> = {
a: 'agent',
s: 'status',
h: 'help',
hist: 'history',
pref: 'preferences',
};