Search

Matched domain: superinstance.ai

IP = 104.21.55.239

robots.txt

# As a condition of accessing this website, you agree to abide by the following
# content signals:

# (a)  If a Content-Signal = yes, you may collect content for the corresponding
#      use.
# (b)  If a Content-Signal = no, you may not collect content for the
#      corresponding use.
# (c)  If the website operator does not include a Content-Signal for a
#      corresponding use, the website operator neither grants nor restricts
#      permission via Content-Signal with respect to the corresponding use.

# The content signals and their meanings are:

# search:   building a search index and providing search results (e.g., returning
#           hyperlinks and short excerpts from your website's contents). Search does not
#           include providing AI-generated search summaries.
# ai-input: inputting content into one or more AI models (e.g., retrieval
#           augmented generation, grounding, or other real-time taking of content for
#           generative AI search answers).
# ai-train: training or fine-tuning AI models.
# use:      how AI systems may consume the content (immediate, reference, or full).

# ANY RESTRICTIONS EXPRESSED VIA CONTENT SIGNALS ARE EXPRESS RESERVATIONS OF
# RIGHTS UNDER ARTICLE 4 OF THE EUROPEAN UNION DIRECTIVE 2019/790 ON COPYRIGHT
# AND RELATED RIGHTS IN THE DIGITAL SINGLE MARKET.

# BEGIN Cloudflare Managed content

User-agent: *
Content-Signal: search=yes,ai-train=no,use=reference
Allow: /

User-agent: Amazonbot
Disallow: /

User-agent: Applebot-Extended
Disallow: /

User-agent: Bytespider
Disallow: /

User-agent: CCBot
Disallow: /

User-agent: ClaudeBot
Disallow: /

User-agent: CloudflareBrowserRenderingCrawler
Disallow: /

User-agent: Google-Extended
Disallow: /

User-agent: GPTBot
Disallow: /

User-agent: meta-externalagent
Disallow: /

# END Cloudflare Managed Content






SuperInstance — Documentation











SuperInstance

SuperInstance is a collection of open-source projects for running AI agents inside sandboxed environments, and for the supporting math used to analyse them. The central project is OpenConstruct — a fork of NVIDIA OpenShell that wraps each agent sandbox in a self-contained room whose layout and configuration shape how the agent behaves, without weight-tuning. Around it sit a Python SDK for spectral graph conservation analysis, a Rust workspace for room-local model distillation, and a federated model-evaluation system.

$ curl -fsSL https://raw.githubusercontent.com/SuperInstance/OpenConstruct/main/install.sh | bash click to copy

Concepts

Rooms

In OpenConstruct, a room is a sandboxed agent workspace with its own context files, controls, help documents, and configuration. The room's layout acts as the prompt: it teaches the agent what to do without explicit prompting. Each room is isolated through OpenShell's control plane — Landlock, seccomp, and a local proxy enforce policy, credential, identity, and network boundaries. Lightweight monitor agents called ensigns watch each room for anomalies and stay in a cautious "yellow alert" state by default, on the principle that over-preparing is cheaper than under-preparing.

Single-number model control (JEPA gravity)

Each room carries one f64 value — its gravity — from which temperature, prompt style, max tokens, and sampling strategy are derived. This adapts a model's behaviour to the room without fine-tuning or weight changes. (JEPA = Joint Embedding Predictive Architecture, a learning approach that predicts how representations change rather than memorising what they are.)

The signal chain (L0–L4)

Most decisions a room makes do not need a large model. plato-nervous distils each room's intelligence through a five-layer signal chain, escalating only when lower layers cannot resolve a reading:

LayerRoleModelLatency
L0Deadband — algorithmic threshold, no model<1 ms
L1Nano completion modelphi4-mini (2.5 GB)~0.3 s
L2Room-local fine-tune (LoRA)liquid-1.2b (698 MB)~0.3 s
L3Fleet / cross-room routinggemma4:e2b (7.2 GB)~5 s
L4Cloud LLM for irreducible casesany large LLM2–5 s

Per the benchmark, the L0 deadband alone catches 76% of readings, so the majority of decisions never reach a model at all.

Source: plato-nervous/BENCHMARK.md

Conservation spectral analysis

A separate line of work models structure as a weighted graph and analyses it through its Laplacian spectrum. The conservation ratio CR = λ₂ / λₙ measures how much spectral structure a transformation preserves; the spectral gap and Cheeger constant bound the quality of that structure by the graph's geometry. This is packaged as a Python SDK, conservation-spectral-python (published on PyPI as cocapn), with ports in TypeScript, Ada, and Rust.

Architecture & usage

OpenConstruct is written in Rust and runs each agent in an isolated room supervised by the OpenShell control plane (Docker / Podman / Kubernetes / VM compute drivers, with Landlock + seccomp policy). See the repository's architecture/ directory for the full design.

The conservation SDK has a small, stable surface. A minimal analysis, copied from the package README:

python
from conservation_spectral import (
    TensionGraph, build_laplacian, eigendecompose,
    conservation_ratio, analyze,
)

# Build a weighted directed (tension) graph
g = TensionGraph()
g.add_edge("A", "B", tension=0.8)
g.add_edge("B", "C", tension=0.5)
g.add_edge("C", "A", tension=0.3)

# Spectral analysis: CR = λ₂ / λₙ
L = build_laplacian(g)
eigen = eigendecompose(L)
cr = conservation_ratio(eigen.eigenvalues)
print(f"Conservation ratio: {cr:.4f}")

report = analyze(g)
# ConservationReport(spectral_gap=..., cheeger=..., anomalous=False, ...)
Source: conservation-spectral-python README

Demos

Browser-based demos that ship in this repository. All run client-side.

Repositories

The projects that make up SuperInstance. Each link is a live repository.

RepositoryWhat it isLanguage
OpenConstructAgent onboarding platform — agents in sandboxed rooms. Fork of NVIDIA OpenShell (Apache 2.0).Rust
conservation-spectral-pythonSpectral graph conservation SDK — tension graphs, Laplacian eigenvalues, conservation ratios, anomaly detection. On PyPI as cocapn.Python
plato-nervousRoom-specific model distillation — the L0–L4 signal chain.Rust
casting-callFederated model-evaluation system — evaluation schema, trust engine, CLI.Python
casting-call-gpuCUDA kernel for pairwise Hamming-distance signature matching.CUDA
eisensteinEisenstein-integer arithmetic crate, used by the math demos above.Rust

A live status view of the fleet telemetry service is on the fleet status dashboard.

Look up this url in the url tool https://superinstance.ai/.well-known/acme-challenge: 200 text/html; charset=utf-8
https://superinstance.ai/.well-known/csvm: 200 text/html; charset=utf-8
https://superinstance.ai/.well-known/nostr.json: 200 text/html; charset=utf-8
https://superinstance.ai/.well-known/security.txt: 200 text/html; charset=utf-8
https://superinstance.ai/.well-known/traffic-advice: 200 text/html; charset=utf-8