Package Exports
- @srk0102/plexa
- @srk0102/plexa/bridges/anthropic
- @srk0102/plexa/bridges/bedrock
- @srk0102/plexa/bridges/ollama
- @srk0102/plexa/core
- @srk0102/plexa/core/aggregator
- @srk0102/plexa/core/body-adapter
- @srk0102/plexa/core/brain
- @srk0102/plexa/core/network-body
- @srk0102/plexa/core/space
- @srk0102/plexa/core/translator
- @srk0102/plexa/core/vertical-memory
- @srk0102/plexa/introspection
Readme
One brain. Many bodies. Orchestration for any continuously running system.
The problem
Every LLM-controlled body today is welded to one environment. Change the body and you rebuild everything. There was no open protocol for it.
The insight
Let the body run at 60Hz. Push events up only when it cannot answer locally. The brain teaches. The muscle remembers.
| Session | Brain calls | Cost (Nova Micro) |
|---|---|---|
| 1 | 27 | $0.0270 |
| 2 | 4 | $0.0040 |
| 3 | 0 | $0.0000 |
Familiar situations are handled locally. Novel situations wake the brain. Cost is proportional to novelty.
Install
npm install @srk0102/plexaQuick start (5 minutes)
const { Space, BodyAdapter } = require("@srk0102/plexa")
const { OllamaBrain } = require("@srk0102/plexa/bridges/ollama")
class Cart extends BodyAdapter {
static bodyName = "cart"
static tools = {
apply_force: {
description: "push",
parameters: {
direction: { type: "string", enum: ["left", "right"], required: true },
magnitude: { type: "number", min: 0, max: 1, required: true },
},
},
}
async apply_force({ direction, magnitude }) {
console.log(`push ${direction} @${magnitude}`)
}
}
const space = new Space("balancer")
space.addBody(new Cart())
space.setBrain(new OllamaBrain({ model: "llama3.2" }))
space.setGoal("balance the pole upright")
await space.run()Expected output (Ollama not required; stub brain takes over automatically):
push left @0.4
push right @0.5
push left @0.3When to use what
| You have | Install |
|---|---|
| One body | npm install scp-protocol |
| Several bodies, one brain | npm install @srk0102/plexa |
Not just robotics
Plexa orchestrates any system that runs continuously and pushes events:
Game NPCs Robot arms Web servers Log monitors API gateways Any loopThree ready-to-run software backend examples are in examples/:
node examples/web-server/index.js
node examples/log-monitor/index.js
node examples/api-gateway/index.jsSee examples/web-backend in the docs.
Adapters tested
| Adapter | Physics | Cache rate |
|---|---|---|
| Missile Defense | Canvas 2D | ~100% |
| Self-Driving Car | Canvas 2D | ~90% |
| 10-Lane Highway | Canvas 2D | ~90% |
| MuJoCo Cart-Pole | Real 3D physics | 89% |
| MuJoCo Ant | Real 3D physics | 85% |
Five adapters, one orchestrator, one brain, same protocol.
Docs
Full documentation: https://srk-e37e8aa3.mintlify.app
Pages cover the Space reactor, memory layers (pattern store, adaptive memory, cross-session vertical memory), safety gate and approval hook, lateral body-to-body events, cost tracking and retry policy, and the full API.