AI agents fail in loops. Entropy Loop turns those failures into tests, CI evidence, JUnit reports, HTML failure consoles, and stable contracts.
한국어: Entropy Loop는 AI 에이전트 실패를 테스트, CI 증거, JUnit 리포트, 사람이 읽는 실패 콘솔, 안정성 계약으로 변환합니다.
Get started · Example · Output surfaces · CLI · Haetae Guardian · Releases
Star the repo if you want to follow the Failure Compiler roadmap.
Verify agent outputs, capture failures, compile them into regression cases, and gate CI on them — then read the result three ways:
- Machines read JUnit.
--junit-reportemits CI-native XML for GitHub Actions, GitLab CI, Jenkins, CircleCI, and other test reporters. - Humans read the Pixel Failure Console.
--html-reportwrites a self-contained HTML report — inline CSS only, no network, no JS. - Teams read the Stability Contract.
entropy-loop contractdeclares the public API, CLI, exit codes, evidence bundle, and boundaries as JSON.
┌─ Entropy Loop Failure Console ──────────────────────────────┐
│ AI agent regressions as CI evidence │
│ │
│ TOTAL 3 NEW 1 PERSISTENT 0 RESOLVED 1 SKIP 0 │
│ │
│ [FAIL] 1 new failures, 1 fixed, 1 passing │
│ │
│ New Failures: json-1 │
│ Resolved Cases: json-2 │
└─────────────────────────────────────────────────────────────┘
The core is deterministic: no LLM calls, no network calls, no hidden state.
pip install entropy-loop-core
entropy-loop replay-demoOr pin the current release and generate CI evidence plus the stability contract:
pip install entropy-loop-core==1.0.0
entropy-loop ci-demo # write a local CI evidence bundle from a triage
entropy-loop contract # print the deterministic v1 stability contract (JSON)Works on Windows, macOS, and Linux with Python 3.10+.
Development setup
Use a virtual environment when working on the repository.
git clone https://github.com/koreaelonmusk/entropy-loop-core.git
cd entropy-loop-core
python3 -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
pytestgit clone https://github.com/koreaelonmusk/entropy-loop-core.git
cd entropy-loop-core
py -m venv .venv
.\.venv\Scripts\Activate.ps1
py -m pip install --upgrade pip
py -m pip install -e ".[dev]"
pytestAI agents often fail the same way twice.
Entropy Loop Core makes failures reusable: capture the failed output, classify it, compile a lesson, generate a regression case, and replay it — before the same bug ships again.
Task
→ AgentOutput
→ VerificationResult
→ FailureTrace
→ Lesson
→ RegressionCase
→ RegressionSuite
→ Replay
→ Report
The core is deterministic: no LLM calls, no network calls, no hidden state.
Turn a failure into a regression case, then replay it against a fixed agent:
from entropy_loop_core import (
AgentOutput,
FailureTrace,
RegressionRunner,
RegressionSuite,
RetryContext,
Task,
VerificationPolicy,
Verifier,
generate_regression_case,
)
# A verifier built from a policy: non-empty output that contains "status".
verifier = Verifier.from_policy(
VerificationPolicy(require_non_empty=True, required_terms=["status"])
)
# A past failure (the agent omitted "status") becomes a regression case.
task = Task(id="job-1", instruction="report the job status")
bad = AgentOutput(content="done")
case = generate_regression_case(
FailureTrace(
task=task,
output=bad,
verification_result=verifier.verify(bad),
attempt=1,
)
)
# Replay the case against a corrected agent.
def fixed_agent(task: Task, ctx: RetryContext) -> AgentOutput:
return AgentOutput(content="status: ok")
report = RegressionRunner().run_suite(
RegressionSuite(name="job", cases=[case]), fixed_agent, verifier
)
print(report.passed, report.total_cases, report.success_rate) # 1 1 100.0Full worked example: examples/json_agent_guard.py.
entropy-loop replay-demo # generate a regression case, then replay it as a suite
entropy-loop memory-demo # compact repeated failure lessons with a MemoryPolicy
entropy-loop pack-demo # build, save, load, and run a regression pack
entropy-loop agent-demo # refresh a pack from an agent, then run it
entropy-loop triage-demo # diff a baseline run against a current run
entropy-loop ci-demo # write a CI evidence bundle from a triage
entropy-loop contract # print the deterministic v1 stability contract (JSON)
entropy-loop demo # run the loop: verify → trace → learn → retry → regress
entropy-loop doctor # health-check the installmemory-demo shows how repeated failure lessons can be compacted with a
deterministic MemoryPolicy — see docs/memory-policy.md.
Turn captured failures into a portable pack and gate your build on it:
entropy-loop run-pack examples/json_agent_guard.pack.jsonrun-pack exits non-zero when a known agent regression reappears (0 = pass,
1 = failure, 2 = bad input), making replayable failure checks usable in CI. To
gate on your agent's current output, refresh the pack from an explicit local
command first (no shell, no secret injection):
entropy-loop refresh-pack input.pack.json output.pack.json -- python3 my_agent.py
entropy-loop run-pack output.pack.jsonSee docs/regression-packs.md, docs/agent-adapters.md, and docs/github-actions.md.
Don't just fail CI — diff the current run against a baseline and fail only on newly introduced regressions:
entropy-loop compare-reports reports/baseline.json reports/current.json \
--fail-on new-failures \
--junit-report reports/entropy-loop-junit.xml \
--html-report reports/entropy-loop.htmlcompare-reports classifies each case as newly failing, fixed, persistent, or
missing, and exits 1 only when the policy trips (0 = pass, 1 = policy fails,
2 = bad input). It can emit JSON, Markdown, JUnit XML, and a self-contained HTML
Pixel Failure Console — see also
docs/regression-triage.md.
The console speaks English and Korean (--html-locale en|ko):
entropy-loop compare-reports examples/baseline_regression_report.json examples/current_regression_report.json \
--fail-on new-failures \
--html-report reports/entropy-loop-ko.html \
--html-locale ko- name: Compare Entropy Loop reports
uses: koreaelonmusk/entropy-loop-core@v1.0.0
with:
baseline-report: baselines/entropy-loop.json
current-report: reports/current.json
fail-on: new-failures
evidence-dir: reports/entropy-loop-evidence
junit-report: reports/entropy-loop-junit.xml
html-report: reports/entropy-loop.html
html-locale: en
write-step-summary: trueThis writes a local CI evidence bundle and can append a summary to the GitHub
Actions step summary. The optional junit-report emits deterministic JUnit XML
for GitHub Actions, GitLab CI, Jenkins, CircleCI, and other test reporters;
html-report writes the self-contained Pixel Failure Console.
It does not call the GitHub API, comment on PRs, upload artifacts, or require
GITHUB_TOKEN. See docs/ci-evidence.md.
entropy-loop contract prints a deterministic JSON manifest of everything this
project keeps stable — public API, CLI commands, exit codes (0 pass, 1 policy
fail, 2 usage/write error), the default evidence bundle files, report outputs,
and the GitHub Action boundary:
entropy-loop contract --output entropy-loop-contract.jsonSee docs/stability-contract.md.
When pinned to a semver tag (e.g. @v0.8.0) with no package-version, the Action
installs the matching PyPI version (entropy-loop-core==0.8.0). On a branch ref
like main it installs the latest; set package-version for reproducible CI.
One failure trace, read five ways — plus the contract that keeps them stable:
| Surface | Purpose |
|---|---|
| JSON | Machine-readable regression data |
| Markdown | Human-readable report |
| JUnit XML | CI-native test reporting |
| HTML Console | Visual Pixel Failure Console |
| GitHub Action | CI evidence generation |
| Stability Contract | Stable behavior boundary |
All of these are written as local files. No telemetry, no hidden network calls.
It is
- a deterministic failure compiler,
- a structured failure-trace layer,
- a regression replay primitive,
- a small AI-agent reliability tool.
It is not
- a full agent framework,
- model training,
- model-as-judge by default,
- a correctness guarantee,
- a cloud platform.
Verifierapplies ordered, deterministic rules and classifies failures.EntropyLoopruns an agent, verifies, traces the failure, compiles a lesson, and retries.LessonGeneratorturns aFailureTraceinto a reusableLesson.generate_regression_casepins a failure as a repeatable check.RegressionRunnerreplays aRegressionSuiteand returns a report.
Deeper reading: architecture · reliability model · research influences · recording the demo.
Haetae is the guardian mascot of Entropy Loop Core.
In this project, Haetae represents failure evidence, reliability boundaries, and regression memory. It watches the loop, preserves the evidence, and protects the reliability boundary — the mascot is a brand layer, never part of the core logic.
Entropy Loop does not claim to magically fix AI systems. It preserves failures as evidence, turns them into repeatable checks, and makes regressions visible in CI.
한국어: 해태는 실패 증거, 신뢰 경계, 회귀 기억을 지키는 Entropy Loop Core의 수호자입니다.
The mascot is derived from an original pixel-art source
(docs/assets/haetae/haetae_original.json,
preserved unmodified). All launch imagery lives locally under
docs/assets/haetae/ — no external CDN, no remote images.
AI agent failure
↓
Captured evidence
↓
Replayable regression case
↓
CI report
↓
Stable contract
Entropy Loop Core is intentionally narrow.
It does not
- perform root-cause analysis,
- guarantee correctness,
- self-heal code,
- call external services by default,
- send telemetry,
- require hidden network access.
It does
- preserve failure evidence,
- generate regression artifacts,
- produce CI-readable outputs,
- expose stable behavior contracts,
- keep local, deterministic workflows.
Open-source the primitive, not the private advantage. This repository contains only generic reliability primitives — no business logic, proprietary prompts, customer data, secrets, external AI API calls, or network calls. See docs/public-private-boundary.md.
- v1.0.0 — v1 launch: stability contract, HTML failure console, bilingual reports, and the Haetae README launch surface (current)
- v0.9.0 — CI-native reporter outputs (JUnit XML)
- v0.8.1 — Action runner hardening (self-test)
- v0.8.0 — GitHub Action / CI evidence bundle
- v0.7.0 — regression triage / baseline diff
- v0.6.0 — agent adapter / live pack refresh
- v0.5.0 — regression packs / CI gate
- v0.4.0 — memory policy / lesson compaction
- v0.3.1 — packaging readiness
- v0.3.0 — replay
- v0.2.0 — classification + evaluation
- v0.1.0 — the first Failure Compiler loop
Details in CHANGELOG.md.
- Next (directional) — persistence adapters, richer reports, and broader failure-memory recall.
Full plan in docs/roadmap.md.
Contributions are welcome. Keep the core small, readable, and deterministic, and respect the public/private boundary. See CONTRIBUTING.md and CODE_OF_CONDUCT.md.
ruff check . # lint
ruff format . # format
pytest # testsReleased under the Apache-2.0 license.

