Skip to content

Releases: devtechedge/aarop

v0.3.0 — Developer-inspired redesign + light/dark theme

Choose a tag to compare

@devtechedge devtechedge released this 29 Jun 20:44

AAROP v0.3.0 brings a full visual redesign of the live demo with a sky→dusk design
language, refined typography, and a system-aware light/dark theme toggle — on top of
the multi-agent orchestration, resilience, and trace-export features added since launch.

🔗 Live demo: https://aarop.vercel.app/

✨ Highlights in this release

Changed

  • Full UI redesign — a sky→dusk design language with refined color tokens, Inter
    typography on a modular type scale, a sticky top nav, a restyled hero with dual CTAs,
    and softer rounded cards.

Added

  • Light / dark theme toggle — system-aware by default (respects
    prefers-color-scheme), with a manual override persisted to localStorage and a
    no-flash-on-load script.

🧩 Since v0.1.0 (cumulative)

  • Multi-agent orchestration view — an Orchestrator delegates to Researcher / Coder /
    Analyst / Verifier / Memory worker agents, visualized live.
  • Multi-step plans that chain tools across agents and synthesize a result.
  • Resilience scenario — failure injection demonstrating retries, circuit breaker,
    and escalation.
  • Budget-exhaustion scenario — bounded autonomy escalating to a human.
  • Interactive system-architecture diagram + an engineering-rigor section.
  • Trace export — download any run's structured trace as JSON.
  • Optional real-LLM toggle — bring-your-own-OpenAI-key narration (the key never
    leaves the browser).
  • CI at repo root, split into Python-core and Next.js-build jobs.

🏗️ Core engine

  • Explicit Perceive → Plan → Act → Observe → Reflect → Adapt state machine with
    bounded-autonomy budgets and durable checkpointing.
  • Planner / Actor / Verifier agents, a schema-validated tool registry with retries +
    circuit breaker + audit log, a tiered memory service, a cost-aware model router, and
    structured span/event tracing.
  • 9 unit tests · 92% coverage, CI across Python 3.10–3.12.

Full changelog: https://github.com/devtechedge/aarop/blob/main/CHANGELOG.md

AAROP v0.1.0

Choose a tag to compare

@devtechedge devtechedge released this 29 Jun 03:18

Changelog
All notable changes to this project are documented here.
The format is based on Keep a Changelog.
0.1.0 — 2026-06-29
Added
Core agentic-loop engine (core/) — explicit Perceive → Plan → Act → Observe → Reflect → Adapt state machine with bounded-autonomy budgets and durable checkpointing.
Agents — Planner, Actor, and Verifier/Critic with injected, mockable dependencies.
Tool registry — schema-validated, permission-scoped tools with retries, a circuit breaker, and an audit log.
Memory service — working / episodic / semantic memory with RAG-style recall and consolidation.
Model router — cost-aware routing across cloud and self-hosted providers (deterministic mock provider for offline runs).
Observability — structured span/event tracing with an in-memory replay buffer.
Test suite — 9 unit tests, 92% coverage on core orchestration; CI across Python 3.10–3.12.
Live web demo (web-demo/) — Next.js 14 app animating the full loop client-side; deployed at aarop.vercel.app.
Docs — architecture (C4 diagrams + 5 ADRs), full project specification, and a 4-page PDF case study.