@vibe-validate/history
Version:
Validation history tracking via git notes for vibe-validate
14 lines • 905 B
TypeScript
/**
* Validation history tracking via git notes
*
* @packageDocumentation
*/
export type { ValidationRun, HistoryNote, RecordResult, StabilityCheck, HistoryConfig, HealthCheckResult, PruneResult, RunCacheNote, } from './types.js';
export { DEFAULT_HISTORY_CONFIG } from './types.js';
export { recordValidationHistory, checkWorktreeStability, } from './recorder.js';
export { readHistoryNote, listHistoryTreeHashes, getAllHistoryNotes, hasHistoryForTree, } from './reader.js';
export { listRunCacheEntries, getRunCacheEntry, getAllRunCacheForTree, listRunCacheTreeHashes, getAllRunCacheEntries, type RunCacheEntryMeta, } from './run-cache-reader.js';
export { pruneHistoryByAge, pruneAllHistory, pruneLegacyNotes, pruneAllRunCache } from './pruner.js';
export { checkHistoryHealth } from './health-check.js';
export { truncateValidationOutput } from './truncate.js';
//# sourceMappingURL=index.d.ts.map