Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.pragmatiks.io/llms.txt

Use this file to discover all available pages before exploring further.

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 Pragmatiks by building and deploying your own provider. Define resource types, implement lifecycle methods, and ship it.60 minutes · Advanced

How Pragmatiks Works

You define resources in YAML. Pragmatiks 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.