A control plane for managing research epistemic webs
Project description
deSitter
Versioned, invariant-enforced tracking for the epistemic structure of research.
Early development, not ready for production use. The API, file formats, and CLI surface are unstable. See TRACKER.md for current build status.
What It Is
The scientific method has a structure: you make claims, ground them in assumptions, derive predictions, run analyses to test those predictions, and record what the evidence shows. That structure exists in every research project, but it almost never gets tracked. It lives in documents, email threads, and researcher memory, and it breaks silently.
A refuted prediction doesn't update the claims that depend on it. A revised assumption doesn't propagate to its consequences. Predictions accumulate that still cite retracted claims. Assumptions go untested because nobody can see they're load-bearing. Six months later, nobody can trace why a conclusion was drawn or whether the underlying support was ever intact. There's no standard tooling for this — it's a gap that version control, lab notebooks, and project management software all sidestep.
deSitter fills that gap. It is a versioned, graph-structured registry of your epistemic chain — every claim, assumption, prediction, analysis, and theory — with hard invariants that keep the graph consistent as research evolves. It surfaces structural facts about the graph: missing links, untested assumptions, stale analyses, uncovered predictions.
deSitter is an audit scaffold, not a reasoning engine. The researcher, or an AI agent, decides what to do about what it finds. But it makes the reasoning visible — and keeps it honest.
For researchers, the primary interface is the Python API: desitter.connect()
in scripts and notebooks. For AI agent sessions, the primary interface is the
MCP server. The CLI remains important, but mainly as an inspection, health-check,
render, and audit surface.
Every successful mutation is recorded in the append-only transaction log at
project/data/transaction_log.jsonl — a first-class public artifact that
external tools can watch, index, and react to directly.
Core Capabilities
- Register claims, assumptions, predictions, analyses, theories, and parameters in a typed, versioned graph
- Enforce referential integrity, DAG acyclicity, bidirectional links, and tier constraints at write time, not after the fact
- Validate the full epistemic web on demand against ten domain invariants
- Track evidence through prediction tiers (
FULLY_SPECIFIED,CONDITIONAL,FIT_CHECK) with explicit independence-group accounting - Detect staleness when a parameter changes and propagates to analyses and predictions
- Health-check the entire project in one command, with a machine-readable
HEALTHY / WARNINGS / CRITICALresult suitable for CI - Render human-readable markdown views of the project graph, incrementally
deSitter never executes analyses. Researchers run their own tools — Python, R, SageMath, Jupyter — and record outcomes. deSitter records provenance, enforces structure, and tracks what changed.
Interfaces
deSitter exposes the same core system through three interfaces:
Python API — primary for researchers in scripts and notebooks
import desitter as ds
client = ds.connect()
client.register_claim(
id="C-001",
statement="Catalyst X increases yield.",
type="foundational",
scope="global",
falsifiability="A replicated null result would falsify this claim.",
)
MCP server — primary for AI agent sessions
ds-mcp # start the MCP server
The Model Context Protocol lets AI assistants
(Claude, Copilot, Cursor, and others) call deSitter tools directly as structured
operations. An agent can audit a derivation chain, identify structural gaps,
pre-flight a new prediction with dry_run=True, and commit it — all within a
single session. The epistemic web provides the shared, persistent,
invariant-enforced state. The AI provides the reasoning.
CLI — inspection, health-check, and audit
ds health
ds validate
ds status
ds render
Every command accepts --json for machine-readable output, making it suitable
for CI pipelines and audit tooling.
Quick Start
pip install desitter # CLI + core
pip install "desitter[mcp]" # + MCP server for AI agent use
import desitter as ds
client = ds.connect()
client.register_claim(
id="C-001",
statement="Catalyst X increases yield.",
type="foundational",
scope="global",
falsifiability="A replicated null result would falsify this claim.",
)
claims = client.list_claims().data or []
ds health
ds validate
ds status
Architecture
deSitter is built in layers, from the inside out. The innermost layer, the
epistemic kernel, is pure Python with no I/O dependencies. It defines the
entity model, the EpistemicWeb aggregate root, and all invariant rules. Nothing
in the kernel touches a file, a database, or a network socket.
The layers above the kernel — adapters, control plane, view services, interfaces — each have a single responsibility and depend only on layers below them.
┌──────────────────────────────────────────────────────┐
│ Interface Layer │
│ cli/, humans & scripts mcp/, AI agents │
└─────────────────────┬────────────────────────────────┘
│
┌─────────────────────▼────────────────────────────────┐
│ View Services │
│ health · status · metrics · render │
└─────────────────────┬────────────────────────────────┘
│
┌─────────────────────▼────────────────────────────────┐
│ Control Plane (single gateway for all mutations) │
│ gateway · validate · check · export · automation │
└─────────────────────┬────────────────────────────────┘
│
┌─────────────────────▼────────────────────────────────┐
│ Adapters │
│ json_repository · transaction_log · renderer │
└─────────────────────┬────────────────────────────────┘
│
┌─────────────────────▼────────────────────────────────┐
│ Epistemic Kernel — pure Python, no I/O │
│ types · model · web · invariants · ports │
└──────────────────────────────────────────────────────┘
All mutations route through a single Gateway. A bug fixed at the gateway is
fixed for every interface simultaneously.
See ARCHITECTURE.md for a full technical walkthrough.
Design Goals
| Goal | Meaning |
|---|---|
| Audit scaffold | Surfaces structural facts. Never prescribes research direction or makes logical judgments |
| Invariants at write time | Broken references, cycles, and constraint violations are caught at mutation, not discovered later |
| Single gateway | All mutations flow through one boundary. No MCP-specific or CLI-specific business logic |
| Consumer model | deSitter records results from researcher-run analyses. It never executes code itself |
| AI-native interface | MCP server exposes all capabilities as typed tools. No subprocess, no parsing, full structure |
| Human parity | Every MCP tool has a CLI equivalent. Humans get Rich terminal output; scripts get --json |
| Domain-neutral | Works for physics, ML, medicine, social science. The vocabulary is general empirical reasoning |
| Minimal dependencies | Epistemic kernel is stdlib-only. click and rich for CLI. fastmcp is opt-in for MCP |
Package Layout
src/desitter/
├── config.py # ProjectContext, ProjectPaths, runtime configuration
├── epistemic/ # Epistemic kernel — pure Python, zero I/O
│ ├── types.py # Typed IDs, enums, Finding, Severity
│ ├── model.py # Entity dataclasses: Claim, Assumption, Prediction, …
│ ├── web.py # EpistemicWeb, aggregate root, all mutations
│ ├── invariants.py # Ten pure validator functions
│ └── ports.py # Abstract interfaces: WebRepository, WebValidator, …
├── adapters/ # Infrastructure implementations
│ ├── json_repository.py # Implements WebRepository over project/data/*.json
│ ├── markdown_renderer.py
│ └── transaction_log.py
├── controlplane/ # Core services
│ ├── gateway.py # Single mutation/query boundary + GatewayResult
│ ├── factory.py # Wires concrete adapters into Gateway
│ ├── validate.py
│ ├── check.py # Staleness detection, reference integrity
│ └── export.py
├── views/ # Read-only composed summaries
│ ├── health.py # run_health_check → HealthReport
│ ├── render.py # SHA-256 fingerprint cache + incremental render
│ ├── status.py # get_status → ProjectStatus
│ └── metrics.py
└── interfaces/ # Thin adapters, no business logic
├── cli/
│ ├── main.py # Click command tree
│ └── formatters.py # Rich tables + JSON fallback
└── mcp/
├── server.py # FastMCP entry point
└── tools.py # Tool handlers → gateway + view services
Development Status
pip install -e ".[dev]"
pytest
pytest --cov
| Phase | Scope | Status |
|---|---|---|
| 1 | Epistemic kernel, EpistemicWeb, all entities, ten invariants |
Complete |
| 2 | Persistence, config, packaging | Partial — config and transaction log done; JSON repository and renderer stubbed |
| 3 | Control plane and view services | In progress |
| 4 | Interface layer, MCP server and CLI | Pending |
| 5 | Human-first UX, Rich output, ds inspect |
Pending |
| 6 | Result recording and provenance | Pending |
| 7 | Governance, session tracking, close gates (opt-in) | Pending |
The epistemic kernel (Phase 1) is the foundation the rest is built on. It is complete, fully tested, and stable. Layers above it are being built in the order listed.
See TRACKER.md for the full task-level breakdown.
License
Apache License 2.0, see LICENSE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file desitter-0.0.2.tar.gz.
File metadata
- Download URL: desitter-0.0.2.tar.gz
- Upload date:
- Size: 182.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d3ecf69b54c5ca3e1446f6ee6678395914e3672f56c9af8f4c3797a98abca9a
|
|
| MD5 |
bad3526216b3a3d20712c7e0b4a7d0ef
|
|
| BLAKE2b-256 |
7c2c96cac10591882ac0d555a95ea7a8102b98621388554559329cb5026cfe69
|
File details
Details for the file desitter-0.0.2-py3-none-any.whl.
File metadata
- Download URL: desitter-0.0.2-py3-none-any.whl
- Upload date:
- Size: 99.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82ad6717f55106d486c60527b0c3f8d5c2ee4def29107abf764809e29610935d
|
|
| MD5 |
ae1c8b32d19e27f8d9d1579fa7bcf4f5
|
|
| BLAKE2b-256 |
a18cfa3ff971f7a59c50c35ba78f89588bf2de035a895234e829a9b1b070006a
|