Developer Dashboard

Pro

Welcome back, Matt Rockwell. Your tools, metrics, and downloads in one place.

License & Plan

Pro PlanMember since Dec 2025
April 18, 202626 days
mrockwell@atomik.tech
•••-•••-••••-••••-••••-••••

Use this key in your atomik.conf or pass via ATOMIK_LICENSE_KEY environment variable.

Upgrade to Team

Downloads & Install

v0.4.0
Detected: Your PlatformShowing recommended packages
🐍

Python SDK

v0.4.0

Core delta-state algebra. Zero dependencies, pure Python.

Python
$pip install atomik-core

C Header Library

v0.4.0

Single-header C implementation. Drop into any project.

C
$curl -sL https://get.atomik.tech/atomik.h -o atomik.h

JavaScript SDK

v0.4.0

TypeScript-first, works in Node.js and browsers.

JavaScript
$npm install @atomik/core
🏭

SDK Generator Pipeline

v0.4.0Team+

Generate SDKs in 5 languages from domain schemas.

Multi-lang
Upgrade to Team to download

Quick Start

First Delta

Create a context, load initial state, accumulate a delta, read the result.

from atomik_core import AtomikContext

ctx = AtomikContext()
ctx.load(0xDEADBEEF)
ctx.accum(0x0000FFFF)
state = ctx.read()
print(f"State: 0x{state:08X}")  # 0xDEAD1410
🔍

Change Detection

Fingerprint a memory region and detect mutations in O(1).

from atomik_core import Fingerprint

fp = Fingerprint()
fp.load(original_data)
fp.update(possibly_changed)
if fp.changed:
    print(f"Delta: 0x{fp.delta:x}")
🌐

Multi-Node Sync

Converge state across nodes with order-independent delta streaming.

from atomik_core import DeltaStream

stream = DeltaStream(nodes=["A", "B", "C"])
stream.emit("A", delta=0xFF00)
stream.emit("B", delta=0x00FF)
# All nodes converge to same state
assert stream.state("A") == stream.state("C")

Benchmark

Measure ops/sec on your hardware and get a shareable results card.

# Run from terminal:
python -m atomik_core benchmark --share

# Programmatic:
from atomik_core import benchmark
results = benchmark.run(iterations=1_000_000)
print(f"{results.ops_per_sec:,.0f} ops/sec")

Usage Metrics

Live
0.0M
Ops/sec
0
BW Saved (GB)
0.0K
Active Contexts
0.0K
Waste (MB)
0.0%
Uptime
Operations / sec+12.3%
4.28M
Bandwidth Saved+8.7%
127.4GB
Active Contexts+5.1%
1,842
Waste Detected+15.4%
3.29GB
Deltas Processed+22.1%
48.3M
Uptime+0.02%
99.97%

API Keys

Team+

API Keys require Team plan

Generate and manage API keys for the SDK generation pipeline, CI/CD integration, and programmatic access to your ATOMiK workspace.

Upgrade to Team

Support & Resources