Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## 0.11.0

- **Engine-emitted contract descriptors (#86).** The engine emits a
machine-readable contract file every iteration (referenced from
`paths.json`), derived directly from its own models and constants: the
active-protocol accepted/required control fields plus a validated
`goal_met` example, eval-receipt applicability, the evidence-reference
grammar, and the `LayerHandoff` schema. The stock outer/planner prompts
drop the hand-restated schema/grammar/eval prose and point at the
descriptor, so prompt guidance can no longer drift from what the engine
validates (the root cause of repeated rejected-terminal-control cycles).
- **Operator UX (#85).** `loopy stop --force` reaps the active iteration's
tracked agent subprocesses so a hard stop leaves no orphans. `loopy status`
adds a last-activity liveness line and surfaces rate-limited model families
(from the harness run log), plus `--json`. New `loopy reload` refreshes
workflow prompts and coordinator-operational config at the next task
boundary without a restart — never the session-frozen goal, model, or
workflow contracts/rosters.
- Docs: cli-reference, troubleshooting, and success-and-control updated for
the above.

## 0.10.1

- **Grok Build opt-in.** Stock configs keep `team_harness_agents` as
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "loopy-loop"
version = "0.10.1"
version = "0.11.0"
description = "Run long-running AI agent workflows inside your repository."
readme = "README.md"
requires-python = ">=3.12"
Expand Down
Loading