feat(engine): five-angle improvements - AST LRU, transient retry, Ollama doctor probe, lil version, durable telemetry - #56
Merged
Conversation
- perf: AST verifier cache is now bounded LRU (no more clear-all thrash at 2048 entries; hot files stay cached) - reliability: opt-in transient retry for provider HTTP calls (LIL_HTTP_RETRIES, default 0 = unchanged; 429/5xx/transport only, linear backoff capped 2s) - diagnostics: lil doctor --probe now checks local Ollama reachability (OLLAMA_BASE_URL honored) - ergonomics: lil version command (package version + python + platform) - auditability: LETITLOOP_TELEMETRY=1 persists supervisor lifecycle events to run_dir/telemetry.jsonl (activates the previously dead telemetry module) 14 TDD tests in tests/test_engine_improvements.py
|
👋 Thanks @sdageltc for opening this PR to letitloop! Our CI verification suite will run automated durability checks. Please ensure your PR adheres to our Contributing Guidelines. |
🛡️ PROOF-CARRYING VERIFICATION PASSED
{
"proof_receipt": "838edf903f7e563d276517e7210ce88d03dadbdbc78c1b037bce6f3772721eee",
"engine_latency_ms": 1540,
"deterministic_gates": "PASS"
}Generated by |
This was referenced Aug 25, 2026
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Five-angle engine improvement batch (TDD)
Implements #51, #52, #53, #54, #55 - one improvement per engine dimension, each with tests written first (14 new tests, all red before their fixes).
Verification
uff check .\ +
uff format --check orchestrator tests\ clean
Notes for review