The reactive graph your code, your agents, and your humans share as a blueprint. Compose in code, review the projected spec, co-edit across agents without colliding, trace every decision.
GraphReFly is a reactive graph protocol for human + LLM co-operation. Code is the source of truth — factoryTag-stamped factories project automatically into a GraphSpec blueprint that humans and agents read, diff, and review together. Multi-agent worktrees claim subgraph ownership through a structural protocol (TTL → heartbeat → supervisor) so concurrent edits don't corrupt shared topology. Every decision has a causal chain — graph.explain() walks back through dependencies and tells you exactly why a value is what it is.
Docs | Spec | Python API | TS API Reference
| Package | What it is |
|---|---|
@graphrefly/graphrefly |
The library — reactive graph primitives, operators, Graph container, framework adapters. |
@graphrefly/mcp-server |
Model Context Protocol server — expose GraphReFly to Claude Desktop, Claude Code, Cline, Cursor, and any MCP client as graphrefly_* tools. |
@graphrefly/cli |
Stateless command-line shell — describe, explain, observe, reduce, snapshot, and mcp (boot the server) from your terminal or CI. |
Email triage — "Watch my inbox. Urgent emails from my team go to a priority list. Newsletters get summarized weekly. Everything else, count by sender." It watches, classifies, and alerts — and when you ask "why was this flagged?", it walks you through the reasoning.
Spending alerts — Connect bank transactions to budget categories. Get a push notification when monthly dining exceeds your target. No polling, no manual checks — changes propagate the moment data arrives.
Knowledge management — Notes, bookmarks, highlights flow in. Contradictions surface automatically. Related ideas link themselves. Your second brain stays current without you maintaining it.
npm install @graphrefly/graphreflyimport { state, derived, effect } from "@graphrefly/graphrefly";
const count = state(0);
const doubled = derived([count], ([c]) => c * 2);
effect([doubled], ([d]) => console.log("doubled:", d));
// → doubled: 0
count.set(3);
// → doubled: 6Code is the source of truth. You compose a reactive graph using primitives (state, derived, effect, producer) and factories (agentLoop, harnessLoop, agentMemory, …). factoryTag-stamped factories carry self-description into the live graph. graph.describe({ detail: "spec" }) projects the topology into a JSON GraphSpec blueprint — the same shape the original spec was written from, but always in sync with what's actually running. Spec is what your agents read to understand the topology. Code is what they (and you) actually edit.
The graph runs persistently, checkpoints state on messageTier ≥ 3 and topology on _topologyVersion bump, and traces every decision through a causal chain. Ask "why?" at any point — graph.explain(from, to) walks backward through dependencies and returns a structured chain that's both human-readable and LLM-parseable.
The eight requirements of a production agent system cluster into a handful of composed blocks that sit on top of the reactive graph primitives:
| Need | GraphReFly |
|---|---|
| Context & state | persistentState() — autoCheckpoint + snapshot / restore + incremental diff |
| Agent memory | agentMemory() — distill + vectors + knowledge graph + tiers, OpenViking decay |
| Control flow & resilience | resilientPipeline() — rateLimiter → breaker → retry → timeout → fallback, correct ordering built in |
| Execution & policy | guardedExecution() — Actor / Guard ABAC + policy() + budgetGate + scoped describe |
| Observability & causality | graphLens() — reactive topology, health, flow, and why(node) causal chains as structured data |
| Human governance | gate — reactive pending / isOpen with approve / reject / modify(fn, n) |
| Verification | Multi-model eval harness with regression gates |
| Continuous improvement | Strategy model: rootCause × intervention → successRate |
| Multi-agent coordination | ownershipController() — L0 static / L1 TTL / L2 heartbeat / L3 supervisor staircase; Actor / Guard ABAC enforces claims at write time; validateOwnership lints PR diffs |
The library computes structured facts reactively; LLMs and UIs render them. Natural language is never the library's job — which keeps the whole stack model-agnostic and testable.
| Zustand / Jotai | RxJS | XState | LangGraph | Archon | Hermes | GraphReFly | |
|---|---|---|---|---|---|---|---|
| Simple store API | yes | no | no | no | n/a | n/a | yes |
| Streaming operators | no | yes | no | no | no | no | yes |
| Diamond resolution | no | n/a | n/a | n/a | n/a | n/a | glitch-free |
| Graph introspection | no | no | visual | checkpoints | YAML view | no | describe / observe / diagram |
| Causal tracing | no | no | no | no | no | no (black-box) | explain every decision |
| Durable checkpoints | no | no | persistence | yes | sqlite | yes | file / SQLite / IndexedDB |
| LLM orchestration | no | no | no | yes | yes (workflow) | yes (skills) | agentLoop / chatStream / toolRegistry |
| Auto-projection: code → spec | no | no | no | no | no (manual YAML) | partial (skill emit) | factoryTag round-trip |
| Multi-agent on shared topology | no | no | no | no | no (worktree-isolated) | no (skill-isolated) | L0–L3 ownership protocol |
| Framework adapters | React | Angular | React / Vue | n/a | n/a | n/a | React / Vue / Svelte / Solid / NestJS |
| Dependencies | 0 | 0 | 0 | many | many | many | 0 |
Everything is a node. Sugar constructors give you the right shape:
import { state, derived, producer, effect, pipe } from "@graphrefly/graphrefly";
// Writable state
const name = state("world");
// Computed (re-runs when deps change)
const greeting = derived([name], ([n]) => `Hello, ${n}!`);
// Push source (timers, events, async streams)
const clock = producer((emit) => {
const id = setInterval(() => emit([[DATA, Date.now()]]), 1000);
return () => clearInterval(id);
});
// Side effect
effect([greeting], ([g]) => document.title = g);
// Operator pipeline
const delayed = pipe(clock, delay(500), map(([, ts]) => new Date(ts)));70+ operators — transform, combine, buffer, window, rate-limit, retry, circuit-break:
import { pipe, merge, switchMap, debounceTime, retry } from "@graphrefly/graphrefly";
const search = pipe(
input,
debounceTime(300),
switchMap((query) => fromPromise(fetch(`/api?q=${query}`))),
retry({ strategy: "exponential", maxAttempts: 3 }),
);Register nodes in a Graph for introspection, snapshot, and persistence:
import { Graph, state, derived } from "@graphrefly/graphrefly";
const g = new Graph("pricing");
const price = g.register("price", state(100));
const tax = g.register("tax", derived([price], ([p]) => p * 0.1));
const total = g.register("total", derived([price, tax], ([p, t]) => p + t));
g.describe(); // → full graph topology as JSON
g.diagram(); // → Mermaid diagram string
g.observe((e) => console.log(e)); // → live change streamFirst-class patterns for LLM streaming, agent loops, and human-in-the-loop workflows:
import { chatStream, agentLoop, toolRegistry } from "@graphrefly/graphrefly";
// Streaming chat with tool use
const chat = chatStream("assistant", {
model: "claude-sonnet-4-20250514",
tools: toolRegistry("tools", { search, calculate }),
});
// Full agent loop: observe → think → act → memory
const agent = agentLoop("researcher", {
llm: chat,
memory: agentMemory({ decay: "openviking" }),
});Drop-in bindings — your framework, your way:
// React
import { useNode } from "@graphrefly/graphrefly/compat/react";
const [value, setValue] = useNode(count);
// Vue
import { useNode } from "@graphrefly/graphrefly/compat/vue";
const value = useNode(count); // → Ref<number>
// Svelte
import { toStore } from "@graphrefly/graphrefly/compat/svelte";
const value = toStore(count); // → Svelte store
// Solid
import { useNode } from "@graphrefly/graphrefly/compat/solid";
const value = useNode(count); // → Signal<number>
// NestJS
import { GraphReflyModule } from "@graphrefly/graphrefly/compat/nestjs";
@Module({ imports: [GraphReflyModule.forRoot()] })Prefer subpath imports for minimal bundle:
import { node, batch, DATA } from "@graphrefly/graphrefly/core";
import { map, switchMap } from "@graphrefly/graphrefly/extra";
import { Graph } from "@graphrefly/graphrefly/graph";The root entry re-exports everything:
import { node, map, Graph } from "@graphrefly/graphrefly";Built-in retry, circuit breakers, rate limiters, and persistent storage:
import { retry, circuitBreaker, fileStorage, memoryStorage } from "@graphrefly/graphrefly";
// Retry with exponential backoff
const resilient = pipe(source, retry({ strategy: "exponential" }));
// Circuit breaker
const breaker = circuitBreaker({ threshold: 5, resetTimeout: 30_000 });
// Multi-tier storage with auto-restore: hot in-memory + warm on disk.
graph.attachStorage(
[memoryStorage(), fileStorage("./checkpoints")],
{ autoRestore: true },
);| Path | Contents |
|---|---|
src/core/ |
Message protocol, node primitive, batch, sugar constructors |
src/extra/ |
Operators, sources, data structures, resilience, checkpoints |
src/graph/ |
Graph container, describe/observe, snapshot, persistence |
src/patterns/ |
Orchestration, messaging, memory, AI, CQRS, reactive layout |
src/compat/ |
Framework adapters (React, Vue, Svelte, Solid, NestJS) |
docs/ |
Roadmap, guidance, benchmarks |
website/ |
Astro + Starlight docs site (graphrefly.dev) |
pnpm test # vitest run
pnpm run lint # biome check
pnpm run build # tsup (ESM + CJS + .d.ts)
pnpm bench # vitest benchGraphReFly builds on ideas from many projects and papers:
Protocol & predecessor:
- Callbag (Andre Staltz) — the original reactive protocol spec. GraphReFly's message-based node communication descends from callbag's function-calling-function model.
- callbag-recharge — GraphReFly's direct predecessor. 170+ modules, 4 architecture iterations, and 30 engineering blog posts that shaped every design decision.
Reactive design patterns:
- SolidJS — two-phase execution (DIRTY propagation + value flow), automatic caching, and effect batching. Identified as the closest philosophical neighbor during design research.
- Preact Signals — fine-grained reactivity and cached-flag optimization patterns that informed RESOLVED signal design.
- TC39 Signals Proposal — the
.get()/.set()contract and the push toward language-level reactivity that clarified where signals end and graphs begin. - RxJS — operator naming conventions (aliases like
combineLatest,mergeMap,catchError) and the DevTools observability philosophy that inspired the Inspector pattern.
AI & memory:
- OpenViking (Volcengine) — the memory decay formula (
sigmoid(log1p(count)) * exp_decay(age, 7d)) and L0/L1/L2 progressive loading strategy used inagentMemory(). - FadeMem (Wei et al., ICASSP 2026) — biologically-inspired dual-layer memory with adaptive exponential decay, validating the decay approach independently.
- MAGMA (Jiang et al., 2026) — four-parallel-graph model (semantic/temporal/causal/entity) that informed
knowledgeGraph()design. - Letta/MemGPT, Mem0, Zep/Graphiti, Cognee — production memory architectures surveyed during
agentMemory()design.
Layout & other:
- Pretext (Cheng Lou) — inspired the reactive layout engine's DOM-free text measurement pipeline, rebuilt as a
state -> derivedgraph. - CASL — declarative
allow()/deny()policy builder DX that inspiredpolicy(), though CASL itself was rejected as a dependency. - Nanostores — tiny framework-agnostic API with near 1:1
.get()/.set()/.subscribe()mapping that validated the store ergonomics.