Skip to main content

Install

Cargo.toml

Bootstrap a runtime

The fastest way to get a running system is start_mobkit_runtime. It takes a module configuration, agent event stream, and a startup timeout.

Use the unified runtime

For production deployments that combine a Meerkat mob with MobKit modules, use the UnifiedRuntime builder:
The unified runtime bootstraps both systems, merges their event streams, and manages the combined lifecycle. See the unified runtime guide for details.

Open the console

Once the runtime is serving HTTP, open the admin console at:
The console shows the agent sidebar, conversation workspace, signals rail, topology, logs, and health overview. The bundled app seeds from REST, sends through JSON-RPC, and tails replayable timeline frames over SSE.

Identity-first (household apps)

For apps with durable agent identities (like HomeCore), use the identity-first API:
Use respawn() for non-destructive recovery that keeps continuity, and reset() only when the app intentionally wants a destructive new generation and session.

What’s next