Skip to main content

darkroom

Evidence-based autonomous software delivery: agents build, sealed exams judge, and every claim ships with proof.

darkroom runs a convergence loop in which a builder agent works toward criteria it is never shown. A non-LLM harness drives the system under test as a black box and captures typed evidence (HTTP transcripts, command output, screenshots, screencasts); a judge scores that evidence against rubrics sealed in a vault the builder cannot address; gates ratchet so no scenario ships below its peak. The exam lives outside the repository, the scores live outside the builder's reach, and the manifest, not the code, is what you review, diff, and gate on.

This is proven live, not aspirational. A greenfield example app was delivered by agents under darkroom: its API, its security behaviors, its full UI and design language, even its Makefile, every behavior converging to a gated 100 on captured evidence, for single-digit dollars of metered spend per campaign, with the exams' screencasts as the receipts.

The name references the dark factory pattern (lights-off autonomous production) and the clean room pattern (independent implementation from specification). A darkroom is a controlled, light-sealed environment where evidence is developed and evaluated without contamination from the implementation side.

New here? Start with the Quickstart: four stages, ~15 minutes, covering first evidence, the exam, the convergence loop with zero spend, then real agents. Its runnable stages are executed by CI, so it cannot rot.

Install

pip install darkroom-ai

The core is dependency-free. Extras add capabilities:

extra adds
playwright browser steps, screenshots, screencasts, WebAuthn ceremonies
crypto Ed25519 keygen/signing steps in drive scripts
vault the OpenBao / HashiCorp Vault rubric backend
containers containerized system-under-test environments
all everything above

The distribution is named darkroom-ai (the bare darkroom name is squatted on PyPI); the import name is darkroom throughout. The CLI installs as darkroom (alias: darkrm).

How it works

A tenant repository declares only run-me facts in darkroom.toml:

[project]
name = "quicknotes"

[commands]
serve = "make serve PORT={port}"
test = "darkroom drive"

The exam is data, held operator-side as one drive script per scenario. The engine boots the app fresh, executes the steps against it as a black box, and captures every exchange as evidence:

scenario = "note_saved"
record = true          # screencast the whole scenario

[[step]]
name = "save"
kind = "http"
method = "POST"
url = "{base_url}/notes"
json = { text = "first light" }
expect = { status = 201 }
save = { note_id = "$.id" }

[[step]]
name = "read_back"
url = "{base_url}/notes/{note_id}"
expect = { status = 200, body_contains = "first light" }

Step kinds cover HTTP, commands, Ed25519 keygen/signing, assertions, waits, container failure injection, and real browser interaction (goto/click/fill/screenshot, with viewport control and headless passkey ceremonies via a virtual authenticator). A failing scenario keeps its evidence: a failing scenario is still judgeable, which is the point.

darkroom verify checks each run against an evidence contract (per-scenario required kinds, counts, steps, trials), so "this build produced its proof" is a CI gate before any judging happens.

The loop, darkroom auto, runs assess → judge → build to convergence. Judge and builder can be shell hooks (see the Quickstart's zero-spend demo) or full agents configured operator-side:

# ~/.darkroom/projects/quicknotes/operator.toml (never in the tenant)
[judge]
model = "claude-opus-5"

[builder]
model = "claude-sonnet-5"
escalated_model = "claude-opus-5"

[loop]
max_iterations = 6
darkroom auto --scenario note_saved     # operator config discovered from the home

Authority lives in the per-project darkroom home (~/.darkroom/projects/<name>/, mode 700): operator config, drive scripts, loop state, and the vault of sealed rubrics, which the judge reads and the builder never can. darkroom vault seal moves rubrics out of the tenant; derive-contract regenerates the builder-safe contract from them; the OpenBao backend adds token-gated reads and server-side audit. The loop stagnation-escalates (diagnostic access, model escalation, sharper feedback), rolls back regressions to the best checkpoint, and ratchets evidence-gates.json on convergence. A red gate always means something real: rubric changes re-baseline; they never masquerade as regressions.

Every agent invocation is metered (model, tokens, cost) into loop state, and darkroom dossier assembles the cross-run record into one operator-facing bundle: score trajectories, checkpoints, escalations, gates, spend.

Evidence capture without the loop

The capture layer stands alone. Installing the package registers a pytest plugin; tests request the evidence fixture and runs become manifest-backed:

def test_login_flow(page, evidence):
    evidence.screenshot(page, "after_login", full_page=True)
    evidence.log("api_response", {"status": 200})
EVIDENCE_MODE=1 EVIDENCE_DIR=./evidence pytest

The same API is importable directly (EvidenceCapture, start_run/end_run), and darkroom gallery renders any run as a static contact sheet.

The formats are a spec

Every artifact (manifest, contract, evaluation, gates, tickets, drive scripts, role hooks, dossier) is a written, versioned format with conformance rules and a trust-boundary map: see docs/spec/. Any harness in any language can emit a darkroom manifest; any judge infrastructure can consume one.

Claude skills

  • skills/darkroom-interview/: the intent interview, covering charter, scenario enumeration, thresholds, rubric drafting under the capturable-evidence rule, gaming self-audit, preflight-validated artifacts.
  • skills/darkroom-chronicle/: narrates a project's delivery from its dossier, covering progression, what the judge witnessed, sticking points, novelties, spend.
cp -r skills/darkroom-interview ~/.claude/skills/   # or per-project .claude/skills/

Documentation

Development

make venv       # create virtualenv and install deps
make test-unit  # run unit tests
make test       # run all tests with coverage
make help       # see all targets

Licensed under Apache-2.0.

Release files for darkroom-ai 0.14.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for darkroom-ai 0.14.1
File Size Uploaded
darkroom_ai-0.14.1.tar.gz 240.3 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for darkroom-ai 0.14.1
File Interpreter ABI Platform
darkroom_ai-0.14.1-py3-none-any.whl Python 3 none any Details

Total release size: 326.2 kB

Release files / darkroom_ai-0.14.1.tar.gz

Download URL darkroom_ai-0.14.1.tar.gz
Size 240.3 kB
Tags Source
SHA-256 checksum
How to use checksums
84e5ca213e053875884c114efd6d98b75a908e1c9c043d9a34f980bbe0a94847
BLAKE2b-256 checksum
How to use checksums
6eaefb7e36b2cefec5e942c0a268acd15ca95e8713146a75f6b382c6fb2d540f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.

Transparency log

Release files / darkroom_ai-0.14.1-py3-none-any.whl

Download URL darkroom_ai-0.14.1-py3-none-any.whl
Size 85.9 kB
Tags Python 3
SHA-256 checksum
How to use checksums
efec54afd9eb31c1829ab678b234534f645316fba67a1c444d404c6aca99c5a4
BLAKE2b-256 checksum
How to use checksums
fe321b046b502abf8a61b5ca1bfdf89983dc40880c8df75dfc1e180a9f0117e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.

Transparency log

Release history Release notifications | RSS feed

0.15.0

2 release files

This release

0.14.1 This release

2 release files

0.14.0

2 release files

0.13.0

2 release files

0.12.0

2 release files

0.11.0

2 release files

0.10.0

2 release files

0.9.2

2 release files

0.9.1

2 release files

0.9.0

2 release files

0.8.0

2 release files

0.7.0

2 release files

0.6.0

2 release files

0.5.0

2 release files

0.4.0

2 release files

0.3.0

2 release files

0.2.0

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page