# Change

> Track and inspect graph changes, diffs, temporal updates, and the impact of new data on VeritasReason knowledge graphs.

- Skill: `bibinprathap/change` (Agent Skill)
- Install (CLI): `npx skillmds@latest add bibinprathap/change`
- Raw SKILL.md: https://api.skillmd.com/api/skills/bibinprathap/change/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: bibinprathap (https://skillmd.com/u/bibinprathap)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/bibinprathap/change

---


# /veritasreason:change

Inspect changes over time and evaluate updates. Usage: `/veritasreason:change <task> [args]`

`$ARGUMENTS` = task + optional node, time window, or filter.

---

## `diff [--from <ts>] [--to <ts>] [--node <id>]`

Compute graph diffs between two snapshots.

```python
from veritasreason.provenance.change_tracker import ChangeTracker
from veritasreason.context import ContextGraph

tracker = ChangeTracker()
diff = tracker.compute_diff(from_ts=from_ts, to_ts=to_ts, node_id=node_id)
```

Output: added/removed nodes and edges, attribute changes, and impact summary.

---

## `history <node_id> [--limit N]`

Show the change history for a node or relationship.

```python
history = tracker.get_node_history(node_id=node_id, limit=limit)
```

Return: revisions, timestamps, authors, and summary comments.

