Fact Versioning Kit

Version control for facts: track how knowledge changes over time with full history.

Configuration

Fact Versioning Dashboard

Facts

3

Versions

6

Avg Versions

2.0

modifiedQ1 Revenuev3
v1
v2
v3
2025-02-01
addedActive Usersv1
v1
2025-03-10
deprecatedLegacy API Endpointv2
v1
v2
2025-02-20

Integration Code

import { createFactVersioning } from 'agent-tools-kit/knowledge-evolution'

const versions = createFactVersioning({ storage: 'event-sourced', keepHistory: true })

await versions.update(factId, newValue, { source, reason })
const history = await versions.getHistory(factId)
const diff = await versions.diff(factId, 1, 3)