Skip to content

Latest commit

 

History

History
65 lines (43 loc) · 1.56 KB

File metadata and controls

65 lines (43 loc) · 1.56 KB
title Installation Guide
description High-performance setup for the OpenSIN-AI ecosystem.

Installation & Optimization

Setting up OpenSIN-AI requires a commitment to the Billion-Dollar Standard. We do not use "easy" installers. We build for performance and security.

1. Runtime Layer

OpenSIN-AI is optimized for Bun. We have permanently banned npm and bunx for production environments.

# Install Bun (The only authorized runtime)
curl -fsSL https://bun.sh/install | bash

2. Global Brain Sync

Every machine in the OpenSIN fleet must be coupled with the Global Brain (PCPM).

# Sync Global Brain
git clone https://github.com/Delqhi/global-brain.git ~/dev/global-brain
cd ~/dev/global-brain && bun install

3. Neural-Bus Infrastructure

For local development of A2A agents, you need a local NATS JetStream instance.

# Launch Neural-Bus (Dockerized)
docker run -d --name neural-bus -p 4222:4222 nats:latest -js

4. OpenCode CLI

The primary interface for developers.

# Global install
bun add -g @opensin/opencode-cli

⚖️ Verification Mandate

After installation, run the Enterprise Health Check:

opencode run --action '{"action":"system.health"}'

If the response latency is >200ms, your environment is non-compliant. Optimize your network routing or consult the Performance Guide.


Related