# Graphiti

> Temporal knowledge graph for long-term memory. Facts have timestamps and expiry. Tracks how decisions evolve over time across projects. Use for Stage 3 deep memory. Don't use for simple key-value storage.

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

---


# Graphiti — Temporal Knowledge Graph

## What It Is
Knowledge graph where every fact has a TIME dimension:
- When was this decided?
- Is it still current?
- What replaced it?

## When to Deploy (Stage 3 Memory)
Deploy when GODMODE has 10+ projects and file-based memory is insufficient.

## Architecture
```
Episode → extracted entities + relationships → stored in graph
Each fact: subject → predicate → object + valid_from + valid_to
```

## Example
```
"MUNO uses PostgreSQL" (valid_from: Jan 2025, valid_to: current)
"MUNO considered MongoDB" (valid_from: Oct 2025, valid_to: Oct 2025, status: rejected)
"GODMODE uses Adaptive Swarm" (valid_from: Mar 2026, valid_to: current)
```

## Reference: https://github.com/getzep/graphiti
## Replaces: Cognee (no temporal awareness)
