-
-
Notifications
You must be signed in to change notification settings - Fork 3
Tutorial: Building Your First Cognitive App
GD2BK1NG edited this page Jan 27, 2026
·
1 revision
A step‑by‑step guide to extending Syntra Kernel
This tutorial walks you through building a simple cognitive application using Syntra Kernel.
git clone https://github.com/gd2bk1ng/syntra_kernel.git
cargo runCreate a file:
src/agents/greeting_agent.rs
Define an actor that responds to a custom intent.
Add your agent to:
src/runtime/actor_registry.rs
Define a new intent in:
codex/intents/
Use SL2:
sandbox.simulate:
plan: "greet_user"
Watch:
- agent activation
- ThoughtStream logs
- world‑model updates
You’ve built your first cognitive extension.