Skip to content

v1.8.0

Choose a tag to compare

@JackChen-me JackChen-me released this 19 Jun 18:47
10ace99

Features

  • Checkpoint and resume (#294 by @mvanhorn, #314 by @JackChen-me). A long run can now survive a crash or restart. Persist progress to any MemoryStore with checkpoint: true on runTeam / runTasks / runFromPlan, then resume with orchestrator.restore(...). On resume, runTeam re-runs coordinator synthesis so you still get a final answer, and checkpointing into the team's own shared-memory store no longer re-serializes the whole store per task.
  • Consensus verification reaches runTeam (#301 by @nuthalapativarun). The per-task judge loop from 1.7.0 now applies to coordinator-generated tasks. Pass the judges with RunTeamOptions.verifyJudges, and the coordinator opts a task in with verify: true or a partial config.
  • Native reasoning round-trip on Bedrock (#302 by @nuthalapativarun). Extended-thinking blocks round-trip through Bedrock's signature protocol with full fidelity, moving echoesReasoning from never to own-issued.

Fixes

  • Dashboard: the run details panel is back to a right-hand sidebar on desktop instead of stacking under the canvas (#308 by @JackChen-me).

Onboarding and examples

Install

npm install @open-multi-agent/core@1.8.0

New project: npm create oma-app@latest

Thanks to @mvanhorn, @nuthalapativarun, and @JackChen-me.