Examples
Local Runtime
Run a governed local loop with splendorctl.
Local Runtime Example
The local runtime example demonstrates the core loop:
percept -> policy -> constraints -> gateway -> adapter -> outcome -> state commit -> traceThe policy proposes a filesystem action. The action is mediated by the gateway; the policy does not write files directly.
Run the example
From a kernel checkout:
cargo build -p splendorctl
rm -f ./examples/local-basic-loop/data/trace.db \
./examples/local-basic-loop/data/state.db \
./examples/local-basic-loop/data/tick_*.txt
./target/debug/splendorctl run \
--config ./examples/local-basic-loop/config.yaml \
--cycles 1Inspect traces
./target/debug/splendorctl trace export \
--db ./examples/local-basic-loop/data/trace.db \
--run 22222222-2222-2222-2222-222222222222Expected trace shape includes run start, tick start, percept receipt, state load, policy invocation, action proposal, constraint evaluation, verification, execution or denial, outcome recording, state commit, and tick completion.
Inspect state
./target/debug/splendorctl state head \
--db ./examples/local-basic-loop/data/trace.db \
--run 22222222-2222-2222-2222-222222222222The state head points to the latest committed state node.
Compatible two-cycle variant
examples/single_agent_loop uses the same local runtime shape with two cycles.
It is useful for seeing repeated state/trace progression with the same gateway
boundary.
./target/debug/splendorctl run \
--config ./examples/single_agent_loop/config.yaml \
--cycles 2What this proves
- policy code proposes actions;
- gateway verification runs before adapter execution;
- state is committed explicitly;
- trace records preserve the runtime order;
- replay can inspect the run without writing the file again.