Get started

Starter agent (ready to go)

A complete agent you can browse, run, and copy in two commands.

templates/starter-agent in the repository is a finished, working agent — grounded Q&A with sources plus an approved report-capture workflow — built, signed, and eval-gated by one Python script. It is the fastest way to see every moving part (knowledge, skills, workflows, training, signing, evaluation) in ~80 readable lines.

  1. 1

    Build it

    Trains routing triggers from labelled examples, builds the pack, signs it with a dev key, and runs the eval suite as a gate (2 cases: RAG routing + the full approval workflow).

    python3 templates/starter-agent/build.py
  2. 2

    Browse it in Studio

    Chat with the agent, trigger the report workflow, approve the save, inspect the traces.

    templates/starter-agent/try.sh
  3. 3

    Make it yours

    Copy the folder; edit the knowledge text, the labelled routing examples, and the workflow states; re-run build.py; ship the .lybopack.

In Codespaces this works with zero installs — the workspace arrives pre-built. On your machine, build the CLI first (cargo build -p lybo-cli) or set LYBO_BIN.