Build reefpods

A reefpod is a reusable, versioned AI-agent package — a prompt directive, model, inputs, budget, and a definition of “done,” bundled in a pod.toml manifest. konareef gives you the tools to author, validate, publish, and cryptographically verify one.

What you can build today

konareef currently ships the authoring, validation, publishing, and verification path. Pods execute on a reef-core deployment and produce a custody proof; the one-command public konareef pod spawn flow is landing soon. Everything in the Quickstart — scaffold, edit, and validate a real pod — runs locally against the vendored schema, no account required.

What is a reefpod?

A prompt tells an AI what to say. A script tells a computer what to do. A reefpod declares an AI workflow: which runtime and model it uses, what inputs it takes, what it may spend, what counts as success, and what proof it should leave behind. It is a directory anchored by a pod.toml manifest plus its prompt files.

The 15-minute builder path

Author and validate your first reefpod in about fifteen minutes:

  1. Install konareef — build the CLI from source (Go).
  2. Scaffold a podkonareef pod init hello-world.
  3. Validate itkonareef pod validate ./hello-world/pod.toml. Your first success moment.
  4. Shape it — edit the directive prompt and add an [inputs] block, then re-validate.
  5. Publish & verify — create a publisher identity, publish, then install and offline-verify it as a buyer.

Explore the docs