Install S7 SkyQUBi

Release status (as of 2026-04-14): S7 SkyQUBi is in the pre-launch testing window. Full public launch is July 7, 2026 · 7:00 AM Central (GO-LIVE Release 7). The install instructions below are stable for the current testing deployment; the full production deployment with the immutable- fork rebuild architecture lands with the GO-LIVE ceremony. See README.md for the full release status and path to 2026-07-07.

S7 runs as a set of containers inside a single Podman pod on your own Linux machine. No cloud dependency. No external telemetry. Everything you install here stays on your hardware.

Prerequisites

First install

Clone the public repository:

git clone https://github.com/skycair-code/SkyQUBi-public.git
cd SkyQUBi-public

Start the pod:

./start-pod.sh

This brings up:

The start-pod.sh script is idempotent — running it twice is safe. See skyqubi-pod.yaml for the full pod definition.

Downloading the witnesses

First run will pull the three lite-witness models (~6 GB total):

Plus the embedding model all-minilm:latest (~23 MB).

For the full 7+1 witness set, see the advanced install section in DEPLOY.md (larger download, ~60 GB).

Verifying the install

After the pod is up, run the lifecycle test:

./s7-lifecycle-test.sh

You should see 40/40 PASS. If anything fails, check:

Ports you should know

All S7 services bind to 127.0.0.1 by default — nothing is exposed to your LAN without explicit configuration.

Port Service
57080 PostgreSQL
57086 Ollama
57088 Public chat API
57090 Qdrant

If you want to reach the system from another machine on your network, configure a reverse proxy (Caddy, nginx, Traefik) — do not rebind the services themselves. Exposing a database or an inference engine directly to a network is an invitation to trouble.

Uninstall

podman pod stop s7-skyqubi
podman pod rm s7-skyqubi

That removes everything. The downloaded models live under ~/.ollama/ and can be deleted separately if you want to reclaim disk.

Getting help

Keep in mind: the install is currently in “Core in Development” status before the July 7, 2026 public launch. Expect rough edges until that date. File issues freely.