The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Lambe listing page.
A query language for structured data that shows you what you're working with.
lam queries JSON, YAML, TOML, HCL, CSV, TSV, and Markdown. Unlike other query tools, it tells you what your query does before you run it — the shape at each pipe stage, which output formats can serialize the result, what would go wrong.
Use it when you don't already know the data: inspecting an unfamiliar API response, auditing a Helm chart, verifying a CI pipeline's assumptions, or asking an AI agent to extract something without guessing at the structure.
Queries are bounded and always terminate. No recursion, no lambdas, no def. That's the tradeoff: Lambë doesn't try to be a programming language, so its shape inference, --explain, --schema, and error remediations all work.
Lambë (pronounced "lam-beh") means "language" in Quenya (Tolkien's elvish). The package name is lambe for ASCII compatibility.
One-line installer (Linux and macOS, no sudo, verifies SHA256 checksums):
This downloads lam and lam-mcp from the latest GitHub release into ~/.local/bin/. Environment variables LAMBE_VERSION (pin a version) and LAMBE_PREFIX (change install dir) are supported; see the script for details.
Other options:
See Getting started for all installation options.
Lambë checks the result of your query against the shape the target format can serialize. When they match, output is produced. When they don't, the error names the required shape and lists query fragments that would bridge it. In an interactive terminal, Lambë offers to apply the chosen fragment and retry in place.
The same flow applies to CSV and TSV (which require a list of records at the root) and HCL (which requires a map).
Suggestions surface the intent-level as(<format>) form. The explanation names the raw fragment ({value: .}, to_entries, etc.) the bridge composes, so --explain and manual composition stay available to anyone who wants them.
By default, nested lists or maps in CSV/TSV cells are rejected — there is no faithful delimited rendering for them. When you need a quick export and lossy is acceptable, pass --flatten-cells json (CLI) or :flatten-cells json (REPL) to encode them as JSON strings inline. Round-tripping the resulting file back into Lambë does not recover the original structure; prefer reshaping the data query-side when fidelity matters.
as(fmt) — bridging in the query languageWhen the shape of the target format is known up front, as(fmt) performs the bridge inside the query. The combinator is a no-op when the input already satisfies the target, applies a single curated bridge when one exists, and lists the candidates when more than one could apply.
as accepts json, yaml, toml, csv, tsv, and hcl.
--explain — see the shape at every pipe stage--explain walks the pipe backbone of a query and reports the shape at each stage, followed by the set of output formats the final shape can be serialized as. It performs static analysis only and does not evaluate the query; pass a data file to seed with real shape information, or omit it to trace against an unknown input.
Explain flags provably-empty filters (filter(.missing) on a known shape) and runtime-rejection mismatches (filter on a non-list input) by default. Pass --explain-trivial to also flag sort_by/group_by/map/unique_by whose argument references a missing field (often a typo, sometimes intentional). For agent tooling and build pipelines, --explain-json emits the same information as a structured JSON document.
--schema — declare a shape and let Lambë check your workWhen you have a JSON Schema for your data — from an API contract, OpenAPI spec, or hand-written docs — point --schema at it:
The schema fills in information data alone can't express: optional fields (from JSON Schema's required), element shapes of empty lists, types shapeOf couldn't infer from sampling. --explain shows them; the evaluator trusts them.
With data present, Lambë also validates: a schema saying age: number against data with age: "30" exits 1 at load time with a JSON-path-annotated diagnostic. No silent drift, no running a query against data that doesn't match its contract.
A sibling <datafile>.schema.json is auto-detected, so a project convention of placing schemas next to data works without explicit flags.
The reverse direction is symmetrical: lam --print-shape data.json emits the inferred shape as a JSON Schema document. Round-trip:
Accepted JSON Schema keywords: type, properties, items, required. Value-level constraints (minimum, pattern, enum, etc.), structural combinators (allOf, oneOf), $ref, and conditional schemas are rejected with a per-keyword error. Lambë is a shape system, not a validation engine — for richer validation, reach for ajv or check-jsonschema.
Queries start with . (the current data) and chain operations with |:
Pipelines read left to right. Each | passes its result to the next operation:
This takes .users, keeps active ones, sorts by name, and extracts names.
Operations follow | and transform the piped value:
See the full list in Pipeline Operations below.
When a query produces a result the current output format cannot serialize, the REPL lists the available bridges inline; pressing the number of a suggestion applies it and prints the bridged output. Tab completion works on field names (.us<TAB>) and pipeline operations (| fil<TAB>). The REPL also supports syntax highlighting, persistent history (~/.lambe_history), Ctrl+R reverse search, and multi-line input with \ continuation.
| Format | Input | Output | Conformance |
|---|---|---|---|
| JSON | yes | yes | RFC 8259 (318/318) |
| YAML | yes | yes | YAML 1.2.2 (333/333) |
| TOML | yes | yes | TOML 1.1 (681/681) |
| HCL/Terraform | yes | yes | HashiCorp spec (2760/2760) |
| CSV | yes | yes | RFC 4180 + auto-dialect detection |
| TSV | yes | yes | Tab-separated variant of CSV |
| Markdown | yes | — | CommonMark 0.31.2 (652/652) |
Parsers from rumil_parsers, tested against official spec suites.
Markdown is input-only in this release. The Markdown AST is a presentation tree rather than a data structure, so there is no general-purpose mapping from arbitrary query results back to Markdown text. Projections of a Markdown document (lists of headings, counts, filtered sections) emit as JSON, YAML, CSV, or TSV through the usual --to flag.
| Operation | Example | Description |
|---|---|---|
filter | .users | filter(.active) | Keep elements matching predicate |
map | .users | map(.name) | Transform each element |
sort | . | sort | Sort naturally |
sort_by | .users | sort_by(.age) | Sort by key |
group_by | .users | group_by(.dept) | Group into {key, values} |
unique | . | unique | Remove duplicates |
unique_by | .users | unique_by(.id) | Remove duplicates by key |
flatten | . | flatten | Flatten one level |
reverse | . | reverse | Reverse order |
keys | . | keys | Map keys or list indices |
values | . | values | Map values |
length | . | length | Length of list, map, or string |
first | . | first | First element |
last | . | last | Last element |
sum | . | sum | Sum numbers |
avg | . | avg | Average |
min | . | min | Minimum |
max | . | max | Maximum |
has | . | has("name") | Check field exists |
to_entries | . | to_entries | Map to [{key, value}] |
from_entries | . | from_entries | [{key, value}] to map |
to_number | .price | to_number | Parse a string as a number |
type | . | type | Runtime type as a string |
filter_values | . | filter_values(. > 5) | Filter map values |
map_values | . | map_values(. * 2) | Transform map values |
filter_keys | . | filter_keys(. != "secret") | Filter map keys |
as | . | as(toml) | Bridge to an output format's shape |
Lambë ships as both an Agent Skill (loaded into an agent's session as expertise) and an MCP server (callable as a runtime tool).
The skill folder lives at .agents/skills/lambe/ in this repository,
following the cross-vendor agent-skills specification
that Claude Code, OpenAI Codex, GitHub Copilot, Cursor, and the
Microsoft Agent Framework all read.
To make Lambë available to an agent in another project, copy the folder into the agent-conventional location:
Agents that follow the spec auto-discover the skill at session start.
Install, then add .mcp.json to your project:
This gives AI assistants five tools that cover the whole feedback loop:
lambe_query — extract/filter/transform, with an optional schema parameter that validates data structurally before the query runs.lambe_print_shape — inspect unfamiliar data; returns a JSON Schema subset document.lambe_check — validate data against a JSON Schema. Returns {"ok": true} or {"ok": false, "error": "..."} naming the disagreement path.lambe_explain — trace a query statically (with or without data); returns a structured JSON report with shape-per-stage, warnings, and writability.lambe_assert — boolean assertion on a query result.When lambe_query encounters a shape mismatch with the requested output format, the error response includes a structured suggestions array: each entry carries a template_text, an apply_as (the complete query formed by appending the template to the original expression), and a one-line explanation. Agents can call the tool again with an apply_as verbatim.
Add AGENTS.md and .mcp.json to your project root. AI assistants that open the project will discover and use Lambë for data queries.
The lambe_test package provides test matchers for Dart:
man -l doc/lam.1)Lambë is a bounded tree transformer over JSON-shaped data. It
deliberately omits Turing-completeness, user-defined functions,
recursive descent (..), try/catch, regex, streaming, and
in-place mutation. Staying bounded is what makes shape inference,
--explain, and as(fmt) bridging work.
See doc/non-goals.md for the full list and the lambë idiom that replaces each omission.
See DESIGN.md for architecture and design decisions.
Built on Rumil parser combinators with left-recursive grammar support.