Skip to main content
Pick the quickstart that matches your experience level. Each builds on the previous one, so you can progress through all three.

Deploy Your First AI Agent

Go from zero to a running AI agent. Create a secret, configure a model, define an agent, and deploy it.20 minutes · Beginner

Build a Reactive AI Pipeline

Build a multi-agent team with tools, knowledge bases, and reactive dependencies. See automatic change propagation in action.45 minutes · Intermediate

Create a Custom Provider

Extend pragma-os by building and deploying your own provider. Define resource types, implement lifecycle methods, and ship it.60 minutes · Advanced

How pragma-os Works

You define resources in YAML. pragma-os provisions them, tracks their state, and propagates changes through dependency chains automatically.
provider: agno
resource: agent
name: my-agent
config:
  model:
    provider: agno
    resource: models/anthropic
    name: claude
  instructions:
    - "You are a helpful assistant."
pragma resources apply agent.yaml
Resources reference each other through dependencies and field references. When an upstream resource changes, all dependents rebuild automatically.