New plnt v0.1 — the orchestration runtime for agentic workflows
00 / 04 — resources

Repos, artifacts, and the reading list behind the design.

Everything is open source. The playground is live. The prior art that shaped the design is linked, not assumed.

04 / 04 — QUICK REF

Two minutes on a local kind cluster.

plnt — kind demo
# create a local cluster
$ kind create cluster --name plnt
# install plnt (operator + orchestrator + chart templates)
$ helm install plnt oci://ghcr.io/plnt-work/charts/plnt --version 0.1.0
# run a workflow — the operator picks it up and starts the saga
$ kubectl apply -f examples/review-responder.yaml
# tail the orchestration log
$ plnt logs review-responder --follow
# invoke it
$ curl -s https://review-responder.plnt.svc/invoke \
    -H "content-type: application/json" \
    -d '{"review":{"rating":2,"text":"..."}}'