{{ define "main" }} {{ $groups := site.Data.roadmap.groups }} {{ $shipped := 0 }} {{ $inProgress := 0 }} {{ $planned := 0 }} {{ range $groups }} {{ range .phases }} {{ if eq .status "shipped" }} {{ $shipped = add $shipped 1 }} {{ else if eq .status "in_progress" }} {{ $inProgress = add $inProgress 1 }} {{ else }} {{ $planned = add $planned 1 }} {{ end }} {{ end }} {{ end }}

Building in the open

The roadmap.

Tau ships in small, documented phases — each one a readable slice of the agent, not a hidden branch. This page tracks what's shipped and what's next; the reasoning behind each phase lives in dev-notes/.

{{ $shipped }} phases shipped
{{ $inProgress }} in progress
{{ $planned }} planned
{{ range $gi, $group := $groups }}
{{ printf "%02d" (add $gi 1) }}

{{ $group.note }}

{{ $group.label }}

{{ range $group.phases }}
{{ if eq .status "shipped" }} {{ else if eq .status "in_progress" }} {{ else }} {{ end }}
Phase {{ .id }}

{{ .title }}

{{ if eq .status "in_progress" }}Up next{{ else if eq .status "planned" }}Planned{{ end }}

{{ .summary }}

{{ end }}
{{ end }}
τ

Roadmap phases turn into build journals under dev-notes/, then into these docs. Follow along or open an issue with ideas.

{{ end }}