Automatic eval suites from the prompt logs you already have.
redline turns real prompt-response logs into local regression tests. It selects representative cases, replays your changed prompt, and shows the behavioral diff before a bad prompt reaches users.
Website · Docs · Security · License
Install from PyPI:
python -m pip install redline-aiRun one command first:
redline app --demoThis generates synthetic public demo reports, opens the local app, and shows the import -> suite -> eval -> review workflow. The demo catches ten regressions without API keys, private logs, a cloud account, or an LLM judge.
Prefer terminal-only output:
redline demo --public --compactThe demo writes JSON, Markdown, and self-contained HTML reports under
.redline/demo.
Try your own baseline and candidate logs:
redline quick-check logs/baseline.jsonl logs/candidate.jsonl --open-appquick-check builds a temporary suite, writes reports, and opens the app on the
local result. Ask redline what to do next after any run:
redline status --reports-dir .redline/demo/reportsOpen the guided local product app on existing reports:
redline app --reports-dir .redline/demo/reportsThe app is a local, copy-command workflow: import logs, generate suites, run evals, review regressions, record history, and export CI/MCP setup without the browser executing shell commands.
On headless CI or remote shells, skip browser opening and use the printed HTML path:
redline app --reports-dir .redline/demo/reports --no-open --out .redline/app.htmlFirst-run troubleshooting
redline: command not found: runpython -m pip install redline-ai, then confirmpython -m pip show redline-ai.- App did not open: use
--no-open --out .redline/app.htmland open or upload that file from your environment. - Suite not found: run
redline suite logs/baseline.jsonl --out redline-suite.json. - Validation failed: run
redline validate redline-suite.json --strictand fix the first reported error. - GitHub Action cannot find a suite: commit
redline-suite.jsonor point the actionsuiteinput at your prompt manifest.
Full guide: docs/troubleshooting.md.
- Baseline: the known-good prompt/output log.
- Candidate: the new prompt/output log after a prompt, model, or app change.
- Suite: saved regression cases generated from baseline logs, plus any cases you pin by hand.
- Structural check: a deterministic signal for broken JSON, lost tables, empty output, new refusals, missing URLs, missing numbers, or dropped entities.
redline has two proof paths: a fast first-run demo and a larger public-data dogfood run.
| Proof | Command or data | Result |
|---|---|---|
| First-run demo | redline demo --public --compact |
10 synthetic regressions caught locally with no API keys. |
| Local internet dogfood | 100 rows imported from Databricks Dolly 15k with the committed protocol | 51 regressions, 27 changed cases, 22 neutral controls, and 0 dashboard warnings. Raw third-party rows stay uncommitted under .redline/private/, so treat this as dogfood evidence, not a reproducible benchmark artifact. |
| Release gate | tests, lint, type check, action smoke, and release build | Package, CI, report, dashboard, and MCP paths are validated before publish. |
These screenshots are local artifacts from the 100-row internet dogfood run. To rerun the same style of check, follow the source list and conversion recipe in docs/internet-dogfood-sources.md with your own local download.
| Local app | HTML report |
|---|---|
![]() |
![]() |
redline is an open-source, local-first eval tool for AI teams. It uses logs you already have: prompts, outputs, support tickets, traces, model responses, and production JSONL exports.
Instead of asking you to hand-write evals first, redline generates the first suite from real behavior. You can then run that suite every time a prompt, model, or runner changes.
No cloud account is required. No manual test writing is required. No LLM judge is required for the core regression signal. The package has zero runtime dependencies, which keeps installs fast and the default supply-chain surface small.
redline gives you three primitives that cover the prompt-regression loop:
For a first pass on two local logs, use one command:
redline quick-check logs/baseline.jsonl logs/candidate.jsonl --openIt generates a temporary suite, writes JSON/Markdown/HTML reports plus a guided
local app under .redline/quick-check, opens the focused HTML report, and
prints the concrete behavioral diff. Use --open-app when you want the guided
review workflow to open instead of only the focused report.
For small logs, quick-check includes every unique prompt-response pair by
default. For larger logs it uses representative sampling, prints how many pairs
were excluded, and shows an excluded-case preview; add --all-cases when the
first pass must be exhaustive.
Start with prompt-response data you already have. Import JSONL, convert exports from tools like Langfuse or Helicone, capture OpenAI/Anthropic SDK calls, or add bounded FastAPI/ASGI middleware.
redline import downloaded.jsonl --detect
redline import downloaded.jsonl --auto-map --preview 3
redline import downloaded.jsonl --auto-map --out logs/baseline.jsonl
redline import downloaded.jsonl --input-field instruction --output-field response --preview 3
redline import downloaded.jsonl --input-field instruction --output-field response --out logs/baseline.jsonl
redline import langfuse-export.jsonl --preset langfuse --out logs/baseline.jsonl
redline suite logs/baseline.jsonl --out redline-suite.json
redline cases redline-suite.jsonUse --detect when you do not know the field names. Use --preview when the
export is new to you; it shows mapped, redacted sample rows without writing a
baseline file.
Suite generation prints a readiness score and improvement suggestions. That score measures suite health, not model quality or candidate safety.
redline groups behavior into deterministic signatures and selects representative cases first. You can add pinned edge cases and explicit requirements when a scenario must never be missed.
redline cases redline-suite.json
redline suite add redline-suite.json --prompt "..." --response "..."Replay a changed prompt or compare candidate outputs. redline names the behavior that broke: missing JSON keys, URLs, numbers, tables, code blocks, refusals, empty answers, or requirement failures.
redline eval --prompt prompts/v2.txt
redline diff redline-suite.json logs/candidate.jsonlIn under five minutes, on a real prompt log, redline should catch one regression you did not want to ship.
That promise is intentionally narrow. redline is not a hosted eval platform, a generic score, or a replacement for human judgment. It is the local safety loop between "I changed the prompt" and "this is safe enough to merge."
Build a suite from baseline logs:
redline suite logs/baseline.jsonl --out redline-suite.jsonEvaluate a changed prompt file through your configured runner:
redline eval --prompt prompts/v2.txtOr compare candidate outputs you already generated:
redline diff redline-suite.json logs/candidate.jsonlWhen redline finds a blocking change, it exits non-zero for CI and prints the reason:
REGRESSION case_004
- candidate missing JSON keys: owner, required_action
- candidate missing URL: https://example.com/policies/refunds
Confidence: HIGH | fix blocking cases before shipping
| Signal | Example regression |
|---|---|
| JSON validity and keys | Candidate stops returning valid JSON or drops owner. |
| Tables, lists, and code blocks | Markdown table becomes prose; code fence disappears. |
| Numbers, URLs, and entities | Refund window, ticket ID, policy URL, or owner is missing. |
| Empty outputs and refusals | Candidate newly refuses a safe task or returns nothing. |
| Content drift | Same-shape response changes substantially. |
| Explicit requirements | Pinned cases require or forbid exact strings. |
redline is deterministic and local-first by default. Optional judge commands are
available for ambiguous changed cases, but redline does not call a cloud model
unless you explicitly configure that command.
That is the point. redline is designed to be the fast merge-blocking gate for regressions that break production systems: invalid JSON, missing required fields, lost tables, empty answers, dropped URLs, changed refusal behavior, and explicit requirement failures. LLM judges are useful for semantic review, but they are slower, cost money, and can be flaky in CI. redline keeps the default gate deterministic, reproducible, and cheap, then lets you add judges only where the structural signal is not enough.
Methodology details live in docs/methodology.md.
Suite generation does not run statistical or embedding clustering by default. It groups logs by deterministic behavior signatures, such as prompt intent, response shape, length bucket, and JSON schema. It picks one representative per group first, then adds high-variance edges and evenly spread prompt-diverse samples from large groups when the case budget allows.
A green redline run means no configured high-signal structural blockers were found. It does not prove factual correctness, tone, hallucination safety, policy compliance, or subtle reasoning quality.
That boundary is visible in CLI output and reports because over-trusting eval
tools is dangerous. Each reported case includes a confidence and signal
(structural, shallow_semantic, requirement, judge, or human_judgment)
so reviewers can see why redline is making the call. Use requirements or an
optional judge for semantic risks that structural checks cannot prove.
The README keeps the first path short. The full command reference lives in docs/commands.md.
- Get logs in with
redline import,redline watch, SDK capture, ASGI middleware, or an existing JSONL export. - Generate a suite with
redline suiteor pin important edge cases withredline suite add. - Compare behavior with
redline quick-check,redline diff, orredline eval. - Review and calibrate with
redline cases,redline case,redline mark,redline require, andredline accept. - Operate the loop with
redline app,redline status, GitHub Actions, local HTML reports, audit checkpoints, and optional MCP tools.
Redaction is on by default for import and capture flows. It covers common
provider keys, GitHub/PyPI/AWS access-key IDs, JWTs, bearer tokens, emails,
SSNs, phone numbers, card-like numbers, and sensitive field names such as
api_key, password, secret, and token. Redaction is best-effort pattern
matching, not a privacy boundary; review sensitive logs before sharing.
MCP is an integration surface, not the first-run path. Use it after the local CLI/app loop makes sense: docs/mcp.md.
For repos with many prompt files, the manifest becomes the eval plan:
redline prompts prompts/ --suite-dir suites --out redline-prompts.json
redline prompts prompts/ --suite-dir suites --out redline-prompts.json --check --check-suites
redline summary redline-prompts.json
redline validate redline-prompts.json --strict
redline budget redline-prompts.json
redline eval redline-prompts.jsonManifest summaries show readiness across every mapped suite, manifest validation checks every mapped suite, manifest benchmarks aggregate runtime budget, and manifest evals print prompt-level rollups before case details. Large repos can see which prompt files or feature folders need attention first.
When mapped suites are valid, the check prints ready commands such as:
redline eval suites/support/triage.redline-suite.json --prompt prompts/support/triage.txtAny command that reads a prompt from stdin and prints a response to stdout can be a redline runner:
redline init --runner stdio --copy-runner --github-actionBuilt-in adapters cover provider-neutral stdio, OpenAI, Anthropic, LiteLLM, HTTP APIs, Python chains, JSONL log imports, and OpenAI/Anthropic SDK capture:
redline runners
redline runners --copy allRunner details live in docs/runners.md. Log import and SDK
capture adapters are for building suites from real observations, not for
redline eval replay. The JSONL log adapter includes Langfuse, Helicone,
LangSmith, and Braintrust presets for exported observability logs.
redline ships a local Model Context Protocol server:
redline-mcpUse docs/mcp.md to wire redline into an MCP client. The MCP
surface exposes safe capture-readiness, privacy, audit, scale, read,
quick-check, case-inspection, eval, and report tools plus workflow prompts like
setup_redline_project, check_prompt_change, build_suite_from_logs, and
review_candidate_outputs.
It can also list or copy runner adapters and optional judge templates during setup.
The only mutating MCP tool is guarded: redline_mark requires allow_write: true
and a note before it records an intentional case judgment. Baseline promotion
stays CLI-only.
Create config plus a GitHub Actions workflow:
redline init --runner stdio --copy-runner --github-actionUse redline as a composite GitHub Action from another repo:
- uses: gowtham0992/redline@v0.3.0
with:
prompt-path: prompts/v2.txt
benchmark-max-seconds: "300"For multi-prompt repos, point suite at redline-prompts.json. The action
checks every mapped suite with redline prompts --check --check-suites, runs a
manifest-wide benchmark, then runs the manifest eval.
The action writes JSON, full Markdown, concise PR-comment Markdown, HTML, JUnit,
Slack-ready JSON, history, dashboard, and audit checkpoint artifacts under
.redline/, appends benchmark, concise eval, and trend summaries to the GitHub
step summary, and exits with the eval gate status. Set benchmark-max-seconds
when a suite should fail CI if its worst-case runtime budget grows too far.
Every diff and eval run can write:
- JSON for machines and dashboards
- full Markdown for detailed summaries, including prompt-manifest rollups
- concise PR-comment Markdown for merge-review surfaces
- self-contained HTML for side-by-side inspection, including feature and prompt eval tables plus a latest-report review queue
- JUnit XML for CI test reporting
- Slack Block Kit JSON for CI bots or webhook integrations you control
- GitHub annotations for changed or blocking cases
Example:
redline diff redline-suite.json logs/candidate.jsonl \
--out-json .redline/reports/diff.json \
--out-md .redline/reports/diff.md \
--out-comment .redline/reports/diff-comment.md \
--out-html .redline/reports/diff.html \
--out-junit .redline/reports/diff.xml \
--out-slack .redline/reports/diff.slack.jsonUse judges only where structural checks are not enough. redline sends only
ambiguous changed cases to the configured command as JSON on stdin:
redline judges
redline judges --copy openai
redline judges --copy support-rubric
redline diff logs/candidate.jsonl --judge "python examples/judge_changed.py"Repo examples and installable templates:
- examples/judge_changed.py
- examples/openai_judge.sh
- examples/anthropic_judge.sh
- examples/litellm_judge.sh
- examples/judges/support_rubric.md
- examples/judges/extraction_rubric.md
- examples/judges/safety_rubric.md
Calibration guidance lives in docs/judges.md.
redline init writes redline.json with a $schema reference for editor
autocomplete. Important keys:
| Key | Purpose |
|---|---|
suite |
Suite baseline path, default redline-suite.json. |
input_field, output_field |
JSONL field paths for prompts and responses. |
max_cases |
Maximum representative cases selected for a suite. |
replay |
Command used by eval; prompts go to stdin by default. {prompt} is for small legacy argv runners; {prompt_file} passes a temporary rendered-prompt file path. |
workers |
Number of replay cases to run concurrently. |
owners |
Optional pattern-to-owner rules so regressions show the responsible team. |
approval |
Optional local guardrail; require_approver makes accept record an approver. |
fail_on |
Statuses that fail diff or eval; use "none" for report-only setup. |
reports |
JSON, Markdown, PR-comment Markdown, HTML, JUnit, and Slack-ready JSON output paths. |
logs |
Observed prompt-response log path and optional middleware skip diagnostics path. |
audit |
Append-only JSONL audit log path for evals, judgments, requirements, and accepted baselines. New entries include operator/approver context plus a local hash chain that redline audit --verify can check; use expected hash/count checkpoints or --out-checkpoint evidence files to detect tail truncation. |
judge |
Optional command for ambiguous changed cases. |
Check setup before relying on a suite:
redline doctor --strict
redline validate redline-suite.json --strict
redline summary redline-suite.jsondoctor shows whether the suite has explicit requirements or recorded
judgments before you rely on structural checks in CI.
summary reports a suite readiness score, behavior-group/case coverage, owner
coverage, accepted baseline history, approver coverage, and explicit guard
coverage for cases with requirements or recorded judgments so teams can review
suite readiness before CI.
dashboard also shows audit checkpoint evidence when .redline/audit-checkpoint.json
is present.
The public fixture is synthetic, shaped after public instruction/chat dataset patterns, and documented in examples/public_dogfood_sources.md.
python -m redline suite examples/public_dogfood_baseline.jsonl --out /tmp/redline-public-suite.json --all-cases
python -m redline diff /tmp/redline-public-suite.json examples/public_dogfood_candidate.jsonl --compact --fail-on noneFor AI-assistant session dogfood, use
docs/ai-session-dogfood-prompts.jsonl
and normalize raw exports with scripts/normalize_ai_session_logs.py.
Reproducible dogfood case studies live in
docs/case-studies.md.
Public dataset candidates for internet dogfood are ranked in
docs/internet-dogfood-sources.md.
From a repo checkout, record the public demo:
bash scripts/demo_terminal.sh
bash scripts/demo_gif.sh .redline/launch .redline/launch/redline-demo.gifpython -m pip install -e ".[dev]"
python -m pytest -q
python -m ruff check .
python -m mypy redline tests scripts examplesBefore cutting a release or asking someone else to try a branch:
bash scripts/release_check.shStart and connect
- docs/troubleshooting.md: first-run and CI failure recovery
- docs/commands.md: compact CLI command reference
- docs/import-guides.md: Langfuse, Helicone, OpenAI chat, Datadog, and custom log import recipes
- docs/runners.md: runner and log adapter setup
Understand the method
- docs/methodology.md: behavior grouping, case selection, scoring, and trust boundaries
- docs/calibration.md: tiny fixture showing regressions, changed cases, and neutral cases
- docs/benchmarks.md: performance contract and CI benchmark artifacts
Dogfood and evidence
- docs/real-log-dogfood.md: redaction-first real-log test protocol
- docs/dogfood.md: first-user dogfood protocol
- docs/case-studies.md: reproducible dogfood case studies
- docs/internet-dogfood-sources.md: public prompt-response datasets for dogfood sourcing
Operate and release
- docs/mcp.md: MCP server setup
- docs/release.md: package, tag, PyPI, and MCP Registry release flow
- docs/launch.md: public alpha launch plan
- docs/repository.md: GitHub repository controls
- scripts/README.md: maintainer script index
- CONTRIBUTING.md: contributor validation
- SECURITY.md: privacy and vulnerability reporting
- LICENSE: MIT open source license
Website source for GitHub Pages lives in site/ and deploys from the
committed static assets on main.


