-
-
Notifications
You must be signed in to change notification settings - Fork 1
Getting Started
GD2BK1NG edited this page Jan 27, 2026
·
1 revision
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.
Syntra Kernel requires:
- Rust 1.70+
- Cargo
- Node.js 18+ (dashboard UI)
- Python 3.x (ML workers)
- CUDA / ROCm GPU
- Docker
git clone https://github.com/gd2bk1ng/syntra_kernel.git
cd syntra_kernel
cargo build
This compiles the cognitive runtime, cortex lobes, world‑model engine, memory system, scheduler, and CLI tools.
cargo run
You should see:
- cortex initialization
- world‑model startup
- memory warm‑up
- agent scheduler activation
- ThoughtStream logs
cd frontend
npm install
npm start
Dashboard opens at:
http://localhost:3000
cargo run --example renderer_example
cargo run --bin first_intent
These demonstrate early cognitive loop behavior.
cargo run --bin syntra_browser
This launches the embedded browser environment used for perception and UI‑driven cognition.
cargo test
cargo bench
cargo fmt
cargo run --bin inspect
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.