Skip to content

LoopX v0.1.3

Choose a tag to compare

@huangruiteng huangruiteng released this 02 Jul 06:45
10509b0

LoopX v0.1.3 - Initial public release

LoopX v0.1.3 is the first public stable-channel release. It promotes the stable channel to commit 10509b06b092deefbe6f2884fbaeaffa25dc1a9a and makes LoopX installable as a local-first control plane for long-running AI agents.

What LoopX is in this release

LoopX is loop engineering for long-running agents. Instead of asking every agent session to remember the whole project, LoopX keeps goal state, todos, gates, quota, evidence, scheduler hints, and handoff contracts in a shared local control plane. That lets an agent resume safely, ask the user for concrete gates, stop when only non-due monitor work remains, and leave enough evidence for the next turn or side agent to continue.

Why the public timeline starts here

Pre-v0.1.3 work focused on proving the local control plane, archive installer, update path, and canary route. The public GitHub release timeline starts at v0.1.3 because this is the first version with a named stable promotion contract and a validated no-clone install/update path suitable for new users.

Highlights

  • First public stable-channel release for the no-clone install path.
  • Named package version contract: loopx.__version__, pyproject.toml, public tag, release note, and stable-channel promotion now share one release identity.
  • New-user lifecycle: install from GitHub archive, run loopx doctor, update through loopx update, and verify the named version without cloning the repository.
  • Initial public control-plane surfaces for long-running work: status, quota, todo, gate, evidence, heartbeat prompt, and handoff-oriented state projection.
  • Visible auto-research demo startup fixes.
  • SkillsBench app-server context-only turn recovery.
  • Package version bump to 0.1.3.

Install

curl -fsSL https://raw.githubusercontent.com/huangruiteng/loopx/main/scripts/install-from-github.sh | bash
export PATH="$HOME/.local/bin:$PATH"
loopx doctor

Update

Existing users can update from the stable channel:

loopx update --check
loopx update --execute
loopx doctor

Validation recorded for this release

  • python3 examples/codex-cli-no-clone-release-verification-smoke.py
  • python3 examples/release-version-contract-smoke.py
  • python3 examples/loopx-update-smoke.py
  • local loopx update --execute returned install=0 and doctor=0
  • default local loopx --version reports 0.1.3

Follow-up release timeline

  • v0.1.4: fast-follow hardening for product-capability monitor projection, release-readiness checks, and canary evidence.
  • v0.1.5: stronger quota/status/runtime routing, monitor and scheduler projection, release packaging coverage, and outcome-floor recovery for stuck or low-progress loops.