Documentation

Installation

Get started with SysTwin in minutes.

Open Source CLI

npm install -g systwin-core

Kubernetes Integration

kubectl apply -f https://systwin.dev/k8s/install.yaml

Quick Start

Connect your first system to SysTwin.

1. Initialize

systwin init --cluster my-cluster

2. Start Monitoring

systwin monitor --namespace production

3. View Dashboard

systwin dashboard

Time Machine

Travel back in time to analyze system states and incidents.

The Time Machine allows you to replay any moment in your system's history with complete fidelity. View memory snapshots, network topology, and let AI perform deep root cause analysis.

Usage

systwin timemachine --timestamp "2026-03-20T14:15:00Z"

Spec vs. Reality

Compare your system's design specifications against actual runtime behavior.

Any deviation from expected behavior is automatically highlighted, helping you catch issues before they become incidents.

API Reference

Integrate SysTwin into your existing workflows.

Authentication

curl -H "Authorization: Bearer YOUR_API_KEY" https://api.systwin.dev/v1/status

Get System Health

GET /v1/systems/{system_id}/health

Trigger Simulation

POST /v1/simulations
{
"system_id": "prod-cluster",
"scenario": "traffic_spike",
"multiplier": 5
}