Further Agent updates

This commit is contained in:
2026-08-18 15:51:13 -04:00
parent a94de5be1d
commit 2ad8ae1666
22 changed files with 3043 additions and 60 deletions
@@ -156,7 +156,17 @@ test('agent-tools exposes agent ops tools', async (t) => {
'wait_for',
'undo_last_edit',
'git_diff',
'history_search'
'history_search',
'git_log',
'git_show',
'git_blame',
'copy_path',
'diff_files',
'find_symbol',
'create_skill',
'remember',
'rewind_session',
'export_session'
]) {
t.ok(
TOOLS.includes("name: '" + toolName + "'"),
@@ -220,6 +230,10 @@ test('agent CLI exposes production flags and inspect subcommands', async (t) =>
t.ok(CLI.includes("sub === 'undo'"))
t.ok(CLI.includes("sub === 'hooks'"))
t.ok(CLI.includes("sub === 'history'"))
t.ok(CLI.includes("sub === 'rewind'"))
t.ok(CLI.includes("sub === 'export'"))
t.ok(CLI.includes("sub === 'remember'"))
t.ok(CLI.includes("sub === 'recap'"))
t.ok(TUI.includes('planMode'))
t.ok(TUI.includes('modelOverride'))
t.ok(TUI.includes('extraSystemFile'))