Documentation Index
Fetch the complete documentation index at: https://docs.leapter.com/llms.txt
Use this file to discover all available pages before exploring further.
Test your Blueprint
You test Blueprints directly in the Blueprint Editor. The Contents sidebar is the entry point: expand any Blueprint’s parameters, set its input values, and run.Quick Run from the Contents sidebar

- Open the Contents sidebar on the left of the editor.
- Click the
# Nbadge next to a Blueprint — N is the count of its parameters. The Blueprint expands to show its inputs and outputs in line. - Set values for the inputs. Each input has a control matching its type — a dropdown for enums, a number field for numbers, a text field for strings, and so on. Required inputs are marked.
- Run the Blueprint. Either click run, or turn on Live mode and the Blueprint runs automatically every time you change an input or edit the logic.
- Read the outputs. Each output shows its current value next to its name in the Contents sidebar, and the Outputs footer at the bottom of the Blueprint’s section in the document does too.
- The execution path is highlighted on the embedded diagram, showing which branches and elements were visited.
- Each visited element shows a step number so you can see the order of execution.
- The trace controls in the top toolbar become active for stepping through the execution.
Live mode

- Tweaking values — adjusting a threshold or rate and seeing every output update at once
- Reviewing edge cases — flipping a boolean input and watching which branch becomes active
- Pair-editing with AI — applying AI changes and confirming the outputs immediately
- Reading an unfamiliar project — turn it on and you can see real values flowing through every Blueprint as you scroll the document
Stepping through a trace

| Control | Action |
|---|---|
| Jump to first step | Go to the first step of the trace |
| Previous step | Go back one step |
| Step counter | Shows the current step number — click to jump to a specific step |
| Next step | Advance one step |
| Jump to last step | Go to the final step |
| Step into | When the current step is on a Call node, descend into the called Blueprint and continue stepping there |
| Step out | When you’re inside a sub-Blueprint, return to the parent and continue stepping there |
| Exit trace | Exit replay mode and return to editing |
Autoplay
The trace toolbar also has a play / pause button and a playback speed control for animating through the trace automatically:- Play — auto-advance through every step in order. The button toggles to a pause icon while running.
- Pause — stop the auto-advance at the current step. The button toggles back to the play icon.
- Speed — adjust how fast autoplay moves through the trace.
autoplay attribute on <leapter-logic-viewer>) and in public read-only shares.
What to do next
- Test Suites — create and auto-generate test suites for systematic testing
- Inputs and Outputs — see how Blueprint signatures work
- Sync & Suggestions — let AI catch drift between your descriptions and your logic