Coding agents are getting very good at building apps. The risky part is what happens to the business logic inside those apps.
Pricing rules, eligibility checks, reimbursement policies, compliance gates, and scoring formulas often start with a rule owner outside engineering. When an agent turns those rules into ordinary application code, the app may work, but the implementation becomes hard for that rule owner to inspect.
This starter shows a different pattern:
Let the agent build the app. Keep the business logic in an inspectable, executable visual program.
In this repo, business logic lives in Veritas files: text-based logic files that sit in Git, validate locally, execute deterministically, and render as editable Leapter Blueprints. A Blueprint is not a screenshot of code. It is the program.
If you want to see the idea before cloning the repo, open the hosted showcase:
The showcase includes runnable examples built around the same core idea: use the app, inspect the logic, and see the path that produced each result.
The included example is a pizza pricing calculator. Change the size, toppings, crust, or day of week, then click Show Logic to see the exact logic path that produced the result.
git clone https://github.com/leapter/leapter-inspectable-logic-demo.git my-app
cd my-app
pnpm installStart the local demo:
pnpm devThen open the example app in your browser:
http://localhost:4000
No Leapter SaaS account is required for this local demo.
This is a mixed-license starter: the app/examples/docs are MIT-licensed, while the bundled local Leapter tooling remains proprietary beta tooling. See License for details.
To use an agent workflow, open the repo with Claude Code, Codex, or another local coding agent that reads project instructions.
With Claude Code:
claudeThen type:
hello
The agent will check your setup, start the app, show the included example, and guide you toward creating your own app from requirements.
For a UI, verification is direct. You can look at the generated app and say, "move that button" or "that layout is wrong."
Business logic is different. A pricing rule can pass a few sample outputs while still being wrong in an edge case. A compliance exception can be implemented backwards. An eligibility threshold can be off by one. The only reliable way to verify the implementation is to inspect the logic.
Today that usually means reading code.
Leapter changes the artifact. Instead of hiding business logic in TypeScript, Python, prompts, or opaque workflow nodes, the logic lives in a side-effect-free program that can be:
- generated by AI
- read as a structured specification
- rendered as a visual program
- edited in a diagram editor with AI support
- executed through a permitted production runtime path
- tested with ordinary inputs and outputs
- traced step by step
- versioned and reviewed like software
- compared with visual diffs
- managed in shared projects
- hosted as API or MCP tools when you want Leapter to run it for you
- exported or run through multiple runtime paths
The goal is not to replace code. The goal is to give business-critical logic a better review interface.
This starter separates the app into two parts:
| Layer | Lives In | Purpose |
|---|---|---|
| App shell | web/ |
UI, layout, forms, charts, interaction |
| Business logic | leapter/ |
Veritas logic files that compile into executable Blueprints |
The rule is strict:
Business logic does not go in React or TypeScript. It goes in Veritas.
That means the UI can be rewritten, restyled, or regenerated without burying the pricing calculation, scoring model, or policy decision inside invisible application code.
The pizza example lives at:
leapter/logic/pizza-pricing/pizza-pricing.logic.vts
Excerpt:
section "Look up day-of-week multiplier" {
"""
Day-of-week pricing rewards customers who order on quieter nights and
slightly raises prices on the busiest ones. Tuesday is the headline
Pizza Tuesday discount at 20% off; Wednesday adds a smaller 10% off.
Friday and Saturday carry premiums because the kitchen runs at peak load.
"""
//* Look up multiplier for the chosen day
choose {
//* Pizza Tuesday - 20% discount
if (dayOfWeek is "tuesday") {
//* Apply Tuesday discount
dayMultiplier = 0.80;
}
//* Friday - 10% premium
if (dayOfWeek is "friday") {
//* Apply Friday premium
dayMultiplier = 1.10;
}
//* Monday, Thursday, or Sunday - regular rate
else {
//* Apply regular rate
dayMultiplier = 1.0;
}
}
}
The prose states intent. The Veritas logic defines behavior. When those disagree, that mismatch is a review signal.
Rendered as a Leapter Blueprint, the same logic becomes an executable diagram:
The app includes an in-browser logic inspector. Click Show Logic to open it.
When the form calculates a result, the inspector shows:
- the visual Blueprint
- the execution trace
- the input values
- the output values
- the active path through the logic
This makes the result inspectable from the inside. You are not just seeing that the app returned $17.60; you can see why.
This starter executes blueprints in the browser during development:
pnpm devThat starts two processes side-by-side:
- a tiny
leapter convert --watchwatcher that compiles.vtsblueprints to JSON whenever you change them - the Next.js app on
localhost:4000
The larger Leapter model is runtime-flexible: the same logic can be used through different paths depending on what the application needs.
- local runtime during development
- browser-embedded runtime
- server runtime
- API / OpenAPI
- MCP tools for agents
- JavaScript or Python export
For this starter, no Leapter SaaS account is required to validate and execute the included Blueprint. Pushing the Blueprint to Leapter Lab is optional and gives you the web-based diagram editor, AI-assisted editing, shared project workspace, visual review tools, and hosted runtime options. Login is only needed for account-bound capabilities such as API keys, hosted MCP/API execution, and production trace retention.
Production note: you may deploy applications and business-logic artifacts created with this starter, including apps that use the bundled Leapter beta runtime/tooling as part of the starter workflow. The proprietary Leapter runtime, CLI/converter, and viewer may not be modified, extracted, repackaged, resold, sublicensed as standalone tooling, or used directly or indirectly to develop, train, power, operate, or support any product or service that competes with, or is intended to substitute for, Leapter's proprietary tooling, runtime, viewer, converter, hosted runtime services, Veritas-compatible language implementations, or visual-programming platform. Ordinary bundling, minification, caching, containerization, CI packaging, and deployment as part of an application created with this starter are permitted. The bundled tooling is beta software provided as-is, without warranty, SLA, support commitment, or backwards-compatibility commitment.
leapter-inspectable-logic-demo/
├── requirements/ Business rules and specs, used as input for the agent
├── leapter/ Veritas project: executable business logic
│ ├── leapter.project
│ └── logic/
│ └── pizza-pricing/
│ └── pizza-pricing.logic.vts
├── web/ Next.js app shell and UI
├── packages/
│ └── leapter-client/ Runtime API client
├── AGENTS.md Agent instructions for Codex-style tools
├── .claude/ Claude skills for Leapter and Veritas authoring
└── .leapter-tools/ Bundled Leapter CLI
You can start from a sentence:
Build a travel expense reimbursement calculator.
Employees enter trip type, country, meal expenses, hotel nights, and receipts.
The app should calculate reimbursable amount, flag policy violations, and show
which policy rules were applied.
Or drop requirements into requirements/:
requirements/travel-expenses/requirements.md
requirements/discount-approval/policy.xlsx
requirements/credit-precheck/rules.pdf
Then ask Claude:
Read the requirements and build the app. Keep all business logic in Leapter.
The agent should:
- turn the rules into Veritas files under
leapter/ - validate the logic locally
- create a tailored app UI under
web/ - wire the UI to the Blueprint runtime
- preserve the logic inspector so results remain inspectable
Install dependencies:
pnpm installStart the runtime and browser app:
pnpm devThen open the UI:
http://localhost:4000/calculator
Validate Veritas logic:
pnpm validateRun the pizza pricing logic directly from the command line as an alternative test path:
cd leapter
../.leapter-tools/cli/leapter runtime run \
--model pizza-pricing \
--input '{"pizzaSize":"large","toppings":["pepperoni","mushrooms"],"crustType":"stuffed","dayOfWeek":"tuesday"}' \
--format jsonOpen VS Code with the Leapter Blueprint viewer:
pnpm vscodeThis installs the bundled VS Code extension from .leapter-tools/leapter-blueprint-viewer.vsix and opens the workspace. Open a .logic.vts file to see the visual Blueprint representation next to the text source.
Push Blueprints to Leapter Lab:
pnpm pushUse this when you want the same Veritas logic in Leapter Lab's web editor. There you can inspect and edit the diagram, use AI-assisted editing, review visual diffs, collaborate in a shared project, and optionally enable hosted API/MCP execution.
This repository shows the local developer workflow: Veritas files in Git, Blueprints compiled locally, and an app that can show the logic behind each result.
If you want to try the full literate visual programming workflow, open Leapter Lab. Lab adds the hosted editor around the same artifact:
- edit Blueprints visually
- keep prose intent next to executable logic
- use AI-assisted rule changes
- inspect traces from individual runs
- compare visual diffs during review
- collaborate on shared logic projects
- optionally expose the same logic as hosted API or MCP tools
The local starter does not require a Leapter account. Leapter Lab is for trying the web-based authoring, review, collaboration, and hosted runtime pieces.
Leapter Blueprints are side-effect-free functions. They take inputs, apply logic, and return outputs.
Good fits:
- pricing and discount logic
- quote calculators
- eligibility checks
- policy validation
- reimbursement rules
- underwriting-style scoring
- compliance gates
- deterministic agent tools
Poor fits:
- full web apps
- data pipelines
- long-running workflows
- database mutation logic
- network orchestration
- UI rendering
The boundary is intentional. Side-effect-free logic is easier to inspect, test, trace, and review.
The literate programming part matters. Veritas sections do not just group code; they carry the intent behind the rule in the same artifact as the executable logic. That is the difference between "the system checks this threshold" and "the system checks this threshold because this policy exception exists."
Visual programming makes the structure inspectable. Literate programming keeps the reason attached to the structure. AI makes that richer artifact practical to generate and maintain.
| Approach | What happens to business logic |
|---|---|
| Generated app code | Logic works, but often disappears into ordinary source files |
| Prompt-only agent | Logic is flexible, but runtime behavior may vary |
| Low-code workflow | Logic is visual, but often tied to a platform runtime and workflow model, with limited literate context |
| Documentation | Intent is readable, but does not execute |
| Rules engine | Logic can be deterministic, but the authoring/review artifact is usually not built for AI-assisted literate visual editing, trace replay, and visual diffs |
| Leapter / Veritas | Logic is text in Git, visual in the editor, executable at runtime, traceable after each run, reviewable with visual diffs, and editable with AI support |
This is an early starter, built to test the concept, the workflow, and the artifact itself: business logic as a literate visual program that AI can generate and humans can inspect.
What is working here:
- local Veritas validation
- local Blueprint execution
- a full pizza pricing example
- in-browser logic trace inspection
- AI-assisted Blueprint edits
- AI-assisted test creation
- visual diffs
- agent instructions for Claude Code and Codex-style tools
- VS Code Blueprint viewer setup
What is still evolving:
- the best UX for bringing literate specifications, visual diagrams, AI edits, tests, and review comments together in the web editor
- the long-term licensing/open-source shape of Veritas, the viewer, and runtime pieces
- more example projects beyond the starter
- smoother support across coding agents
We are looking for feedback from people who have business-critical logic that should not be hidden inside generated app code.
Especially useful:
- teams using AI coding agents for internal tools
- teams with pricing, eligibility, reimbursement, compliance, or scoring rules
- people who own rules but do not want to review implementation code
- developers who have had to translate business rules back and forth between stakeholders and source code
- people with opinions on what our licensing/open-source strategy should be
Open an issue, start a discussion, or tell us what breaks.
Nothing leaves your machine automatically. There is no analytics SDK, no ping on launch, no background reporting.
When you run Claude Code inside the starter, a hook script at
.claude/hooks/telemetry.mjs writes a
local log of your prompts and the tool calls Claude makes to
.leapter/telemetry.jsonl (gitignored). The log is plain JSON Lines you
can cat any time, and you can clear it by deleting the file.
A dev-only Share feedback page (top header in pnpm dev) lets you
send feedback to us. It previews the literal payload before you click
send: the exact bytes, no hidden fields. Attaching the session log and
the project snapshot are independent opt-in checkboxes; both default
off, and what you see in the preview is what gets sent.
The hook script never records: your username, hostname, IP address, environment variables, or anything outside the project directory. Absolute paths are collapsed to basenames. Assistant responses are not captured; only your prompts and what Claude did with them.
This repository is a mixed-license starter.
| Path / Artifact | License / Rights |
|---|---|
web/, packages/leapter-client/, leapter/, requirements/, AGENTS.md, CLAUDE.md, .claude/, docs, examples, setup scripts |
MIT License, except for separately noticed third-party assets and Leapter brand assets |
.leapter-tools/ |
Leapter proprietary beta tooling |
packages/runtime-browser/ |
Leapter proprietary beta tooling |
| Leapter names, logos, and brand assets | Leapter GmbH brand assets; not a general trademark or brand license |
User-created .logic.vts files, requirements, generated app code, compiled Blueprint JSON, test cases, local traces, and other project artifacts |
Owned by the user, subject to any third-party content the user includes |
| Third-party dependencies, fonts, and template assets | Governed by their own licenses |
The bundled Leapter CLI/converter, browser runtime, and VS Code Blueprint viewer are proprietary Leapter beta tooling. They are included so the local demo can validate, view, convert, and execute the example logic without a Leapter SaaS account.
You may clone, fork, install, run, cache, and redistribute this starter with the proprietary notices intact. You may use the bundled proprietary tooling for local development, evaluation, testing, CI, non-production demos, and production deployment or execution of applications and business-logic artifacts created with this starter.
You may not modify, reverse engineer, decompile, extract, repackage, resell, or sublicense the proprietary tooling as standalone tooling or an SDK. You may not use it directly or indirectly to develop, train, power, operate, or support any product or service that competes with, or is intended to substitute for, Leapter's proprietary tooling, runtime, viewer, converter, hosted runtime services, Veritas-compatible language implementations, or visual-programming platform. Ordinary bundling, minification, caching, containerization, CI packaging, and deployment as part of an application created with this starter are permitted. The bundled proprietary tooling is beta software provided as-is, without warranty, SLA, support commitment, or backwards-compatibility commitment.
You own the artifacts you create with this starter, including your
requirements, Veritas .logic.vts files, generated app code, compiled
Blueprint JSON, test cases, local traces, screenshots, and project-specific
documentation, subject to any third-party content you include. Leapter claims no
ownership in those user-created artifacts.
Outputs and project artifacts generated through permitted use are not derivative works of the proprietary beta tooling solely because that tooling validates, converts, views, executes, or traces them.
The included pizza-pricing Veritas file is an example you can copy, modify, and use under the starter's MIT license.
The MIT-covered starter files are open source under the MIT License. The bundled Leapter beta tooling, runtime, viewer, and Leapter brand assets remain proprietary. The Leapter platform is not covered by this repository license.
See LICENSE, .leapter-tools/LICENSE, and packages/runtime-browser/LICENSE for the full license notices. See LICENSES.md for the full mixed-license overview.




