Skip to content

Roadmap: v0.1 — Foundations

Document ID: RM-001
File Path: docs/18-roadmap/v0.1.md
Version: 1.1.0
Status: Implemented (foundation slice complete)
Owner: Product Team
Last Updated: 2026-06-27


Foundations. Establish the architecture, documentation, and the first runnable slice: a single agent executing with tools and an LLM, on a minimal runtime.


  • Complete the architecture and component specifications (this docs set).
  • Stand up the monorepo and build/CI (ADR-0001).
  • Minimal Agent Runtime executing a hello agent.
  • Minimal LLM Gateway with one or two providers (Provider SDK).
  • Minimal Tool Runtime with native sandbox + a few built-in tools.
  • Single-binary Docker dev image.
  • wovyr CLI basics: login, agents run, --local.

AreaDeliverable
DocsSections 00–17 drafted
RuntimeAgent run loop (plan → tool → model → respond)
GatewayChat + embeddings, basic routing
ToolsNative sandbox, fs/http/shell
CLIAuth + run + local mode
BuildWorkspace, CI (unit + integration)

  • Distributed workflow durability at scale → v0.2
  • Plugins, marketplace → v0.3
  • microVM/gVisor sandboxes → v0.2
  • Dashboard → v0.3

  • A documented agent runs end to end locally (wovyr agents run --local) and against a single-node server (wovyr dev + wovyr agents run --server).
  • Unit + integration CI green (testing) — workspace builds clean under clippy -D warnings with 34 passing tests.
  • Architecture stable enough to build v0.2 on.

Implementation note: the v0.1 code lives in a Cargo workspace (crates/, apps/). The server’s run endpoint accepts an inline agent manifest (POST /api/v1/agents:run) pending the agent store; remote streaming (SSE), stronger sandbox isolation, and persistence are deferred to v0.2/v0.3.



VersionDateDescription
1.0.02026-06-27Initial v0.1 roadmap
1.1.02026-06-27Foundation slice implemented; exit criteria met