Constraints

A constraint in Lolly is a rule the software enforces at load time and render time, rather than guidance a style guide offers an author: a tool exposes a fixed set of declared inputs, and the values its template can see are exactly those inputs plus whatever the tool's own code computed. Nothing else is reachable.

That is what the landing page means by "it comes out right" - a property of the mechanism, not a promise about care. This page is the mechanism, the tests that hold it and the places it stops.

The manifest declares the inputs

Every tool is a directory with a tool.json manifest, and that manifest is validated against schemas/tool.schema.json at catalog build time, at shell load time and while authoring. Two lines of that schema carry most of the weight:

Inputs are declared, never inferred from the template. Reading a tool's manifest tells you the complete surface a person using it can change, before you open the template at all.

The declaration also carries the bounds. A number input's min/max clamp on update, a text input's maxLength truncates, a select closes its option list and a color input can name a palette asset to restrict choices to brand swatches - with swatchesOnly removing the hex field and the native picker entirely (schemas/tool.schema.json, the color conditional).

The template cannot compute

Templates are Handlebars and logic-less on purpose (engine/src/template.ts). The helper set is registered once at module load and deliberately small: default, upper, lower, eq, icsStamp, rfcText, csvCell, arrow, markdown, asset and media. There is no way to write a loop with a side effect, call out to the page or invent a value. {{x}} HTML-escapes; {{{x}}} is the opt-in raw form.

The context a template is hydrated with is one line, engine/src/runtime.ts:517:

ctxCache = { ...modelToValues(model), ...extras };

Declared input values, then hook-computed extras. A template that references a name in neither renders empty, because there is no outer scope for it to reach into. This is also why no template needs its own security audit: with no arbitrary code in a template, there is no code in a template to audit.

Brand values resolve from tokens

Colour, type and spacing come from the brand's design tokens rather than from numbers typed into a template. engine/src/tokens.ts is the engine's single source of truth for token semantics: it parses a W3C DTCG document (the format Penpot and Tokens Studio exchange), resolves {dotted.path} aliases including chains, applies $themes set layering and normalises every colour form to a plain hex string for the rest of the app.

A colour input can hold a token reference rather than a literal, as { ref, value }. The reference is what travels in a share link; the template only ever sees the resolved string. So re-pointing a brand token updates every tool that referenced it, and no template has to be edited.

One place input semantics live

engine/src/inputs.ts builds the runtime input model from the manifest: defaults resolved, profile bindings applied, control chosen. Its header states the rule the architecture depends on - this is the only place input semantics live, and shells render the model rather than interpreting manifest declarations themselves.

That is why the same number input with a min, a max and a step becomes a slider in the browser, the same clamped number in the CLI and the same value in an MCP call. A shell cannot quietly widen a constraint, because a shell never reads the constraint.

The same closed set in a URL

A tool's URL is not a wider door than its sidebar. engine/src/url-mode.ts parses a query string against the tool's own declared inputs, and anything it does not recognise is ignored rather than guessed at. The one set of names that mean something without being inputs is closed and explicit - the RESERVED set at engine/src/url-mode.ts:327, covering output concerns such as format, width, height, unit, dpi, profile, bleed, marks and the provenance switches.

So there is no undocumented parameter that changes what a tool will do. You can read the manifest, read RESERVED and know the complete vocabulary a link can speak. The CLI speaks the same one, because --foo=bar is converted by that module too.

A tool reaches only the hosts its manifest names

Tools never touch the network directly. host.net is the only path, it is gated by the network capability plus an explicit network.allowlist in the manifest, and it is fail-closed: no capability or no allowlist means every fetch rejects before any I/O happens. tests/net-allowlist-conformance.test.ts proves that against the real shared module across shells, which is the drift it exists to catch - a new shell writing its own host.net and omitting the check.

The receipts

ClaimEnforced by
A malformed manifest is refusedtests/engine.test.ts - validate: rejects manifest missing required fields, rejects invalid id format, rejects unknown status
A URL param that is not a declared input is droppedtests/engine.test.ts - url-mode: ignores unknown params (forward-compat)
Declared bounds actually bindtests/engine.test.ts - inputs: number constraints clamp to min/max on update, inputs: text maxLength truncates on update
A template escapes by default and cannot invent valuestests/engine.test.ts - template: escapes HTML by default (XSS guard), template: missing values render empty in if-blocks
A token reference resolves before the template sees ittests/tokens-value-path.test.ts
A tool's network access is fail-closedtests/net-allowlist-conformance.test.ts
The shipped catalog matches its manifestsscripts/validate-catalog.ts, run as a CI job in .github/workflows/ci.yml - duplicate ids, index drift, asset checksums, bindToProfile fields, palette references and replacedBy chains
Every tool still renders at its declared defaultsthe catalog-wide render gate in .github/workflows/ci.yml, which renders every tool in the active profile and exits non-zero on any failure

Check it yourself

The whole claim is readable in a few minutes:

git clone --recurse-submodules https://github.com/lolly-tools/lolly.git
cd lolly
cat community/qr-code/tool.json          # the complete input surface of one tool

npm install                              # the contract tests import ajv + handlebars
node --test tests/engine.test.ts         # the validate / inputs / template contract

The manifest you just read is the same file the browser fetches, the CLI loads and the catalog validator checks. There is no second, richer configuration behind it.

Limits