Merge feature/context-injection into main

This commit is contained in:
2026-02-03 10:07:32 +01:00
7 changed files with 647 additions and 0 deletions

View File

@@ -15,6 +15,7 @@ import { historyCommand } from './commands/history';
import { diffCommand } from './commands/diff';
import { restoreCommand } from './commands/restore';
import { captureCommand, captureHookCommand, configCommand } from './commands/capture';
import { contextCommand, contextHookCommand } from './commands/context';
import { closeDb } from '../core/db';
const program = new Command();
@@ -40,6 +41,8 @@ program.addCommand(diffCommand);
program.addCommand(restoreCommand);
program.addCommand(captureCommand);
program.addCommand(captureHookCommand);
program.addCommand(contextCommand);
program.addCommand(contextHookCommand);
program.addCommand(configCommand);
program.hook('postAction', () => {