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

Everything in the Quickstart — scaffold, edit, and validate a real pod — runs locally against the vendored schema, with no account and no server. Publishing, execution and custody proofs need a reef-core deployment: reef-core is open source and self-hostable (github.com/digitsu/reef-core, docker compose up), and a hosted instance is available to the invite-only private beta.

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 commissioner.

Explore the docs