Skip to content

Getting Started

GD2BK1NG edited this page Jan 27, 2026 · 1 revision

Getting Started

A practical introduction to running and exploring Syntra Kernel

This page provides a concise, practical guide for developers who want to install, run, and explore Syntra Kernel.
For a more narrative version, see the “Getting Started” section in the main README.


🧩 Prerequisites

Syntra Kernel requires:

Core Dependencies

  • Rust 1.70+
  • Cargo
  • Node.js 18+ (dashboard UI)
  • Python 3.x (ML workers)

Optional

  • CUDA / ROCm GPU
  • Docker

📥 Clone the Repository

git clone https://github.com/gd2bk1ng/syntra_kernel.git
cd syntra_kernel

🧱 Build the Kernel

cargo build

This compiles the cognitive runtime, cortex lobes, world‑model engine, memory system, scheduler, and CLI tools.


▶️ Run the Kernel

cargo run

You should see:

  • cortex initialization
  • world‑model startup
  • memory warm‑up
  • agent scheduler activation
  • ThoughtStream logs

🖥 Run the Dashboard

cd frontend
npm install
npm start

Dashboard opens at:

http://localhost:3000

🧪 Run Examples

cargo run --example renderer_example

🧬 Run Trials

cargo run --bin first_intent

These demonstrate early cognitive loop behavior.


🌐 Browser Subsystem

cargo run --bin syntra_browser

This launches the embedded browser environment used for perception and UI‑driven cognition.


🧰 Development Workflow

cargo test
cargo bench
cargo fmt
cargo run --bin inspect

🎉 You’re Ready

You now have:

  • the kernel running
  • the dashboard visualizing cognition
  • examples and trials available
  • the browser subsystem ready

Explore the architecture, extend it, and build cognitive applications on top of it.

Clone this wiki locally